Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




My Flash Movie Won't Work Inside Another Movie?



I have a menu that rises and falls with actionscript, though when I put the menu into a movie clip, the menu does not rise or fall anymore. :-( I can't figure out why the movie will work on the main frames, but not when I place it into a movie clip. It would be nice to have everything into a movie clip so that it does not take up so much space on my opening frames. Can anyone take a look at my .fla and tell me what I'm doing wrong?! Thanks!



ActionScript.org Forums > ActionScript Forums Group > ActionScript 1.0 (and below)
Posted on: 08-20-2004, 02:10 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Movie Clip Inside A Sub Movie _ Button Wont Work
Hi,
my problem is i have a main movie, a sub movie and a button in the sub movie. everything is working fine until i press the button in the submovie to go to another page in the submovie, but the button wont work. i have tried frame numbers and labels with no luck.
I have posted the flas (main movie and submovie) at www.guntherrohn.com/team.fla  and www.guntherrohn.com/guntssite.fla

once on the homepage go to team page. the buttons i am talking about are on the seperate pages within team.
Thanks again for ur help
Regards

Button Inside Movie Clip Inside Scrollpane Doesn't Work In Xml
This is sorta odd but I'm hoping somewhat easy to fix. This is in AS2 and is the last problem I have in a very small project of mine.

I have button called button01 inside a movieclip called movieclip01 which is the contentPath for a scrollpane called scrollpane01. I'd like the button to work, and depending on the code it will work in the normal .swf but won't when I embed my movie into xml.

If I put the code inside movieclip01

button01.onRelease=function(){
_root.gotoAndPlay("Frame Name");
}

It will work when I test it but not in the XML. So what I want to do is go to the main timeline where the scrollpane is and write the code there. That is where I'm stuck.

I've tried scrollpane01.movieclip01.button01 and tried movieclip01.button01 and also tried scrollpane01.button01. Just for giggles I also tried scrollpane01.movieclip01 but none of that works

Last night I had a similar problem with buttons inside a movieclip that was on the root stage. They worked in the swf but not when I embedded the file - so I found this which worked (typed in the root stage)

movieclip01.button01.onRelease=function(){

Movie Clip Buttons Nested Inside Movie Clip Dont Work
Hi people!
im having a problem here.

in my first frame i have a movie clip named "menu_mc".
i have this AS for this movie:

Code:
this.menu_mc.onRollOver = function() {
menu_mc.gotoAndPlay(8);
}
this.menu_mc.onRollOut = function() {
menu_mc.gotoAndStop(7);
}

thats working ok, the menu_mc plays on rollover from frame 8 till frame 12 where stops.
On frame 12 (this is inside the menu_mc movie clip) i have another movie clip, named button1_mc.
and also i have AS controling that MC:

Code:
this.button1_mc.onRelease = function() {
getURL("index.htm", "_self");
}


The problem is that when i rollOver on menu_mc it work fine and the button1 appears, the problem is when i try to click button1...
doesnt work.

the swf you can see it on www.wt.com.mx/menu.swf
can anybody help me please?
what im doing wrong?
or what other ideas can you give me so i can make that work.

thanks!

Get A Button To Work Inside A Movie.
Hello everyone,

If any of you could possibly help I would truely appreciate it as I am creating this for my younger cousins.

Here is the problem:

I am creating a quiz (who wants to be a millionaire style, for them.) I wanted to create a seperate movie clip for each question, so I did all this and used the relevent actionscript on my correct button:

on (release) {gotoAndStop("Correct", 1);

}

This should go to the scene 'Correct' and play the first frame. However it doesn't - the reason I believe is that you can't have a button inside a movie clip, because when it isn't in a movie clip it works fine, however to keep the file more organised I would like to be able to have the button inside the movie symbol.

So is there any way to successfully do this?

P.s. I have done a search for 'button in movie' and it brought up lots of threads not to do with my question, I did see the following: http://www.flashkit.com/board/showth...n+inside+movie However I don't believe that is the same problem..


Thanks a lot in advance!

How Do I Get This Work Inside Of A Movie Clip
How do I get this work inside of a movie clip

--------------------------------------------------------------------------------

How do I get this work inside of a movie clip
this code work perfectly on the main movie but when I put the button inside of movie dont work ......thanks for the help


on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "page1";
container.loadMovie("page1.swf");
} else if (_root.currMovie != "page1") {
if (container._currentframe >= container.midframe) {
_root.currMovie = "page1";
container.play();
}
}
}

Get Url Won't Work Inside A Movie Clip
Hello,

I have a movie clip, inside are serveral other movie clips used as buttons.
on these movie clips I put an
on(release) {
getURL("boo.com");
}
script.

but for some reason it won't work.

I tried using buttons first but that didn't work either.

here's the fla
http://www.arbel-designs.com/4sale/main.fla

it's on the blue area movie clip the extends when you move over one of the main buttons.
That's the first movie clip, inside that one there are move.
it's call extendedbutton1

Thanks

How Do I Get This Work Inside Of A Movie Clip
How do I get this work inside of a movie clip
this code work perfectly on the main movie but when I put the button inside of movie dont work thanks for the help


on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = "page1";
container.loadMovie("page1.swf");
} else if (_root.currMovie != "page1") {
if (container._currentframe >= container.midframe) {
_root.currMovie = "page1";
container.play();
}
}
}

Pop Out Buttons Will Not Work Inside Movie Why?
hi, I created a main_scene movie....then I created a movie clip with pop out buttons and I inserted this movie clip (buttons) into my main_scene but for some reason when I tell my buttons that on release gotoAndPlay this scene, it will not work...anyone know why?

How Come Buttons Do Not Work Inside Movie Clip?
oh boy more flash problems.You would think after 4 years with flash i wouldnt get things like this anymore.
Anyways i need to have several buttons inside a movie clip.im using some tell targetting.Each button has a stop action on it in the MC but when i test movie the first button should jump to Scene 2..and i am in scene 1..

i have noticed that within movie clips buttons dont understand "scenes"...i have coded the button within scene 1 inside an MC on release to go to scene 2!!!

Please help me!!im lost!

chris

Getting Buttons To Work Inside Of A Movie Clip
I have made a drop down menu inside of a movie. On rollover the top button opens the drop down menu. I can rollover all of the other buttons, but when I want to script another button to go and play another movie on the main timeline or an animation on the main timeline, I can't get it to work. I have done a - go to and play "framelable" and a - got to and play "mc_name" and neither work. What am I doing wrong?

Thanks in advance...
bbg

HELP How To Get A Button Work Inside A Movie Clip?
I can't make a button work properly inside a movie clip, and the movie clip is actually a drop down navigation menu. I applied a button inside the movie clip, and added action to the button to tell it go to scene 2 when mouse release. However, it doesn't go to the page I want it to go, and I have below action applied on the button.

on (release){
gotoAndPlay ( 'Scene 2', 1 );
}

I have attached the FLA file of this drop down menu, please have someone to tell me what's wrong and how to solve the problem.

Thanks,
Karen
karen_yan@hotmail.com

[F8] Buttons Inside Movie Clip Don't Work
I have built a menu movie clip (mcMenu) and within it are submenu movie clips (e.g, mcCourses). On a button in the main menu, when you roll over it, you gotoAndPlay at another frame in the main menu that has the mcCourses movie clip. mcCourses has three buttons in it, but when you are on the web page testing functionality, though you roll over the main menu button and the submenu comes up, the buttons within the mcCourses submenu don't work. I've read that if you have button handling in the parent, that buttons in the child won't work. Is this true? If so, how can you work around it besides the clunky invisible button in the submenu that never quite works cleanly? If this is not what the issue is, then what am I doing wrong?

Thanks for any help!

Neil

[F8] Rollovers Won't Work Inside Movie Clip
Hi,

I'm actually using cs3 but working in AS 1&2...

I have made these buttons with specific rollovers which I have then converted into movie clips to enable the drag and drop feature.

Unfortunately, when I test the file, all rollovers seem to be removed.

Can anyone help me please?

Thanks in advance.

net_gal

[F8] Rollovers Won't Work Inside Movie Clip
Hi,

I'm actually using CS3 but working in AS 1 & 2.

I have made some buttons with specific rollovers, then have converted them into movie clips to enable drag and drop feature.

Unfortunately when i test file, it seems that rollovers are removed.

Can anyone help me please?

Thanks in advance.

net_gal

XML Call Won't Work Inside Movie Clip
Flash Versions: Attempted in 7 & 8

Hey,

I have created a movie clip that I am using to slide content via x/y coordinates. Within this movie clip, I have all of my content laid out, square by square, and with a click of a button on the top layer, these square's x/y coordinates are being called to 0'0'. You get it, simple sliding stuff.

Problem is this:
-One of my "squares" (within the movie clip) uses a dynamic text field that calls an external .xml file for content. When I use this code on a blank .fla document, outside of this movie clip, it works fine, but when I bring it into the movie clip, no text shows up in the field. Why? I've even tried using a .txt variable call instead of .xml and i still get no results within the movieclip, but success on a blank .fla

-This is how it's arranged: Scene 1>SlidingContent>ActualContent (this is where I create two layers, one with the dyn. text field and another with the actionscript)

-*sidenote: I have another "square" that calls .jpgs via code and it works fine.

Button Inside Movie Clip No Work
im using flash 8 pro.
i have a movieclip, about_mc
about_mc is on the root timline
inside about_mc i have a button with an instance name of openbtn
when i test the movie (ctrl+enter) openbtn does not do anything
i dont even get the handCursor when i place the mouse over about_mc

is there a way to tell openbtn onRelease gotoAndPlay (2); within about_mc?

hope this is not to confusing.

thanks

Buttons Inside Movie Clip Won't Work
I have a button inside a move clip, the movie clip is on the main timeline. My button has a rollover state and when i play my file the button doesn't work. I made a simple file with a movie clip with a button in it and it worked... but when i try and do it in my file it doesn't work. I'm trying to find out what the problem could be... any ideas? To see what my file looks like go to http://www.frsind.com/test.html

HELP. Button Inside Movie Clip Will Not Work
So I have a MovieClip (instance name: menu) that has a transition being used on it, so I had to put the button (home) I wanted to work on the parent layer (main) inside the MovieClip, but it does not work on the parent layer. Why is this? What do I do?

Button Inside Movie Clips Don't Work
I have a move clip that is, in a way, behaving like a button. problem is this makes the buttons inside the move clip not function. How do i keep the same functionality of my movie clip while maintaining my button's functionality as well. Any help is very appreciated

download and example:
http://www.maciariello.com/Controle.zip

Thanks

Actionscript Wont Work While Inside Movie Clip
i found this very small and very nice actionscript which tweens objects.
the script works fine when it isnt in a movie, but as soon as i place all the layers inside a movie clip, it ceases to work.
is there something i need to tell the script to allow it to work inside a movie clip? its a really simple bit of code which i can post if it makes answering this any easier.
thanks

Removing A Movie Clip From Inside Itself Doesn't Work :(
For some reason, I can't remove a movie clip from inside itself. I even tried using a function on the _root timeline, and calling it from within the movie clip, and it still didn't work.

Here's what I'm currently using to try to remove it from within itself (doesn't work):
code:
removeMovieClip(this);

I also tried this:
code:
this.removeMovieClip();


The function I attempted to use looked like this:
code:
killMe = function (target)
{
removeMovieClip(target);
//This function is on the _root timeline
}

And the call in the movie clip looked like this:
code:
_root.killMe(this);



Any ideas, explanations, workarounds? I did remember to search this time, by the way.


Thanks!
Rick

Edit: I can, however, MOVE the movie clip from within itself

How Can I Make Botons Work Being Inside A Movie Clip ?
using flash mx.

i do have 5 diferents botons ..
and i need to put them all inside a movie clip , so i can make the botons slide into the screen and stop ..

then when i prees them ,, they dont do anything..

i need to know how can i place the bottoms inside a movie clip , and keep working as a boton .?

Button Inside A Movie Clip...wont Work?
heres the problem I have a button inside a movie clip, but the button in the movie clip wont go to scene 2...

I tried the following code but it doesn't go to Scene2

on (release) {
gotoAndPlay ("Scene 2", 1);
}


please somebody help cos i dont have enough money to buy a new monitor when i chuck this 1 out the window... yes ive been tryin 2 so this for some time now

Unable To Get Checkbox To Work Inside Movie Clip
Hello,
I am following up on a problem that is very close to working but not quite. What I need some how is to indicate when you press the button that it has been checked. When create a button inside the movie clip the check function won't work. I simulate the check by using labels within the movie clip. Check boxes don't work either, but I need to somehow convey that the buttons have been checked. Does anyone have a clue. A great guy helped me out before but I have mislaid his contact information. Where are you. I owe you a photograph!
The file is attached. you wil have to create fout external swfs for it to run, but I don't think it needs to work to solve this particular problem.

Cheers,
Ben

How To Make Buttons Inside Movie Clip Work
Hi all...
I got this problem: i've a movie clip (list) that has to be a MC for moving it with AS,and in it 4 buttons. The action on every button is something like
on(press) {
gotoAndPlay("Scene 1",3);
}
The click on the button should make the movie go to the frame 3 of the main scene... BUT buttons inside MovieCLips seems not to work!
Help Please!

Why A Button Doesn's Work Inside A Movie Clip?
I have a problem whit that!!!

any of my buttons work!!!

What does that mean?

Thanks anybody!!

Trouble Getting Buttons Inside Movie Clips To Work
i've made some animated dropdown menus for the navigation bar on a site i'm working on, but can't get the links inside the dropdown menu (which is a movie clip) to work. i've used the simple gotoandplay script, and i think i need to tell it to leave the movie clip and return to scene one, but can't find it in my flash book or in the help section of the program. how can i make it work?

Arrghh Help.. Button Inside Movie Clip Can't Work
So here's a problem. I want to create a floating upside down slowly button! so to make it float, i create a movie clip, and inside it i insert the button. And not just that, i want when the mouse over the button, it have sum animations too. So Inside the button/over, there's another movie clip.
But when i use actionscript:

on (press) {
gotoAndPlay(100);
}

on that movieclip button, it wont work!!!
hmm.. well.. i think maybe my explanation is hard to understand, but please try!!
here's the summary : a movieclip, inside it theres a button, and insde the button there's movie clip.

i'm not really2 understand actionscript yet, i just got to know the basic, but please tell me. i do try to change the movie clip into button, but it still wont work and more bad, the movieclip inside the 'over' button wont work. arggggh...

HitTest Doen't Work Inside A Movie Clip....help
I want to create a hitTest but if I have my movie clip inside two other movie clips it doesn't work! WHY!!!!

My script is as follows:

myMovieClip_mc.onEnterFrame = function(){
if(this.hitTest(_xmouse,_ymouse,true)){
trace("this")
}
}

This script works fine because I have my movie clip on _root. But when I put this script inside one or two movie clips it doesn't work. What am I doing wrong!!!!

thanks a lot

Brenda S.

Scroll Buttons Don't Work Inside Movie Clip
i have a movie clip (in a movie, let's call the movie main.swf) that loads an external swf (call it scroll.swf) with a scrolling textbox in it. when i test scroll.swf, it works fine. but when i test main.swf, scroll.swf loads fine but the scroll buttons don't work. anyone have any idea why??

Scroll Buttons Don't Work Inside Movie Clip
i have a movie clip (in a movie, let's call the movie main.swf) that loads an external swf (call it scroll.swf) with a scrolling textbox in it. when i test scroll.swf, it works fine. but when i test main.swf, scroll.swf loads fine but the scroll buttons don't work. anyone have any idea why??

Buttons Inside Movie Clip Doesn't Work On Over
Hi all,
please help because i am loosing my head. i'm not an expert flash user but I wouldn't say that I am a novice one either.

Into the problem.

I am trying to do a drop down menu. I have used a movie clip to create the effect and in there are the buttons. I am using the root to control the actions. It works fine but when I add the code for the RollOut event the buttons stop having the over effect like to change the font colour etc.

What am I doing wrong?
I have made a douzen variations and I have attached one of them. (i'm not sure if it's attached though)

here is the code placed on the root for the button Vision Support, that's the only one trying to implement since the morning!

this.support_mc.onRollOver = function(){
this.gotoAndPlay(2);
DDSupport_mc.gotoAndPlay(2);
};

this.support_mc.onRollOut = function(){
this.gotoAndPlay(16);
};
this.DDSupport_mc.onRollOut = function(){
this.gotoAndPlay(70);
};

please please help

Mag Lens Effect How To Make It Work Inside A Movie CLip?
I donīt know if this is the right forum for my question but I will post it anyway


Mag lens effect how to make it work inside a Movie CLip??
Effect is described at :
http://www.flashkit.com/tutorials/Sp...-144/more6.php


Iīve tried to duplicate mag. lens effect inserting all objects and lines code into a movie clip which is placed onto frame 1 of a scene (thatīs the only frame that means the scene is stopped).
However mag lens does not work and I realized it plays continuously
and without any control the Movie clip.
Is there a way adapt it to run into a Movie clip??

Thank You very much for your attention.


Using flahs five
ron_wolpa@hotmail.com

[MX] Buttons That Are Inside A Movie Clip, Which Is On A Scene Do Not Work. Help Plse
ok, I have a website with 4 pages (home, services, portfolio and contact). on the portfolio page there are two buttons called "web" and "print". (Each page is its own scene.)

The web and print buttons are inside a movie clip. the reason they are in the movie clip is because i wanted them to float about the page (scene) looped. thus they are in a movie clip. when you click on each button they are supposed to go to their respective pages. Inside the movie clip i went in and added the "go to and play" action script. All other buttons on the site work except for the web and print button that move around the page in the movie clip.

so basically the buttons are now floating about on the page within the movie clip that is on the main scene. the problem is that when you click on the buttons they do not do anything. when you click on the button it changes color like it is supposed to, but it just doesent take you to its respective pages.
Thanks for any help....

Reply With Quote

Create Movie Clip Wont Work Inside Loop...
So I created a do while loop that will execute onLoad of an xml document. The onLoad function is working and the xml is loading correctly. However I want to also create a movie clip during this loop cycle. I have tried attachMovie and createEmptyMovieClip and nothing seems to happen when it is inside the loop. Taking it out of the loop however and the statements work fine.

What is going on here? I'm pulling my hair out over this one. The code if you need it:

Code:
//=============================================== create dynamic text obj w/scrollbar
this.createTextField("assetTitle_txt", this.getNextHighestDepth(), 10, 10, 120, 300);
//assetTitle_txt.html = true;
assetTitle_txt.multiline = true;
assetTitle_txt.wordWrap = true;
//why does this stop any text from showning up?
//assetTitle_txt.embedFonts = true;

// format the text
var assetTitle_fmt:TextFormat = new TextFormat();
assetTitle_fmt.size = 14;
assetTitle_fmt.color = 0xFFFFFF;
assetTitle_fmt.font = "Berlin Sans FB";
assetTitle_txt.setNewTextFormat(assetTitle_fmt);

//attach scroll bar
this.createClassObject(mx.controls.UIScrollBar, "mainVert_sb", this.getNextHighestDepth());
mainVert_sb.move( this._width - 5, assetTitle_txt._y);
mainVert_sb.setScrollTarget(assetTitle_txt);
mainVert_sb.setSize(4, assetTitle_txt._height);

//populate text box xml method
//=============================================== create new xml obj
var my_xml:XML = new XML();
// Set the ignoreWhite property to true (default value is false).
my_xml.ignoreWhite = true;


//=============================================== set up xml onload function
my_xml.onLoad = function(success) {
var countA = 1;
do {
//construct a seperate movie clip
this.attachMovie ("dateMarker_mc", "marker1_mc", 1000);
marker1_mc._x = 0;
marker1_mc._y = 0;



//position movie clip relative to previous clips y value + size

//load asset titles into txt object
assetTitle_txt.text += my_xml.firstChild.childNodes[countA].childNodes[1].firstChild.nodeValue + newline + newline;
countA++ ;
}
//eventually the cond for this will be a test to see if more elements exist
while ( countA < 2 ) ;
};

//=============================================== Load the XML into the my_xml object.
my_xml.load("all_titles.xml");

Main_mc Scroll Window, Doesnt Work Inside Movie?
Hey yall,

I'm trying to get a scroll bar tutorial to work inside of a movie (meaning I have a movie instance named "home mov"). However, when I try to run the program, it doesn't load the text file or show anything at all. Here is the main action script that is supposed to load it:


Code:

function showText(message) {
main4.w_field4.htmlText = message;
if (main4.w_field4.maxscroll > main4.w_field4.scroll) {
main4.gotoAndPlay("scroll_loop4");
}
}
function checkVars(success) {
if (success) {
the_text = this.my_text;
gotoAndStop(141);
} else {
trace("file didn't load");
}
}



should i name it home mov.main4.w_field4.htmlText ??? ive tried a few variations and nothing works

Image Scroller Script Doesn't Work When Put Inside Movie Clip
I've given up trying to figure this out myself as I'm new to this and desperately in need of help.

I got a script which is an image scroller. I've attached the fla in question and the problem seems to be in the 'controller' MC which you can see in the assets. This is what controls the button actions to the slides.

I want to be able to put this in another movie clip so that I can refer to it from another mc and then this shoudl start playing.

Will really appreciate your help!

BTW I am using Flash MX 2004.

Dynamic Text From .txt File Doesn't Work Inside Movie Clip
Let me start by explaining...
I have a 10 Scene flash movie / website. Everyscene has it's own cool animation. (To see what i mean check out http://69.41.144.121/aerocet/index.html). There are many layers in each scene and each scene has a lot of symbols. I am trying to load text from a txt file dynamically into a movie clip called t_info_text1 which is also inside Symbol 82 which is a symbol of Scene 2. I can't ever manage to see the text in the compiled site. I've tried many different paths the the object and such. Is there just a trick I am missing, or scripting I am getting wrong?

Again:
Textbox instance name about_txt var about
Part of Movie Clip t_info_text1
Part of Symbol 82
Part of Scene 2
Part of SWF

in same directory on HDD is about.txt which contains the following:
&about=Some text about us

in Frame 1 of Scene 2 actionscript reads the following
loadVariables("about.txt",0);
about_txt.embedfonts = true;

I have already embedded my fonts and they work fine, If i paste the text into the textbox it will show up, but if I load it froma text file, it's no go....
What can I do?

How To Have A Button Link To A Certain Frame Inside A Movie Clip From Inside A Movie
Is this possible? I have a menu and would like to have a drop down box nested inside the menue which links to certain frames inside the main movie clip.

Having A Quicktime Movie Play Inside A Flash Movie
hey everyone,
i know flfash movies can have other flash movies play inside eachother, but is it possible to have quicktime movies and WMV movies play inside a flash movie on the fly?

example: flash.swf?fileToInclude=quicktime.mov

thanks.

Playing A Flash Movie Inside Another Movie
Hi All. I've created a small site out of flash, and the content I have made using Swish. I exported the Swish to an SWF file, then imported the SWF into a new symbol --> Movie, named "Content". This consisted of 20 individual frames. I then accepted it, and dragged the "Content" from the Library into the main piece of movie itself, but when I try to view the movie the imported SWF does not play. Does anybody know how to play a flash movie, inside another flash movie. Cheers,

Kind Regards,

Adam Prettyjohns

Movie Clip Inside A Flash Movie
Hi,

I would like to insert inside a flah animation differents movie clips of differents size than the main animation. Does it make sens?

Ok, let's say I've got a 600px X 250px Flash animation, now I would like to insert in this animation 3 other movie clips next to each other-each one of them measuring 200px X 250px.

That way I will have 3 small animations with there own boundaries running at the same time on the main animation, so if I want a ball going from left to right in the first animation (the one at the far left on the main animation), the ball will diseapear inside the first animation boundaries without appearing on the main animation.

Ok it's a bit confuse but I am not a Flash expert, so forgive me.

Thanks

Fred

Remoting Movie Inside Flash Movie
Hi,

I have several separate Flash movies that use remoting to connect to the database.

My experience in Flash is pretty much limited to the creation of these movies, so my questions may seem silly but here goes:

I need to put all these movies into a larger movie but I have no idea how to do so

When I import to library and drag an instance onto the stage and give instance name, the movie shows up but does not play. When I use _root.<instance_name>.play(), I get nothing.

Can anybody offer advice on how to get these individual flash movies with remoting to work when inside a larger flash movie?

Thanks,

flash_gorgon

How Do I Jump From A Movie Inside A Movie Back Out To The Main Movie?
Im using MX Pro, i have a flash movie (Movie1) that has a button. I coverted the button to a movie symbol(movie2). i double click that movie symbol(movie2) and it opens into its own smaller movie. i am trying to write the actionscript for a button in the smaller movie (movie2) to take me to scene 2 of the Movie1. PLEASE HELP !!

Loading Text Inside Movie -> Inside A Movie
Ok so I have a movie that has a bunch of little movies which are played on a click of a button. Now inside the second layer movie I want to load some text from an external txt file but for some reason it is not working. I am using, loadVariablesNum("content.txt", 0); and my dynamic txt area is suppose to retreive the variable rafting. now for some reason it is not loading the text into the text area, could it because it is not in the main scene??? Can someone please help me out???

Thanks

Nick

Need To Double Click Flash Movie To Get Flash Movie To Work
Problem: When an html page is loaded in Explorer, if there is a .swf file in the page, the .swf needs to be clicked twice before it works. Before you click on the .swf if you place the cursor over the .swf, a grey box appears around the .swf

As an example, http://www.barneys.com/
site has the same problem.

Doesn't seem to happen in Firefox or on the Mac.

Import A Flash Movie Inside A Flash Movie?
How can i get a flash moive (movie clip) to play inside anthor flash doct?

Meathods tried:
1) Import the flash file to libray = Failed
2) publish the flash file then import to libray = Failed? When i try and drag it to stage my comp freezes

Alil help will go along way ^-^

Running A Flash Movie Inside A Flash Movie?
Well, I'm wondering if I can run a flash movie inside of another movie. My past attempts at getting a sound file to play throughout my entire site have failed..

I was thinking of a setup kinda like this:

<shell flash movie with sound file>
<website flash movie></website flash movie>
</shell movie with sound file>

And have controls within the website flash movie to mute/unmute the sound for users that don't want sound.

Insert A Flash Movie Inside A Other Flash Movie
Hello boys and girls,

how can I insert a Flash movie file into an other Flash movie file? When doing it I see the movie but loose the sound.

thank ya

Copyright Đ 2005-08 www.BigResource.com, All rights reserved