ActionScript 3.0 :: Get Button To Switch Out From Loaded Swf

May 18, 2011

I'm a designer struggling to learn advanced actionscript. It's quite a challenge,
One of the challenge i'm having right now is: I have my main timeline(swf). i'm loading in 2 separate swfs into two separate holders on the main stage/timeline/swf. whatever it's normally called. One of the loaded swfs is a menu and the other is a page. Basically i'm designing a learning application. The menu alllows you to jump to a specific place in the course rather than a next button of sorts which is also in the course.

When a different page is loaded i need for a button(movieclip) that's located in the menu swf to swith out with a new button that's located off the stage somewhere.(these buttons are located in the menu swf off stage) so i need the loaded page swf, to talk to the other loaded swf(menu) everytime it or another page is loaded. I've seen simular references to having a loaded swf talk to the main timeline swf but i haven't been able to find a reference for two loaded swfs thats loaded inside holders, to talk to each other.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Switch Between The Loaded Movies?

Apr 16, 2005

i load external movie with loadMovie action.

It loads the SWFs into the movie correct.

I have problem, how simply switch between the loaded movies. The last loaded movie overlay all loaded movies.

How is possible do it the swap of the loaded movies?

View 1 Replies

ActionScript 3.0 :: Create Buttons Triggering Switch MC In Loaded Swf

Oct 17, 2011

I'm currently working on a project which has a swf (zoom) which zoom/pan a loaded swf of a map (carte_web.swf). Everything went well until I got more requests.  There is now two maps, same background, one with images and one with only a road. I'm trying to add code to two buttons on a toolbar generated by the zoom.swf, to switch between the two maps, without loosing it's zoom/pan  My maps are both object-oriented Flash programming. I have spent 27 hours, trying to find a way and I'm definately at my wits' end!
 
I got a suggestion " in loading both your swfs into one sprite separately. Then switching between the swfs by removing and adding them to their parent sprite. The parent sprite is what you'll be zooming. "  I tried everything!!!

View 3 Replies

ActionScript 3.0 :: Flash Loaded Variables Breaks Switch Statement?

Jul 19, 2010

I've got a little script that scales a video to the stage. The scaleing function has a switch statement to indicate what kind of scaling to apply.If I declare the case value of the switch statement internally all is fine. However if I load this value from an XML doc, even though the trace indicated the value has loaded, the switch never fires.

Code:
/stage variables
var sH:Number;
var sW:Number;
var _contentHolder = new Sprite();

[code]....

View 2 Replies

ActionScript 2.0 :: [CS3] : Making A Switch (button)?

Feb 18, 2009

I have made a button to function like a switch in that it has both an on and off state. However, I can only get it to switch between the on and off state once when it's pressed, with nothing happening after it has been turned off.The code is as follows:

