Load Movie Problem
I have this bif problem with a load movie i load an extern swf in an empty moviename with the instance name "container" now the swf loads perfectly in it but the problem is that that swf (gallery.swf) contains some buttons wich shows some pics in that gallery.swf only they dont work anymore of they are loaded is there a solution for this ?
thx in advance
FlashKit > Flash Help > Flash MX
Posted on: 12-12-2002, 10:34 AM
View Complete Forum Thread with Replies
Sponsored Links:
Does Load Movie LOAD Entire Movie, How Can I Stream It?
i have a load movie loading my music. I have a preloader at the front of my music, but i dont think the preloader is working on load movie. Does the load movie command download the whole movie into cache, or does it just start playing the movie.
IE.. if i have a 5 meg mp3 that i wanna dled and listen to, is it just downloading the whole thing, until the movie is loaded, and then playing, or is it streaming it in?
i tried to make a preloader for it, but it looks like the preloader just instantly zooms across... how can i show status of this movie loading?
thanks
View Replies !
View Related
External Movie Will Not Load, But Does Load When I Use 'test Movie'?
I had my external movies loading wonderfully then all of a sudden one of the externals (that I use 'loadmovie' on) will not load? The weird thing is that when I test my movie using 'test movie' in my main movie, it works fine, but when I go to my staging (test) site: www.gbebos.com/Liz/Hit.htm the one movie in 'Earth elements' page will not load, but the other movies i.e. 'Crystal Elegance' and 'Silver Essence' work fine. I made sure that the .swf and .html were transfered to the domain and they are both there.
Any help for this newbie would be greatly appreciated!
Thanks again to ya all at Flashkit!
gbebos
View Replies !
View Related
How Do I Stop My Second Movie Load Clearing My First Movie Load?
Hi,
Working on a home page where a swf movie loads and plays on the timeline.
The problem is when the second swf movie loads and plays further along the timeline the first swf movie disappears...I want it to remain on my stage!
Any ideas?
Cheere Jim
Here is the code I'm using to load the swf movies:
this.createEmptyMovieClip ("emptyClip",this.getNextHighestDepth());
emptyClip.LoadMovie(...swf");
View Replies !
View Related
Chromeless Windows That Open On Movie Load Or Load Of Html Page (Flash Ad Kit)
Hi guys,
I was wondering if someone could help me out in creating these flash ads that appear out of nowhere. I see them mostly on rediffmail, yahoo and about.com.
I know how to create a popup window on button click, but how you do that without a button.
There's another dimension of ads nowadays. They are the transparent ads. They really look cool. Could someone with this knowledge pleeeeeeeeese help me out. I urgently need to create these ads.
Regards,
designable
View Replies !
View Related
Chromeless Windows That Open On Movie Load Or Load Of Html Page (Flash Ad Kit)
Hi guys,
I was wondering if someone could help me out in creating these flash ads that appear out of nowhere. I see them mostly on rediffmail, yahoo and about.com.
I know how to create a popup window on button click, but how you do that without a button.
There's another dimension of ads nowadays. They are the transparent ads. They really look cool. Could someone with this knowledge pleeeeeeeeese help me out. I urgently need to create these ads.
Regards,
designable
View Replies !
View Related
Scrollpane - Load Swf - Load Movie Symbol Controled By Buttons And Variables?
Ok i have searched the board, and racked my brain and read hundreads of bit and pieces. So far 'not happy jan'. Anyhow I thought well I shall start a thread where first I ask a question of 'can it be done' then go away try and do it and if fail 'ask how to do it' or if suceed then say 'how i did it'. Of course all questions are going to relate back to this original post so no new threads need to be started. Anyhow onto my question!!
I have a website I want to make. so I started... called it 'site.swf'. now site.swf has a scrollpane in it called 'content'.
Now I have also created 'home.swf' which has 2 movie symbols in it. one called 'homein' the other 'homeout'.
'Homein' is located in frame1 of home.swf and 'homeout' is located in frame2.
When site.swf loads I want to load home.swf into 'content' and home.swf plays 'homein'.
When the user clicks on the first button (in site.swf) 'content' plays 'homeout' before loading 'button1.swf' into 'content' and playing 'button1in'
see the pattern forming. Now I am sure this has been asked thousands of times, but I haven't found it once. At least in a form that is easy to understand.
Now can this method be done, or do i need to go away and rethink it. (my main reason for loading external.swf's is because i wish to preload where needed).
If all this can be done tell me now... I am sure I need to use 2 variables.... 'loadedmovie' and 'tobeloaded' to communiticate with 'content' and to follow the users clicks of buttons.
Thanks for any help.
Trent
View Replies !
View Related
(mx) Transfering Actions Which Load With Movie To Load When Button Is Pressed
hi,
I have some code which draws a line when the mouse is pressed (to when it is released)
This code is within an object, loads when the movie starts and works fine:
Code:
// ***** Set some opening parameters
onClipEvent (load) {
// Make original line invisible
_root.line._visible = 0;
// Initiate some variables
number_lines = 0;
line_active = 0;
}
// ***** Every time the mouse button is released...
onClipEvent (mouseDown) {
// Get the position of the mouse
origin_x = _xmouse;
origin_y = _ymouse;
// Increase the number of lines by one
number_lines++;
// Generate a new line name
name = "line"+number_lines;
// Duplicate a new line
_root.line.duplicateMovieClip(name,number_lines);
// Position the line's end point at mouse position
_root[name]._x = origin_x;
_root[name]._y = origin_y;
// Update line length / orientation
_root[name]._xscale = _root._xmouse - origin_x;
_root[name]._yscale = _root._ymouse - origin_y;
// If this is the start of a new shape
if (!line_active) {
// Set the line tracking variable
line_active = 1;
// Set the start point of the new shape
start_x = origin_x;
start_y = origin_y;
}
}
onClipEvent (mouseUp) {
line_active = 0;
}
// ***** Every time the mouse is moved
onClipEvent (mouseMove) {
// If there's a line currently being drawn...
if (line_active) {
// Update line length / orientation
_root[name]._xscale = _root._xmouse - origin_x;
_root[name]._yscale = _root._ymouse - origin_y;
updateAfterEvent();
}
}
I want the user to press a button before this code is usable - just as with any drawing program.
How do i go about telling the code only to start when the button has been pressed?
thanks,
jeff
View Replies !
View Related
Load Movie...Park/Play...Load A Button Into Level
Okay, I tried the Park/Play tutorial in order to load a movieclip and have a button on the stage that controls the main movie. Problem is that I have a background that covers up my button which is in level0. My movie clip is in level1. How do I bring that button out in front of the background? Do I load it into level2? If so, how do I do this?
Thanks alot,
Roger
View Replies !
View Related
URGENT Load Movie Doesnt Load Textfields
i mad a form in flash that send the variables to a php email script. The problem i am having is that the form loads into my main movie but when it loads it doesnt load the text fields. I have border.BG checked and everything seems to be in order. Please get back to me a.s.a.p. ANYONE I HAVE ONE DAY TO COMPLETE THIS!!!! blinero@email.com
View Replies !
View Related
Load Variable From Txt File To Load Movie From Server
my webserver has a dynamic ip adres
now i have a program that writes my ip adress to a static server.
my question:
load textfile and make the link for the swf complete
i think it should look something like this but i can't find it anywere
code:
loadVariablesNum("redirectphp/currentip.txt", 0);
this.gastenboek.loadMovie("http://"+ip+"/flash/Guestbook.swf");
the txt file is like:
&ip=90.128.82.20
the swf file is in flash 7
please help me
View Replies !
View Related
Load Movie Into Empty Clip On Page Load
I have a series buttons and two empty clips on the main page (one to hold the text and the other to hold the pictures / slide show) I have all the buttons working and loading the text etc correctly.
My problem is that when my page firsts loads all I have is the buttons. I want to have the empty clip that holds my text have my "welcome" load when the page loads (without clicking on any buttons).
I have tried using
onClipEvent(enterFrame) {
loadMovie("welcome.swf",this.mtTextClip);
}
but I get an error message that clip events are only allowed on movie clip instances and as I want this to happen when the page loads there isn't an instance name...
Clear as Mud??
View Replies !
View Related
Load A Flash Movie To A Random Frame Each Load
I have created a flash file that fades from one picture to the next. However, I would like to find an actionscipt that will allow the flash movie to load to different each time the page is visited/refreshed. That way visitors don't have to see the same image each time the visit the my page, but can still sit and watch all of them if they want. Also I would want to be able to specify which frames are available for load. That way the page will always load at the begining of each image animation... not right in the middle of it switching to the next image.
Any help is greatly appreciated!
View Replies !
View Related
Load A Flash Movie To Specified Random Frames Each Load
Group:
I am trying to find a Actionscript where I can specify random frames and have the movie randomly load to the specified frames each time the page is viewed. The below scrip was given last time I posted this question, but it doesn't seem to load at the specified frames. Sometimes it does, sometimes it load right in the middle of an animation. You can see in the code below I would like the movie to load at frames 1, 116, 231, 346. Any suggestions?
_____________________________________________________
Array.prototype.shuffle = function() {
for (var ivar = this.length-1; ivar>=0; ivar--) {
var p = random(ivar+1);
var t = this[ivar];
this[ivar] = this[p];
this[p] = t;
}
};
ASSetPropFlags(Array.prototype, ["shuffle"], 1, 1);
var Array_ar:Array = new Array(1, 116, 231, 346);
Array_ar.shuffle();
index = 0;
function load_random() {
gotoAndPlay(Array_ar[index++]);
if (index == Array_ar.length) {
(index=0);
}
}
load_random();
View Replies !
View Related
Load Movie But Sound Doesnt Load.
i dont understand why this is. maybe im forgetting something
all i want is when the page loads it also loads an external movie clip that is the background music,
i can do this, but when i do, the sounds doesn't transfer over with it.
but if I make the bgmusic clip the main movie and load the others into it, it works [the sound that is]..but we dont want this
some help would be much appreciated. thanks bros..
View Replies !
View Related
Load Movie To Load Jpeq Files
Load Movie in MX allows you to load .jpg files dynamically.
In test mode the output window will show you an error if the
file cannot be found.
Is there any way determine if there is a file error when not in
test mode? Is there something equivalent to the LoadVar if (success)?
thanks,
YJ
View Replies !
View Related
Load, Unload, Load... Will The Movie Need To Download Again?
hi,
I have a quick question about loadMovie and unloadMove...
If I load an external movie (section 1), lets say its 200k, and then unload it when the user moves to another section (section 2).
When returning to section 1, when the external movie is called to load, will it need to redownload? Or is it saved in some type of cache area?
any help or a point to a resource would be great.
thanks,
alex
View Replies !
View Related
Load Variable/load Movie Jpg Question
I'm trying to load a path and a jpg file name from an external file and then apply it to a variable. Then using the LOADMOVIE action I want to use the variable as an expression to load the JPG into a particular movie.
My action script is as follows:
onClipEvent (load) {
loadVariablesNum("sniffer.txt", 0);
}
Sniffer.txt reads
link1=home1.jpg
I then have:
loadMovie(link1, "1");
on frame 2.
The weird thing is that it works in the Debugger but not when I publish it as a SWF or HTML.
Any ideas?
Walt
View Replies !
View Related
Load Text With Load Movie Clip
Guess I'm dealing with some sort of "root" thing, which I don't understand. I have a movie-clip being loaded into a target on the main scene. This movie-clip features a text-box with external TXT file being loaded into it. Well, it doesn't load. In the actions box, what should it say?
loadVariablesNum("myText.txt", 0);
That's what I have at the moment, but "0" obviously isn't working. Also, should it be "target" or "level?" The instance name of my textbox is "scrolltext."
Thanks for the help, I only know enough to be dangerous.
View Replies !
View Related
[MX04] Load Movie Clip...wait...load Another Movie Clip
ok...i'd like to do this all in actionscript if possible...on one frame.
one character (headshot). at timed intervals, the character would do something different...repeat.
[code]function antics() {
mc_Antics.start(0,0);
clearInterval(anticstime);
}
anticstime= setInterval(antics, 1000);
function antics2() {
mc_Antics2.start(0,0);
clearInterval(anticstime2);
}
anticstime2= setInterval(antics2, 2000);[code]
I don't know actionscript well at all, so is this just stupid? Any ideas on how to do this? It's not working right now...
View Replies !
View Related
Load Movie And Load Variables
on my current project
www.enhancedinnovations.com/brp/news.html
I have 2 text boxes and I have 2 problems. So far, the bio page and the news pages are completed and there are two text boxes on each page. When you go the the news page (www.enhancedinnovations.com/brp/news.html), it all loads dandily and the text loads too.. but when you click on bio, the information doesn't come up.. but if you go to the bio page (www.enhancedinnovations.com/brp/bio.html), then it all works nice and dandy..also, if you are on the news page, click the bio button, when the bio page is loaded, click the news page, and quickly glance below the buttons, you can see the "biography." which is the current text there.. can someone help me so that the text always loads no matter what? or am I just retarded and should uninstall flash?
View Replies !
View Related
Load Movie Wont Load...please Help
I am trying to load a swf into a movie and I get a not found error.
code: on (release) {
_ROOT.mtClip.loadMovie("satisfaction.swf");
}
The name of the empty clip is mtClip and that is the instance as well. The files are in the same folder
View Replies !
View Related
Load Movie Command To Load A GIF
I'm using the Load Movie command to load an external image into a movie. It works for JPG's but not for GIF's. Any ideas?
loadMovie("home1.jpg", "myjpg");
// So this loads my JPG into a movie called, "myjpg"
loadMovie("home1.gif", "mygif");
// So this loads my GIF into a movie called, "mygif"
View Replies !
View Related
Flash 5 - Load Movie, And Duplicate Movie Clip? URGENT
I have a database of swfs. I'm loading a swf into a movieclip. When I duplicate that movie clip, it duplicates but the loaded swf does not duplicate with it. I've tried using attachMovieclip and I get the same result. Any ideas for a work around?
Duplicate and attach only seem to work when the asset already resides inside the movie clip....is this right? PLEASE HELP!!!!!
Thanx guys.........
View Replies !
View Related
Load Movie Or Get Url To Make Sizeable New Window For Flash Movie?Etc......
I am making a webisite and want to use a small window without toolbars like you have seen on many well done flash sites.
I wonder how this is done?
I have heard of people using javascript to set the window options but i have yet to find a good tutorial on this topic.
I am hoping someone could point me in the right direction.
Or tell me it all! mooowaaaahh hah haahh
please help yo...
hope someone replies to my woa
brainer
View Replies !
View Related
Load Movie /targetting Movie Clip Problem..someone Save Me :)
Hi there..ive done stuff before with the Load movie command but now something that is still new to me..I checked out the help tutorial via the Help section on flash.What i want to do right now precisely is summed up in this example:
The following loadMovie statement is attached to a navigation button labeled Products. There is an invisible movie clip on the Stage with the instance name dropZone. The loadMovie action uses this movie clip as the target parameter to load the products in the SWF file, into the correct position on the Stage.
on(release) {
loadMovie("products.swf",_root.dropZone);
}
Anyhow the main file I am working with right now has dimensions of 800 wide by 600 h pixels. Please see swf file URL Link it will explain my whole problem alot better.
http://beats.midnightsunrecordings.c...m/testsite.swf
I thank you very much for your help and time.Appreciate it!
Cc
View Replies !
View Related
Load Movie & Unload Movie With A Large Amount And Gotoplay(2)
working on a website and i stuck on a sort of problem. and i hope someone can give me an advise about it.
trying to explain this as clear as i can.
i have a bar where i want to load different movieclips in.
when i load one movie clip called for example: concert1.swf i want the other movie clip called concert2.swf gotoandplay(2).
these movieclips get loaded from hitarea's in a different part from the site.
these say:
tellTarget ("_root.frontmovieclip.concert1") {
gotoAndPlay(2);
}
if you select an other button it says :
tellTarget ("_root.frontmovieclip.concert1") {
gotoAndPlay(6);
}
tellTarget ("_root.frontmovieclip.concert2") {
gotoAndPlay(2);
}
this all will work fine. the problem is i have 42 concerts. so this would mean i would have to tell each hit area an entire list of 42 telltargets that would go play frame 6 or 2 if i want them in random order.
now i was thinking is there a way that if you press concert1 that it load that movie and tell anyother concert that is already there to go play 6.
so that i don't need 42 lines but only 2.
something like:
tellTarget ("_root.frontmovieclip.concert2") {
gotoAndPlay(2);
}
tellTarget ("_root.frontmovieclip.variableconcert") {
gotoAndPlay(6);
}
and that in concert2 it can say it should go to the variableconcert when it's done playing.
you can check what i mean at http://exuo.tripod.com/poging3.html (past concerts, deftones)
hopefully someone can give me some advise and if you need more info please ask.
View Replies !
View Related
Load Movie In Empty Movie Clip...Display Preloader In Another
I have two empty movie clips. One that will hold the current menu and the other will display the preloader/current page. How can I get the page that is being loaded to send the preloader information to the other movie clip? I've made simple preloaders, but this is a little more complicated. This is the only thing left to really solve on my web page, I would appreciate any help.
View Replies !
View Related
Load Movie Command From A Button Nested In A Movie Clip.
I'm designing a flash site in which the navigation menu stays in place while content is loaded below it. I want each navigation button to load an SWF file into the dummy movie clip that is positioned beneath them.
But my buttons are placed within a movie clip infact 2 levels down in a movie clip..i.e _root.mc1.mc2.button ..(this is my path)
I m not gettin the write output i want to load the movie clip over the same file but itz not happening.
This is the scripting i have given on my button: (which is placed directly on stage)
on(press){
_root.createEmptyMovieClip("astro_mc",1);
_root.loadMovie("s1.swf", "astro_mc",1);
_root.astro_mc._x=200;
_root.astro_mc._y=200;
}
THIS IS GIVING ME WRITE OUTPUT but when i place d same button in the path i wrote earlier i.e in mc1.mc2.button , then my scripting does not work.. Kindly help me out.. I also tried giving _root. n ol.
Waiting desprtly 4 ur reply.
View Replies !
View Related
Load Movie Command From A Button Nested In A Movie Clip.
I'm designing a flash site in which the navigation menu stays in place while content is loaded below it. I want each navigation button to load an SWF file into the dummy movie clip that is positioned beneath them.
But my buttons are placed within a movie clip infact 2 levels down in a movie clip..i.e _root.mc1.mc2.button ..(this is my path)
I m not gettin the write output i want to load the movie clip over the same file but itz not happening.
This is the scripting i have given on my button: (which is placed directly on stage)
on(press){
_root.createEmptyMovieClip("astro_mc",1);
_root.loadMovie("s1.swf", "astro_mc",1);
_root.astro_mc._x=200;
_root.astro_mc._y=200;
}
THIS IS GIVING ME WRITE OUTPUT but when i place d same button in the path i wrote earlier i.e in mc1.mc2.button , then my scripting does not work.. Kindly help me out.. I also tried giving _root. n ol.
Waiting desprtly 4 ur reply.
View Replies !
View Related
Actionscript Code, Load Movie + Call Movie, Help Plz.
How do you go about loading several movies into level 1, and when called on, by different buttons in the base movie, each movie will replace the other.
In the base movie (level 0), i used this actionscript to load the 2 movies (02.swf and 03.swf), which both have a stop action on frame 1, so appear invisible on the screen, until called on and will start to play from frame 2.
loadMovieNum ("02.swf", 1);
loadMovieNum ("03.swf", 1);
On the base movie, i use this code from the buttons to call the movie into level 1 and to play from frame 2.
on (release) {
if (_level01._framesloaded == _level01._totalframes) {
_level01.gotoAndPlay (2);
}
}
However, how do i go about identifying which movie to call 02.swf or 03.swf, from 2 different buttons.
Thanks for helping me out, this has been giving me a big headache for the last 3 days.
BB.
[Edited by bobbrown on 04-05-2002 at 06:26 AM]
View Replies !
View Related
How To Preload Movie Which Is Loading Through The Load Movie Action?
I want to preload main movie and the movie, which is loaded later through the load movie action, with the same preloader. The movie which is loading through the load movie action is level 1.
What changes must I aply to the code of the preloader, to do this task right? Here the code of the preloader:
btload = _root.getBytesLoaded();
totbt = _root.getBytesTotal();
sclbar = btload*100/totbt;
sclbar = Math.round(sclbar);
setProperty (_root.orangebar, _xscale, sclbar);
barwid = getProperty(_root.orangebar, _width)
barwid = barwid + getProperty(_root.orangebar, _x)
setProperty (_root.ldper, _x, barwid);
//setProperty (this.ldbar, _xscale, sclbar);
//trace (sclbar);
// trace(bytloaded);
if (btload>=totbt) {
gotoAndPlay ("slide panel", 1);
// trace ("loading complete");
} else {
gotoAndPlay (1);
}
Hope you help!!!
View Replies !
View Related
Load Movie: Can You Lock A Level Below A Loaded Movie?
I have a mainmovie with lots of buttons from which users can access 200 still images. The way I have set it up is that ALL images are loaded into level 2 from the buttons on the main movie, and all images unload from level 2 (there is only one image ever up at a time) and then go to a certain frame label back on level 0. Glitch has just come up (at zero hour) - seems that the buttons on level 0 still remain active through level 2 images - sooo, I wonder, is there any way to work around this by assigning level 1 a locked value or something?
Any tips or ideas welcome!
thanks
View Replies !
View Related
Load The Main Movie While The Intro Movie Is Playing
HI
Can some one pls. help me.
I have a main movie that is 600kb in size and it take very long to load it, can i start loading the movie when the intro is being played., Also can we load the movie partially, (what i mean by that is if i can load a few frames first then some other frames)
I am usinf flash mx, and have alot of symbols, and other movies that are loaded into the scroll pane component,
thanks a lot
j
View Replies !
View Related
How To Load Sub-movie Include Button In The Main Movie?
helo there,
i need to find an answer to solve my flash speed problem, the problem is i made one website which i didn't separeat into several file, i put everything in one file, the file size is 2.48mb, and the sef file is 338kb, but when i test run it from online and offline, it seen very slow, everything turn up so slow, fast animation become slow animation, so now i wanna ask any god here can help to solve this speed problem??? because i really need to speed up the page.......!!!!
in the main movie page, there have main button, - middle main movie - bottom part movie, now the question is how to change the middle movie from movie 1to movie 2 or movie 3 without changing the main button and the main page???is it using load movie or loadframe???
View Replies !
View Related
Load Entire Movie In Any Size Movie Clip?
Hi all. I was wondering. I want to make a static html page with a flash preloader. loading my entire movie into that preloader movie clip. Now I know I can load a movie into a movie clip but can i load it in and have the movie retain it's height and width (1024 by 768) after being loaded into a smaller movie clip (20 by 300). A movie clip placed on a static web page that is.
Well any advice will do, thanks in advance.
London
View Replies !
View Related
Two Emptymovieclips--buttons In Top Movie Can't Load Bottom Movie
Here's the Big Picture:
I have a Flash masthead with a menu bar. The masthead also has a rounded shape with a mask so anything underneath it will be revealed around the mask. It loads into an emptymovieclip at, say, level 10. Each item on the menu bar loads a specific SWF file into a second emptymovieclip at, say, level 5. Everything else on the main stage will be below these two empty movie clips.
I have buttons with instance names in the masthead. The script that controls the buttons and everything else is in a frame on the main stage.
Here's the ActionScript:
Code:
_root.createEmptyMovieClip("masthead",10);
masthead._x = 0
masthead._y = 0
_root.createEmptyMovieClip("body",5);
body._x = 0
body._y = 0
loadMovie("masthead.swf","masthead");
home.onRelease = function() {
loadMovie ("home.swf","body");
};
geninfo.onRelease = function() {
loadMovie ("geninfo.swf","body");
};
agenda.onRelease = function() {
loadMovie ("agenda.swf","body");
};
registration.onRelease = function() {
loadMovie ("registration.swf","body");
};
speakers.onRelease = function() {
loadMovie ("speakers.swf","body");
};
activities.onRelease = function() {
loadMovie ("activities.swf","body");
};
contact.onRelease = function() {
loadMovie ("contact.swf","body");
};
home_btn2contact.onRelease = function() {
loadMovie ("contact.swf","body");
};
What's (Not) Happening:
The masthead appears as expected, but none of the body items appear in the level-5-emptymovieclip when any of the menu buttons are clicked. Flash's debugger says the syntax is correct, but that doesn't tell me if I'm using an incorrect function, or I'm assigning a function incorrectly.
At this point, I can't tell if I'm coding the buttons incorrectly (I double-checked all the instance names and they match), or if I'm using emptymovieclip incorrectly, or whether the assigned movies are loading at all (I double-checked all the movie names and they match), or if the assigned movies are actually loading but somehow hidden (I tried assigning different positions to the emptymovieclips so something in the "body" will peek out from behind the "masthead"; no dice), or something else I haven't thought of.
I searched for an answer and there are plenty of instructions on how to do things right, but hardly any on what not to do, and none that matched my situation. So I'm hoping you fine folks have some insight to share. Anyone?
View Replies !
View Related
Movie Inside Movie Wont Load Variables.
Hello,
I have a Main navigation movie that loads page movies inside a movie clip within the main navigation movie.
one of the pages "News" will not load its variables when viewed inside the Main Navigation movie clip but will load them when viewed on its own.
Here is a snippet of code I am running in the "News" page:
this.addressVars = new LoadVars();
this.addressVars.load("php-text.php");
this.addressVars.onLoad = function() {
_root.newsText.text = addressVars.newsText;
_root.newsTitle = addressVars.newsTitle;
_root.newsDate = addressVars.newsDate;
}
I am guessing it may have something to do with addressing this or root or parent.
Any help would be greatly appreciated.
View Replies !
View Related
Load Movie Larger Than The Holders Parent Movie?
I must be an idiot today. I have a main movie that's 750x550, it has an empty mc on it that loads external swf's, no big deal. Well, one of my swf's is 750x950 and when it loads into the empty mc, it only displays down to the size of the main movie (750x550), and does not show the additional 400px!
Can't say I've ever tried to load a larger movie into a smaller one before but this situation has never been needed, now I need it.
I tried to scale the mc after loading but it still doesn't seem to show. Can this even be done?
Thanks, I really need to figure this out today.
View Replies !
View Related
Load Movie, Play Movie Then Jump Back
Hello, i am new to Action Scripting so please be gentle, but i have something i would like to achieve using it and Flash 8.
I really need to be able to load a separate SWF file from a button contained in another SWF. When loaded and played, i need to jump back to the previous SWF file, but not to the beginning, to a certain point within it (the frame i left from).
Is this possible? If so, could you talk me through how.
Thanks everyone.
View Replies !
View Related
|