How To Control A Parent MC?
I've got a complex heirarchy of MCs...say I need to put a script in MC-1.1 to gotoAndStop(1) of MC-1...so there are 2 ways to do it as to what i know, one is _root.MC-1.gotoAndStop(1); and the other is the other way around like going one step up from the child ...i know it has something to do with '/' but cant figure out the syntax..could someome help me out? Let me know if im making sense.......
FlashKit > Flash Help > Flash ActionScript
Posted on: 09-27-2004, 08:51 AM
View Complete Forum Thread with Replies
Sponsored Links:
Using Child To Control Parent, Help
Hello,
I have a menu which resides in the library and is achild which controls the parent. When the buttons are released I'm using this action to navigate from scene to scene
on (release) {
with (_level0.gotoAndPlay(49)) {
}
}
In this instance there is a blank keyframe on frame 49 which has a gotoAndPlay action to another scene. I know this is jury rigged I get a
"Error: A 'with' action failed because the specified object did not exist."
In the output window. But it has been working fine, that is until I added a scene to begining of the movie. Now it just jumps around the scene it's in. Does anyone know the correct script for a child symbol that controls the parent scene?
Cheers
View Replies !
View Related
Parent SWF Control From External SWF
I have one PARENT swf and one EXTERNAL swf.
on PARENT i have one movie clip called PARENT_MC.
on EXTERNAL swf i have one button with the following action:
myButton.onRelease = function() {
_level0.PARENT_MC._visible=0;
};
this does not work.. please help.. all i need to do is control a movie clip on parent swf from an external swf file.
View Replies !
View Related
Control An Swf Loaded Into MC From A Parent's Nav Above Question -- Help
using flashmx 2004 pro
new to this project and been tasked with modifying a large movie w/ MCs that's already being loaded by a main container into a sub-container where those MCs are now loaded swfs.
having a bear of a time getting a sub nav in an MC in the container movie to play the newly loaded sub-swfs properly--
container/MC/navbar/subnav/subnav
|
subcontainer.swf/emptyMC
|
mybrokenout.swf
I'm performing a loadMovie on a frame in the loaded subcontainer.swf instructing it to to load mybrokenout.swf into an empty clip where it used to load it as an mc, also using a clipEvent on the empty MC to tell it to goto and play the newly loaded mybrokenout.swf.
it seems to load ok, but I can't control it via the top nav once it has (it also seems to have broken the subnavbar's functionality where it controls other MCs in the intitally loaded subcontainer.
Does this mean I have to add another parent to the path in the top nav's path to control mybrokenout.swf?
here's the paraphrased AS the the navbar calls:
on(press)
_parent._parent.subnavbarsMC.emptyMC.loadedSWF.got oAndStop(1);
click = true;
deadline's passed. ack
thanks
View Replies !
View Related
Control Child Swf From Parent Using Loadclip
Hi everyone, and thanks in advance for taking the time to look over this (seemingly simple) problem. I have a parent swf that is loading a child swf into it. Once it is loaded (using loadclip, not loadmovie), I want to tell it to go to frame "here". Here's my code:
mcl.loadClip("mc.swf", _parent.holder);
_parent.holder.gotoAndPlay("here");
The mc.swf loads in fine, but then it doesn't go to frame "two." Any ideas?
-Aaron
View Replies !
View Related
How Can I Control A Parent Container Clip?
I have a site with the usual design: main.swf with a container clip which loads the various swfs into it using MovieClipLoader.
In one of the swfs that is loaded into the container clip, I have a button that, onRelease, I'd like to load another swf into the main container clip.
Can I have a button address the container clip that is holding it's parent swf?
Another way to put it, can I have a movieclip unload itself by loading another movieclip into it's own container clip?
thanks for any insight!
View Replies !
View Related
How Can I Control A Parent Container Clip?
I have a site with the usual design: main.swf with a container clip which loads the various swfs into it using MovieClipLoader.
In one of the swfs that is loaded into the container clip, I have a button that, onRelease, I'd like to load another swf into the main container clip.
Can I have a button address the container clip that is holding it's parent swf?
Another way to put it, can I have a movieclip unload itself by loading another movieclip into it's own container clip?
thanks for any insight!
View Replies !
View Related
Can't Control Parent MC With Nested Button
Thanks to KGLAD for hooking me up on my last question!
I have another simple question and have searched for an answer, but I fear my ignorance of programing in general is keeping me from searching for the right term. I know this has to be a stupid question, but I'm new so I don't mind looking foolish.
I have a button called start_btn that I have nested at the end of a movie clip (animated text that turns into a button) I have this movie clip on the stage in scene 1. My question is simple. How do I get the button in the movie clip to advance to a frame in Scene1?
I included the code in my question, but I get an error when I test the movie, even though when I check sntax I get no errors:
Here is the error I get when I click the button:
TypeError: Error #1123: Filter operator not supported on type designInAction_fla.MainTimeline.
at designInAction_fla::start_movie_1/startClick()
Attach Code
stop();
function startClick(evt:MouseEvent):void
{
gotoAndPlay(parent.("intro"));
}
start_btn.addEventListener(MouseEvent.CLICK,startClick);
Edited: 11/07/2007 at 11:26:09 AM by ChockRock
View Replies !
View Related
How Can I Control A Parent Container Clip?
I have a site with the usual design: main.swf with a container clip which loads the various swfs into it using MovieClipLoader.
In one of the swfs that is loaded into the container clip, I have a button that, onRelease, I'd like to load another swf into the main container clip.
Can I have a button address the container clip that is holding it's parent swf?
Another way to put it, can I have a movieclip unload itself by loading another movieclip into it's own container clip?
thanks for any insight!
View Replies !
View Related
Control Parent Browser Window From Within Flash
Boy that was a horrible title but I could not think of anything better.
What I am trying to achieve is to have a button in my movie that will expand the browser window that it is in to fullscreen.
What am I missing here because it ain't workin'?
Code:
function fullscreen(){
getURL ("javascript:self=window.open('self','self','width=400,height=300,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=Yes'); self.focus(); void(0);");
}
View Replies !
View Related
How A SWF Child Can Control A Parent’s Function / Variable ?
For instance, in the below code a parent can control a SWF child’s function “alert ()”.
But how a SWF child can control the parent’s function “ReceivingChildMsg()” ?
public class ChildSWF extends Sprite
{
private var t:TextField;
public function ChildSWF():void
{
t = new TextField( );
t.text = "No Message from the Parent";
addChild( t );
//~~~~~~~~~~
Button.addEventListener(MouseEvent.CLICK,clickHand ler,false,0,true);
}
public function alert(msg:String):void
{
t.text = msg;
}
protected function clickHandler(event:MouseEvent):void
{
ReceivingChildMsg (‘Received Child Message’);
}
########
public class ParentSWF extends Sprite
{
private var loader:Loader;
public function ParentSWF():void
{
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.CO MPLETE, onLoadComplete);
loader.load(new URLRequest('ChildSWF.swf'));
//~~~~~~~~~~~
tc = new TextField( );
tc.text = "No Message from the Child";
addChild( tc );
}
private function onLoadComplete(e:Event):void
{
var loaderInfo:LoaderInfo = e.target as LoaderInfo;
addChild(e.target.content);
var swf:Object = loaderInfo.content;
swf.x = 75;
swf.y = 50;
swf.alert('Received Parent Message');
}
public function ReceivingChildMsg ( var childsMsg:String):void
{
tc.text = childsMsg;
}
}
View Replies !
View Related
External Swf Data Control From Parent File- Help
i think its simple but not working- please help:
im loading an external swf from my parent swf:
loadMovie("external.swf", 4);
now, on external.swf i have a dynamic textfiled, which should be updated from the PARENT swf:
this is on PARENT swf file:
this.onRelease = function() {
_level4.mytextfield.htmlText = "some text";
};
now it does not work- is there any other BETTER way to do it- please help.
View Replies !
View Related
How A SWF Child Can Control A Parent’s Function/variable ?
For instance in the below code a parent can control the SWF child’s function “alert ()”.
But how a SWF child can control parent’s function “ReceivingChildMsg()” ?
public class ChildSWF extends Sprite
{
private var t:TextField;
public function ChildSWF():void
{
t = new TextField( );
t.text = "No Message from the Parent";
addChild( t );
//~~~~~~~~~~
Button.addEventListener(MouseEvent.CLICK,clickHand ler,false,0,true);
}
public function alert(msg:String):void
{
t.text = msg;
}
protected function clickHandler(event:MouseEvent):void
{
ReceivingChildMsg (‘Received Child Message’);
}
########
public class ParentSWF extends Sprite
{
private var loader:Loader;
public function ParentSWF():void
{
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.CO MPLETE, onLoadComplete);
loader.load(new URLRequest('ChildSWF.swf'));
//~~~~~~~~~~~
tc = new TextField( );
tc.text = "No Message from the Child";
addChild( tc );
}
private function onLoadComplete(e:Event):void
{
var loaderInfo:LoaderInfo = e.target as LoaderInfo;
addChild(e.target.content);
var swf:Object = loaderInfo.content;
swf.x = 75;
swf.y = 50;
swf.alert('Received Parent Message');
}
public function ReceivingChildMsg ( var childsMsg:String):void
{
tc.text = childsMsg;
}
}
View Replies !
View Related
Control Parent MovieClip From Loaded Movie
Hello Flashers,
Can anyone help with this?
I want to control a movieclip on the main timeline from a loaded movie but cannot get it to work.
The main timeline contains a movieclip called "Intro". I have also given this an instance name of "Intro"
I want to be able to control automatically which frame this is on from the loaded movie without having to click a button.
In the loaded movie I have tried the following:
_parent.Intro.gotoAndStop(1);
also tried...
_root.Intro.gotoAndStop(1);
and then...
tellTarget("/Intro"){
gotoAndStop(1);
}
But no joy.
If any one can help I would be extremely grateful.
Many thanks,
Chazzer.
View Replies !
View Related
How A SWF Child Can Control A Parent’s Function / Variable ?
For instance, in the below code a parent can control the SWF child’s function “alert ()”.
But how a SWF child can control the parent’s function “ReceivingChildMsg()” ?
( Note: I am using Actionscript 3 )
public class ChildSWF extends Sprite
{
private var t:TextField;
public function ChildSWF():void
{
t = new TextField( );
t.text = "No Message from the Parent";
addChild( t );
//~~~~~~~~~~
Button.addEventListener(MouseEvent.CLICK,clickHandler,false,0,true);
}
public function alert(msg:String):void
{
t.text = msg;
}
protected function clickHandler(event:MouseEvent):void
{
ReceivingChildMsg (‘Received Child Message’);
}
########
public class ParentSWF extends Sprite
{
private var loader:Loader;
public function ParentSWF():void
{
loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
loader.load(new URLRequest('ChildSWF.swf'));
//~~~~~~~~~~~
tc = new TextField( );
tc.text = "No Message from the Child";
addChild( tc );
}
private function onLoadComplete(e:Event):void
{
var loaderInfo:LoaderInfo = e.target as LoaderInfo;
addChild(e.target.content);
var swf:Object = loaderInfo.content;
swf.x = 75;
swf.y = 50;
swf.alert('Received Parent Message');
}
public function ReceivingChildMsg ( var childsMsg:String):void
{
tc.text = childsMsg;
}
}
View Replies !
View Related
Dynamically REMOVING Children From Parent Containers? MovieClip(this.parent.parent...
EDIT: actually, this isn't really dynamic... it should be really simple!
I can get a nested swf to add a movie to the root timeline, but in order to replace it with a new movie, AS3 first requires that I clear the old one. I can't figure it out!
This does not work, though it is the exact same format I use to add a movie to the root successfully:
Code:
MovieClip(this.parent.parent.parent).removeChild(MovieClip(this.parent.parent.parent).loadMovie)
Any idea why this doesn't work?
View Replies !
View Related
Can An External Swf Movie Clip Control Action On The Parent Timeline?
I have an instance where I'd like a movieclip inside of an external swf file to control action on the parent timeline... any ideas? Is it a function command? Here was my attempt at it...
//importing external swf file "entrypage" using empty movieclip "container" on main parent timeline
_root.createEmptyMovieClip("container",1);
container.loadMovie("entrypage.swf");
//functionality of external swf files movie clip "na9" which is contained inside "testnav" on external swf files main timeline...
testnav.nav9.onPress = function() {
_parent.gotoAndStop("theend"); //by clicking on the above movieclip, it moves to "theend" label on the parent timeline
}
Am I close?
View Replies !
View Related
Flash 8 -- Trouble With Getting Button To Control Parent Movie Clip
I am making an e-learning where i have a shell file that holds a movie clip that loads in the lesson pages as they are called from a separate actionscript file. in the actionscript file, i have a global variable adds or subtracts, and then functions which place the lesson pages in the shell, etc. at the end of one of the lesson pages, i have a movie clip button that i need to remove itself and advance the user to the next page in the lesson.
my question is, how do i get the button on one lesson page to unload that lesson page from the shell movie clip, and then advance the user to the next part of the lesson?
View Replies !
View Related
Newbie: Does An Action Script In A Movie Clip Control Is Parent Scene?
This is probably very simple... but I can't seem to find this looking at the help files. I have a my main flash file (flash 8), that has within it a movie clip that with the menu I created. I want to use this menu to control the main movie... but going to a specific frame. Can this be done... can a movie clip control the playback head of the main movie. I'm using the following but it doesn't work.
on (release) {
gotoAndPlay("Scene 1", "frame 5");
}
thanks
View Replies !
View Related
Button Inside Of Movie, Want It To Control Parent Movie
Hi, i tried finding this on your message board but couldn't find anything. Im trying to make a flash movie and im stuck on something that im sure is easy for a pro flash mx user. I have a flash document. There is a movie inside it. The movie has a button. I want the Button inside that movie to controll the flash document its in and make it go to frame 5. Could anyone try to help me out. I would really appreciate it. Im working in Flash mx
I thought this scrip would work.
on (release) {
_parent;
gotoAndPlay(5);
}
But it doesn't.
Please help
Thanks
Frank
View Replies !
View Related
How To Control PARENT Movie From Within A LOADED Movie?
Hello there,
Here my situation.
I have one main movie and load in it two other swf movies into two separate levels (level1 and level2). I use LoadMovieNum and everithyng works fine.
problem:
I have a button within the movie, which is loaded on level2 of the parent movie. With that button I want to control the parent movie (level0 or _root) to jump to a specific frame. How could I do this?
I tried:
_root.gotoAndPlay (...);
but it controls only the movie in which the button is placed, not the parent movie.
I also tried:
_parent.gotoAndPlay (...);
doesn't work either.
Any suggestions would be greatly appreciated.
Thanks, and Happy New Year
Metodi
View Replies !
View Related
How To Control PARENT Movie From Within A LOADED Movie?
Hello there,
Here my situation.
I have one main movie and load in it two other swf movies into two separate levels (level1 and level2). I use LoadMovieNum and everithyng works fine.
problem:
I have a button within the movie, which is loaded on level2 of the parent movie. With that button I want to control the parent movie (level0 or _root) to jump to a specific frame. How could I do this?
I tried:
_root.gotoAndPlay (...);
but it controls only the movie in which the button is placed, not the parent movie.
_parent.gotoAndPlay (...);
and
_level0.gotoAndPlay (...);
don't work either.
Any suggestions would be greatly appreciated.
Thanks, and Happy New Year
Metodi
View Replies !
View Related
External Movie Control Parent Movie...
I have a movie, with a basic menu in it. when you click a button it changes from white to blue and an external swf is loaded onto the stage, it plays and then stops showing the user a new button. When you click this new button the external swf plays a little shutdown animation.
This all works fine. But i want the new button, when released, to tell the original menu button to change from blue back to white.
The original menu button is called "contact". Am very stuck. _root.contact.gotoAndStop(1); doesnt work.
Any help would be cool.
steven.
View Replies !
View Related
AddChild To This.parent.parent?
Greetings.
I have a movie clip on the main timeline called fullContainer with an instance name of fullCont_mc.
Trying to use the addChild method from a different movie clip to load a jpg into fullCont_mc .
I've traced this.parent.parent from within the 'different' movie clip to confirm it brings me to [Object MainTimeline]
I've used the following code: this.parent.parent.fullCont_mc.addChild(imageLoade r);
I'm getting the following error:
Access of possibly undefined property fullCont_mc through a reference with static type flash.displayisplayObjectContainer.
I'd think AS3 would recognize fullCont_mc by its instance name on the main timeline. What am I missing here?
Ultimately, I'm trying to use fullCont_mc as a mask for the loaded image. Please help.
Thank you for your time.
brookchef
View Replies !
View Related
Sound Control With Pause Button As Well As Timeline Control
Hi there
I have a flash page, with a ambient track playing. I added a pause and play button. So you press the button then it stops, then you press it again then it plays...
So now i want to make it so that if you go to the 'WORK' page on the site, wich is on its own frame, and wich has different buttons linking to it, then i want the sound to switch off when i am on the work page as well.
So if the background ambient music plays, and you go to work then the sound switches off. Untill you switch it back on again
How is the best way for me to do that?
View Replies !
View Related
How Can I Control A Swf File Via RF Remote Control, Ala Powerpoint?
I have a Mac laptop and Honeywell RF remote that will control Powerpoint presentations. I'd rather make the presentations in Flash. The remote has three functions: last slide, next slide and blank screen. I have no idea what signals the remote sends for Powerpoint to read, but it must be pretty standard.
Does anyone know a way to code Flash so that it will respond to these commands the same as Powerpoint does... or is this a lost cause?
Thanx!
View Replies !
View Related
Actionscript Control Then Tweening Control
Ok Flashers, this should be an easy one -
I've animated some movieclips using some embedded MC that are solely actionscript animation routines. Is there a way to now animate that same MC on the timeline using tweening?
It seems that the embedded MC overrides the tweening I place on the timeline, even if I park the embedded MC.
??
jonny -
hollow planet design
View Replies !
View Related
Control A Swf Via RF Remote Control, Ala Powerpoint?
Hi
I am in the middle of a Flash project creating a powerpoint like
presentation to be shown on a projector screen. Flash 9 or a projector.exe
I wonder have you ever had to ask Flash/Flex to control the remote clicker(pointer) buttons using a Front Projection screen ???
I looked on Adobe, Forums and found only this entry,
Topic Title::: How can I control a swf file via RF remote control, ala Powerpoint?
- but don't seem to be able to get to work.
Is there a new method used in AS3? I really need to get my hands on a very simple .flv example.
I need to click to the nest stop(); and click back if needed.
onKeypress pagedown
onKeypress pageup
Thankyou
View Replies !
View Related
Movie Control...remote Control...
Hi,
I want to create a "remote control" kind of thing for this product demo that I am building.
(go to http://www.autodemo.com/?samples and click on any of the samples and you'll see a movie control on the bottom right).
How do I go about doing it? Thanks!
View Replies !
View Related
OO... I Want To Be A Parent
Calling all yOOu Gurus
I am just starting to learn how to OOP.
I have an object called Frame and it has a method to draw a frame.
I now want to make a subClass of Frame which also gives me control of the lineStyle variables.
I know I could just add Thickness, RGB and Alpha to the Frame class, but I want to understand how to start a family of methods going.
I have tried the tutorial at www.debreuil.com/docs/ but dont get how to apply it to methods.
Many Thank Yous
Tim.
Code:
function Frame () {}
Frame.prototype.draw = drawFrame;
function drawFrame (x1,x2,y1,y2){
lineStyle (2,0xFF0000,100);
moveTo(x1,y1); lineTo(x1,y2); lineTo(x2,y2); lineTo(x2,y1); lineTo(x1,y1);
}
//Test it../////////
firstFrame = new frame ();
firstFrame.draw(50,350,50,150);
View Replies !
View Related
Parent
how do you call a movieclip that is one movieclip "up".. i can't remember.. i recall you could do it either by the root command or by something like "../"
thanks
View Replies !
View Related
Parent.parent.parent.parent?
Is there a easier way to get back to the main time line for a nested clip?
I have to call to a flex api fuction form a loaded swf thats in a scroll bar (I know.. but thats the way it is) I have to always do a name trace to see where I am and then once I get to the root it wont cal the function? Is there a easy way to do this?
Here is what im doing wrong
Code:
clip1.addEventListener(MouseEvent.MOUSE_UP,clip1Click);
function clip1Click(event:MouseEvent):void {
//trace("click");
trace(event.target.parent.parent.parent.parent.parent.parent.parent.parent.parent.parent.parent.name);
trace(event.target.parent.parent.tip1.text);
trace(event.target.parent.parent.title.text);
event.target.parent.parent.parent.parent.parent.parent.parent.parent.parent.parent.parent.AddClipping("event.target.parent.parent.title.text",event.target.parent.parent.tip1.text,"");
}
those children arnt lonely with all those parents and flash seems to be giveing instance names on the fly to some clips like instance_284 and stuff. WTF ?
Any help would be cool
View Replies !
View Related
Get Var From Parent
Hey i need to get values from a parent.
But it keeps saying the parent is a static type.
I have not set any static type.
code on DocClass
ActionScript Code:
publice var size:Number = 8
ball:Ball = new Ball();
addChild(ball);
in Ball.as
ActionScript Code:
trace(parent.size)
but i get this error
1119: Access of possibly undefined property size through a reference with static type flash.displayisplayObjectContainer.
View Replies !
View Related
Parent In Cs3 ?
Hi there
in Flash Cs3 i cant get the variables of the parent movieclip??
In flash 8 it was no problem with
_root.variable = ....;
oder parent.variable....
and now in CS3 it doesnt work? Cann anyone say me if there is another way to get the variables of the parent movieclip?
View Replies !
View Related
Parent Of The Parent?..
Root
|---Home
| |------Container
|
|---Movie2
| |------Sub1
| | |------Sub2
| | | |------Button
How do I refer to the "Container" from the "Button"? But not through Root though, I don't want to use "_root.Home.Container".
View Replies !
View Related
Parent Of The Parent?..
Root
|---Home
| |------Container
|
|---Movie2
| |------Sub1
| | |------Sub2
| | | |------Button
How do I refer to the "Container" from the "Button"? But not through Root though, I don't want to use "_root.Home.Container".
View Replies !
View Related
OO... I Want To Be A Parent
Calling all yOOu Gurus
I am just starting to learn how to OOP.
I have an object called Frame and it has a method to draw a frame.
I now want to make a subClass of Frame which also gives me control of the lineStyle variables.
I know I could just add Thickness, RGB and Alpha to the Frame class, but I want to understand how to start a family of methods going.
I have tried the tutorial at www.debreuil.com/docs/ but dont get how to apply it to methods.
Many Thank Yous
Tim.
Code:
function Frame () {}
Frame.prototype.draw = drawFrame;
function drawFrame (x1,x2,y1,y2){
lineStyle (2,0xFF0000,100);
moveTo(x1,y1); lineTo(x1,y2); lineTo(x2,y2); lineTo(x2,y1); lineTo(x1,y1);
}
//Test it../////////
firstFrame = new frame ();
firstFrame.draw(50,350,50,150);
View Replies !
View Related
Game Control Panel --> How2make Object Appear In Control Once Discovered In Game
Hey all you flashies,
here's a problem to scramble the flash nerves. I'm creating a game for my Major project and I want to have a control panel at the bottom. The aim of the game in brief, is to collect 6 pieces of fruit (just an example). These 6 pieces of fruit will be found in different order depending on which route the player takes in the game. What I want to happen is each time the player finds a fruit, I want it to appear in the control panel. How do I go about doing this? Can anyone help? Much appreciated! If anyone has an example to something similar to this it would be much appreciated if I could see it! thanks!
View Replies !
View Related
Does Anyone Know About The Parent Script?
hey everyone, inside my movie i made another movie which is a jukebox and i was hoping that when you choose a song the movie that the jukebox is in would pause. i have used the parent action script before but how can i pause the origional movie then unpause within the jukebox again? thanks for your help.
View Replies !
View Related
Parent Scripts ?
Hi,
I'm trying to use action script to design a piece that has multiple accessibility options(e.g different languages, visually/aurally-impaired friendly etc)
So the template is the same but each mode calls on different variables(txt,img) to give you that mode(eg irish version-whatever)
I'm thinking parent scripts is the way forward- but I'm not an actionscript whizz like you guys.
If there's easier ways or better still- examples I could use, it would mean a lot.
Cheers.
View Replies !
View Related
Targeting Parent
Hi,
How do you target the parent (or a parent of a parent) of an instance?
I've tried
_root.name = _parent.obj; (where obj is an instance), but it doesn't give me the parents instances name.
thanks for any help
phil.
View Replies !
View Related
UnFocus Parent Swf
im making a site, in this site i have a gallery, the gallery contains thumnails that popup a window with an image or a flash movie.
the gallery works fine
the swf's in the popups work fine
BUT
the dont work together!
because when my gallery is on and the popup is on they are using to much system resources together!
how can i disable all animations and scripts in the gallery while the popup is open?
thanks,
thomas
View Replies !
View Related
|