Code:
switch1.onPress = function() {
switch1.gotoAndStop("on");
_root.onEnterFrame = function() {

[code]....

is there a way to make it so that the switch works continuously, not just one time?

View 1 Replies

ActionScript 2.0 :: CheckBox As Switch For Button On/off

Jul 23, 2011

never really used checkBoxes much and wondering what the best AS2 is to use one as a "switch" ?

i.e. place a checkbox which is default unchecked and if the user checks it {do something} and if the user then unchecks it {undo that something}.

I'm thinking about the _alpha of a button or an MC as an example / test.

Check the box: anMC = _alpha 100, unchceck the same box: anMC = _alpha 50.

I'm happy either way with code on the checkbox or an even listener on a frame (preferred) but would like to learn how to use checkBoxes as a switch.

View 2 Replies

ActionScript 3.0 :: Button To Switch On A Video?

Jun 7, 2011

I'm very basic at flash, but sofar I've created a little portfolio page with a video background as a front page. I want to add a button to the background which will turn of the current video and play another video and when the button is pushed again it will play the first video again.[URL]
 
here's my as for the videobackground:
 
import VideoBg; 
var videos:Array=new Array('videos/bird_short.f4v');
var num:uint=1;

[Code].....

View 11 Replies

ActionScript 2.0 :: Button To Switch Light On / Off

Nov 19, 2003

I am really new to Flash n Actionscript and have been dropped in to make a switch that will make a light come on in the first click and off on the second, on on the third and off on the forth etc... I have created the switch as a button and the light on/off as two movie clips....
What coding would i be looking to add to make this switch work...

Previously I have been given this... but its not working
//this is for the button (switch)
on(release) {
if (_root.light_on:active == 1) {
setProperty("_root.light on", _visible, "1");
_root.light_on:active = "0";
} else {
_root.light_on:active = "1";
setProperty("_root.light_on", _visible, "0");
}}

//This is for the light on
onClipEvent (load) {
active = "1";
setProperty("_root.light_on", _visible, "0");
}

View 7 Replies

ActionScript 2.0 :: Button To Switch The Variable Off

Dec 17, 2003

Here's a really easy (Not so easy for me) question for you. First person to answer rules the. I have a button that switches a variable from 0 to 1.

on (press) {
_root.pageone = 1;
}

I want the same button to switch the variable off. I've been trying "if else", but my syntax is rubbish. How do I code this statement On Press Button > if _root.pageone = 1 change to 0 > if _root.pageone = 0 change to 1.

View 2 Replies

ActionScript 2.0 :: Button Switch's Light On/off?

Nov 19, 2003

n Actionscript and have been dropped in to make a switch that will make a light come on in the first click and off on the second, on on the third and off on the forth etc... etc...

i have created the switch as a button and the light on/off as two movie clips... what coding would i be looking to add to make this switch work...

previously i have been given this... but its not working
//this is for the button (switch)
on(release) {
if (_root.light_on:active == 1) {

[Code]....

View 7 Replies

ActionScript 3.0 :: Switch A Video To Fullscreen From A Button ?

Jul 29, 2010

What is the best way to switch a video to fullscreen from a button in AS3? Like the fullscreen button in FLVPlayback component - I'm aware the FullScreen tag needs to go into the HTML...

View 1 Replies

Professional :: Switch Between The Normal And Over-states After The Button Is Clicked?

Jan 30, 2010

I'm pretty new to this and racking my brains on the following problem: I have a movieclip-button, with 3 states (normal, over and clicked). I want to disable the functions in actionscript 3 that switch between the normal and over-states after the button is clicked, and not enable these functions for this button until another button is clicked. What's the best/ simplest way to do this?

View 5 Replies

ActionScript 3.0 :: Switch In A Full Screen Mode Without A Button?

Jan 25, 2011

Is there a way to switch in a full screen mode without a button?
 
I tried like this but it's not working:
 
function setFullScreen():void {    if (stage.displayState=="normal") {        stage.displayState="fullScreen";        stage.scaleMode=StageScaleMode.NO_SCALE;    } else { 

[Code]....

View 1 Replies

ActionScript 2.0 :: Button Switch IF Statement For Video Player?

Oct 2, 2008

I am working on a video player that will have different Languages. The problem that i am have is that i can get the video to switch but i cant get the video to switch back. I have uploaded the file and here is the code that i have have a problem with.

lang.onRelease = function() {
if  play = English)
{

[Code].....

View 1 Replies

ActionScript 1/2 :: Button Type Toggle To Switch Fullscreen Ad Back

Jul 22, 2010

Any reliable full screen code for actionscript 2.0. I have search but can't get any thing that works proper. I just need a button type toggle that switches the screen to full screen and back.

View 1 Replies

ActionScript 2.0 :: [Flash8] External File - Button To Switch Between Backgrounds

Mar 9, 2006

I'm making a flash banner for a client, it has a button to switch between backgrounds, however, how do I say something like

[Code]...

View 7 Replies

ActionScript 2.0 :: Make A Simple SWITCH Statement With Button._name As Variables?

Jun 18, 2007

I want to make a simple SWITCH statement with Button._name as variables for CASE

so i got this code:

Code:
Button.addListener(_root);
_root.onRelease = function() {

[Code]....

View 2 Replies

ActionScript 2.0 :: Make Movie Clip Randomly Switch Colors With Push Of Button?

Jul 7, 2004

I want to implement having a movie clip randomly change color.How can I make my movie clip randomly switch colors with a push of a button??By the way I'm using flash MX and I am still intermediate when it comes to coding.

View 3 Replies

ActionScript 3.0 :: Kill Button On A Loaded Swf That Removes Itself (loaded Swf)?

Jan 21, 2009

I have a swf loading another swf. The loaded swf has a button (mc) whose purpose is to unload (kill) itself (the swf).

View 3 Replies

ActionScript 3.0 :: Switch / Case And Nested Switch / Case

Oct 30, 2011

What I'm trying to do is create a program that, depending on 2 variables, multiplies another variable by a static number. Heres the code I have so far:

[Code]...

View 1 Replies

ActionScript 2.0 :: Can Default From Switch/case Be Used In Another Switch/case

Dec 10, 2003

I want this on an MC:

[AS]
i = 0;
switch(thing){
case 0:

[code]....

Basically what I'm wondering is, will I lose the value of i in the first switch once I'm out of the switch? Can the second switch read the 1st switch?

View 8 Replies

ActionScript 3.0 :: Switch/Case And Nested Switch/Case?

Oct 29, 2011

Im trying to create a program that, depending on 2 variables, multiplies another variable by a static number. A friend suggested I use case/switch instead of if/else statements,which is what I was using before.

[Code]...

View 1 Replies

ActionScript 3.0 :: Flash Button Scripting For Xml Loaded Swf - Call A Button?

Feb 10, 2011

how to call a button. I have a main file ("AS3Build.fla"), which imports an xml file, and imports different swfs depending on which node in the xml is being referenced. One of the swfs("slide_01_03.swf") I'm importing has a button("btn_01_01") that I'm having trouble accessing. First of should the script for the button be in the swf that holds the button, or the main file that will be importing the swf? I've got it in the swf currently with a trace file to see if it's recognizing the click. So far not luck. So I'm starting to think it should be in the main fla, and be referenced something like: this.loader.addEventListener.btn_01_01. This doesn't seem to work either though.

View 1 Replies

ActionScript 3.0 :: Unload Loaded Swf Through Button

May 23, 2010

I use the following code to load a swf on top of main. Is there a way to have a button in the loaded swf then close the loaded swf?

[Code]...

View 5 Replies

ActionScript 1/2 :: Getting A Button To Be Visable Only After The Flv Has Loaded?

Oct 6, 2009

making a button visable after a swf has loaded but not a flv. I am preloading an flv, well 20secs of it, then it starts playing. But I have a 'play' button on the stage and it sits there tempting people to hit it whilst the preloading bar works its magic preloading the flv. I want the button to be visable only after the flv has loaded or at least until it starts to play.

[Code].....

View 7 Replies

ActionScript 1/2 :: Why Does Button End Up Behind Xml-loaded Images

Feb 1, 2010

I am trying out an AS2 xml image gallery from a tutorial online (code attached). I have also found out how to add a button to the stage that takes the SWF-movie into true full screen (code also attached).
 
But the problem is that the images from the xml are placing themselves above the button so that the button can't be seen or used. I would of course like to overlay the button on top of the loaded images.
 
I thought that putting the button on a new layer above the first layer with the AS2 xml image gallery code would do the trick, but it did not.
 
How can I specify that the button should be "always on top"?

View 3 Replies

ActionScript 3.0 :: Kill Button On A Loaded Swf

Jan 21, 2009

I have a swf loading another swf. The loaded swf has a button (mc) whose purpose is to unload (kill) itself. Anyone know how to code this?

View 3 Replies

ActionScript 2.0 :: Accessing Button In A Swf That Is Loaded On To Another Swf

Jul 22, 2009

I have a movie called crime_scene.swf that is loaded onto another swf.

Code:
this.createEmptyMovieClip("myContainer", 1);
var mclListener:Object = new Object();
mclListener.onLoadInit = function(target_mc:MovieClip)

[Code]....

It seems like it's not working. I tried just myContainer.evi_1.onRelease and _level1.evi_1 but nothing seems to work.

View 2 Replies

ActionScript 3.0 :: Add Button Over An Externally Loaded SWF?

Oct 9, 2009

I'm loading an external SWF file to a container MovieClip (adding it as a child), but have the need to create a button over the loaded SWF.The external SWF should still respond to MouseOver events like it used to.

I tried adding the AS3 created button to the container MovieClip, but it wasn't visible anywhere (the position was right in the middle of the container). Obviously, the SWF shadowed it.

View 2 Replies

ActionScript 2.0 :: Thumbnail Button Loaded From Xml?

Sep 18, 2010

I am fairly new to flash action script and I am having a problem with a project I am working on. The problem is as follows. I am trying to create a table of thumbnail pictures from an xml. I have made the table load from from the file though when the items are created the first thumb has the background and text field though all others are missing this. I have tried making a clip inside the thumbnail clip thats called "thumbnail_image" though that didn't work. I also want to be able to click the thumb and have it go to the corresponding url from "curl[]". I just can't work it out. At the moment it will only go to the last url added in the array

[Code]...

View 9 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved