Extrenal Swf Or One Big Swf?
Hi!
Im johan.. and I have a problem with that I don't know what to do now..
I've been working on my flash page a while now. Just finished the main move.. and now I don't know how I should continiue really..
I also have a pic of my self on the main movie that I what to be able to change with some buttons. Then my secound question is, can i do this with a button on a external swf movie, or does it only work with the main move?
With regards
Johan
KirupaForum > Flash > Flash 8 (and earlier) > Flash MX 2004
Posted on: 12-20-2004, 06:08 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Extrenal Swf Or One Big Swf?
Hi!
Im johan.. and I have a problem with that I don't know what to do now..
I've been working on my flash page a while now. Just finished the main move..
and now I don't know how I should continiue really..
I also have a pic of my self on the main movie that I what to be able to change with some buttons. Then my secound question is, can i do this with a button on a external swf movie, or does it only work with the main move?
With regards
Johan
Loading Extrenal .swf's?
I am trying to load an external .swf with the click of a button..It is not working.
The caode I have is:
On release....
_root.blank.loadMovie("gallerytest.swf")
Also...I have another on release function on the button too...should these be two different on release commands..or just one? I have made a "BLANK" MC and dragged it to the main satge..so all external .swf's can be loaded there...buit it is not working! Thanks all help appreciated.
-whispers-
When i click te button I get this error (when I am testing movie through FLASH)
Error opening URL "file:///C|/WINDOWS/Desktop/TEST%20Pages/_root.blank.loadMovie("gallerytest.swf")"
Extrenal AS 2.0 Files
Am I correct in thinking that I need the 2004 pro version to edit the external actionscript .as files?
Casue that blows if it's true. When I go file > new I only have flash document available in the list, and some templates.
Any hope for me?
Using Components In An Extrenal Swf
Hi,
I have several swf files that i need to load into a loader in another swf so that the user does not see the forms outside the area of the loader I put a mask over the loader that worked fine but every component failed to function I could not enter text into fields the dateChooser would not function labels on the radio buttons failed to appear, when I remove the mask i get control again. Can anyone help me as I need to get this project finished and I have looked everywhere for solutions but no luck yet.
thanks in advance
Extrenal Jpgs
Is it necessary to use the full url path to call an external jpg or is it possible to have a relative url?
Thank-you
If/Else - PHP - Extrenal Variables >.<
I need some help with this little gamish thing im working on.
Alright heres what im doing.
First im doing a querystring on a flash file like so.
http://stickthemepark.com/sda/test.swf - Should send you to the error clip
http://stickthemepark.com/sda/test.swf?id=1- Should send you to the boom clip
http://stickthemepark.com/sda/test.swf?id=2 - Should send you to the rar clip
The flash actionscript then includes the variables from test.php?id= ID
It then loads fine but the if statement dosnt seem to like it, or atleast send it to the clip.
PHP Code:
stop();loadVariablesNum("test.php?id=""+id+""", 0, "POST");if (text == "boom"){gotoAndPlay("boom");}else if (text == "rar"){gotoAndPlay("rar");}else{gotoAndPlay("error");}
If/Else - PHP - Extrenal Variables >.<
I need some help with this little gamish thing im working on.
Alright heres what im doing.
First im doing a querystring on a flash file like so.
http://stickthemepark.com/sda/test.swf - Should send you to the error clip
http://stickthemepark.com/sda/test.swf?id=1- Should send you to the boom clip
http://stickthemepark.com/sda/test.swf?id=2 - Should send you to the rar clip
The flash actionscript then includes the variables from test.php?id= ID
It then loads fine but the if statement dosnt seem to like it, or atleast send it to the clip.
PHP Code:
stop();loadVariablesNum("test.php?id=""+id+""", 0, "POST");if (text == "boom"){gotoAndPlay("boom");}else if (text == "rar"){gotoAndPlay("rar");}else{gotoAndPlay("error");}
Extrenal FLV Loader?
Ok..I am tring to make my website load flv movies...I have many so I would like to make a loader where people can select the certain movie and have it load in a designated loader..Here is an eample of what I want to do...Go to the link below and go to vidography site and select videos on the top of the site...
http://www.cinematicbride.com
thanks[/url]
Preloading Extrenal Files
Hi, I was wondering if theres any way to GetBytesTotal and Loaded of an eternal swf file that gets loaded into a target, not level.
So basically if I load the external movie into "_root.holder"
Is it possible to get a correct reading of _root.holder.getBytesTotal ?
Or is my only option to have the preloaded inside every external swf
TIA
Extrenal Jpegs....can I Alpha Them Them?
Hey Guys,
Im loading external jpeg's into my flash slideshow presentation.
Is it possible to put some type of fade in on this as in alpha fade?
How would this be acheived.
Thanks
Shaun
Extrenal .swf Load In To A Movie
i have a preloader everthing seems to be work but when i click the button does not load the .swf in to the movie nothing happends can somebody helps me, and if you can send an example Thanks!!!!
Problem With My Extrenal Text
hi!
my problem is that my extrenal text file is not appeared when i have uploading my swf and text file in a server.
i have both in the same directory and doesn't.
in my hdd is working properly.
what can i do???
Preloading Extrenal Text.
Code:
onClipEvent (enterFrame) {
loadText = new LoadVars();
loadText.load("ipod.txt");
var bytes = loadText.getBytesTotal();
var bytes_loaded = loadText.getBytesLoaded();
if (bytes_loaded == bytes) {
this.thelist = "list loaded";
loadText.onLoad = function(yay) {
if(yay){
this.thelist.html = true;
this.thelist.htmlText = this.thelist;
}else{
this.thelist.text = "Wait a second.";
}
};
stop();
} else {
this.thelist = "loading ipod list (" + Math.round(bytes_loaded/1024) + "kb/" + Math.round(bytes/1024) +"kb)";
stop();
}
}
I added this to a symbol. the Text is named right.
the error is..
Code:
loading ipod list (0kb/NaNkb)
please help.
Preloading Extrenal Text.
Code:
onClipEvent (enterFrame) {
loadText = new LoadVars();
loadText.load("ipod.txt");
var bytes = loadText.getBytesTotal();
var bytes_loaded = loadText.getBytesLoaded();
if (bytes_loaded == bytes) {
this.thelist = "list loaded";
loadText.onLoad = function(yay) {
if(yay){
this.thelist.html = true;
this.thelist.htmlText = this.thelist;
}else{
this.thelist.text = "Wait a second.";
}
};
stop();
} else {
this.thelist = "loading ipod list (" + Math.round(bytes_loaded/1024) + "kb/" + Math.round(bytes/1024) +"kb)";
stop();
}
}
I added this to a symbol. the Text is named right.
the error is..
Code:
loading ipod list (0kb/NaNkb)
please help.
Controling Duplicate MC's Via Extrenal Txt/xml
hello there
i'm working on a little something for my self and i've been looking all over the web for some tutorial and/or source code for controling duplicate MC via extrenal txt/xml file.
i'm doing a navigation and i don't want to open it up each time i have a new img/swf and make another button.
see here for info:
http://www.zorglob.com/temp
i'm guessing that arrays and varialbes are to be used but i don't know how.
can anyone direct me to a source/tutorial or something? a .zip even
thanx
Load Extrenal Movie In A Container?
Hi!
This is another n00b question...but what can I do, I thought i knew it but it showed up that I only know how to do it by pressing a button.
I want to load an external MC into a container when the frame loads.
I tried:
onClipEvent (load) {
container.loadMovie("myexternalmovie");
}
but it wouldnt work...
Can someone give me a working script? Thanks!
Transparent Extrenal Movie - Crazy
hmm! not sure what is happening here.
i have an external swf that i am pulling into my main movie but when i do so, the transparencies i have on lines and crosses etc come in as solid lines.. . this is very starnge.. . i'm using mx..
many thanks
tasvINO
Controling The Loaded Extrenal SWSs ?
Hi,
Does any one of u know how to control the timeline of loaded (with the help loadMovie())external swf ??? If I need to stop the animation of that loaded swf by pressing the button in my main swf , how do I do that ?
Please let me know about that.
Every kind of inro or help would be greatly appreciated !!
Thankz
Ishwor
from Nepal
Running An Extrenal Swf At 12fps Rather Than 30-40fps.
I have a main .swf that is a container for an external swf. The main swf runs at 40fps or so. So consequently, the external swf also runs at 40fps. I would like to have the external swf run at a mere 12fps because the swf contains a video. How can i make it so that the external swf runs at only 12fps? Thanks for your time and support
Loading Random Extrenal Movies
Hi there,
Can someone please help me. This is really urgent.
I need to randomly load an external swf into the main movie each time the browser is refreshed. I have three external swfs so far.
when loading individual external swfs, I normally create an empty movie clip on the main movie and call the external swf by using the _root.emptymovieclip command
Is the same principal used for calling external swfs randomly?
Thanks heaps,
Running An Extrenal Swf At 12fps Rather Than 30-40fps.
I have a main .swf that is a container for an external swf. The main swf runs at 40fps or so. So consequently, the external swf also runs at 40fps. I would like to have the external swf run at a mere 12fps because the swf contains a video. How can i make it so that the external swf runs at only 12fps? Thanks for your time and support
Controling Extrenal Sound On Other Server
Hi!
I have a little player that loads a sound when the page is open.
My problem is i can't control the sound with the play and stop button because my sound is on another server than the movie....
When the sound is on the same server everything works fine....
I need a solution for sounds on other servers...
in flash :
first frame: host.host2.loadMovie(sound);
html page : player.swf?sound=http://www.yahoo.com/mysound.swf
all i want to do is to be able to stop and play the sound
on the stop button:
on (release) {
_root.host.host2.stop();
}
on the play button:
on(release){
_root.host.host2.play()
}
__________________
Loading In Extrenal Swfs With A Twist
Hi
I have a series of buttons that when clicked load in external swfs, all works great no probs but
with certain buttons I don't want to load in any swf but I also want the currently loaded in swf to disappear.
I could do this by creating a blank swf and loading that in but is there a better way of doing this?
Thanks
Ricky55
Revised FLA File, Need Heal Loading Extrenal SWF
Hey,
I fixed my main .fla file so now its a bit more organized.
What I am trying to accomplish is to load an external .swf file in my main .swf file but for some reason it will not work.
On the _root I have one main mc called "main_mc". Inside that mc are a bunch of additional mc's that have tween animations within each one. I got the stop function to work when you rollover the mc's but what I need to do now is have each one load an external .swf file each time your rollover. I also need to mention that I need the external .swf to unload if you rollover a different mc.
Hope that makes sense.
You can take a look at the source file if you wish. I uploaded it here:
http://www.infernostudio.com/downloads/main-2.zip
I added an external .swf file for test purposes called "loaded.swf".
Please let me know if you have any questions.
Can someone please take a look?
Thanks for your help, I really appreciate it!
+ Sign In Extrenal Text File Doesn't Work
Hi I'm working on an updatable website. Wich read external txt files.
When I put a + sign in the text flash doesn't recognise this. F.e <FONT SIZE='+2'> returns as <FONT SIZE=' 2'> but in the text file it stays.
Any suggestions????
Dynamic Textfield Display Error - Text From Extrenal Source Does Not Show Entirely
Hi!
I have a dynamic text filed. I use LoadVars to load its text. After loading it, I pass the value of the variable (e.g. MyLoadVars.mytext) to the textfield (MyTextField.text = MyLoadVars.mytext).
It is important that the MyLoadVars.mytext variable (the text I want to show) is relatively long, e.g. more than 1500 characters.
The textfield gets the data, it has all the characters in the MyTextField.text parameter.
However, the display is wrong: I can only see a truncated text, about 2-300 characters in the Flash Movie. After a manual refresh, I mean, right-click and Zoom in, or if the text is selectable, selecting it - it displays the whole text.
But I would naturally like the whole text to be shown instantly...
Anyone knows why this delayed display happens?
Thanks for the help!
Alex
Loading Extrenal Text Into The Custom Scrollbar Made In Kirupa's Tutorial.
Well, that title was a mouthful...
Anyways, I've tried five different tutorials for laoding external text now, and none of them work with the custom scrollbar.
What i currently have is a dynamic textbox in the content movieclip in the scrollbar.
the code for the frame is:
Code:
myData = new LoadVars();
myData.onLoad = function() {
myText.text = this.content;
}
myData.load("menucontent.txt");
And yes, the textbox has a instance name, and a variable name.
Does anyone know what I'm donig wrong?
|