ActionScript 1/2 :: Load External Swf Into A Specific _level
Sep 15, 2009
I am loading an external swf into the mc 'image' using: image.loadMovieNum("portfolio/100_design/1.swf", 1);
Every time a new image loads, I want it to load the level above, ie: image.loadMovieNum("portfolio/100_design/1.swf", 2); Is there a way this can be done dynamically. For example, "current level + 1"
View 5 Replies
Similar Posts:
Aug 15, 2006
how I can center a swf, when I load it into a _level?
View 1 Replies
Feb 18, 2008
i read about the tutorial on loading external swf into levels. I have the following codes in Layer Frame 1:
Code:
loadMovieNum ("World.swf", 1);
_level1.gotoAndStop(2);
stop();
When i execute this code, world.swf is loaded, but i cannot get it to go to frame 2, and even if i use _level1.stop(); or _level1.trace("HI");,
View 2 Replies
Jan 19, 2010
Firstly can I apologise if I'm asking something completely obvious... it driving me crazy.
I have an swf called "branding.swf" which has a movieclip (movie_mc) and a button (save_btn)
Once you press save_btn it loads another swf "summary.swf" which also has a movieclip "form_mc". Within "form_mc" there is another movieclip "loader_mc" and some dynamic text fields.
All this happens within a standalone exe "main.exe" and is loaded into "clips_mc)
Is it possible (surely it must be) to take the contents of movie_mc and display it within "loader_mc".
Basically, I want to do a loadMovie but instead of calling "branding.swf" I want it to only load "movie_mc" which is within "branding_swf"
View 1 Replies
Sep 26, 2009
I am trying to load an external swf at a specific x& y pos. from a button. This is the code I am using :
on (release) {gotoAndPlay(4);loadMovie("gallery.swf",1); xpos="7", ypos="119";
}
The movie loads fine if I remove xpos="7", ypos="119";How do I get it to load at that specific position?
View 3 Replies
May 21, 2003
hey there I posted several strings before and no response
I want to load a specific frame of external.swf into a main.swf
View 4 Replies
Apr 15, 2006
I am loading an external movie with buttons... I would like the loaded movie to goto a specific frame. This is the code to load the new movie
Code:
on (release) {
loadMovie("movies/1.swf", "display");
}
I did search (external swf frame) but nothing came up with what I needed
View 5 Replies
Dec 18, 2009
Is it possible to load an external swf movie and make it go to a specific frame to play or stop.[code]...
View 4 Replies
Dec 24, 2009
I'm trying to access a specific frame label in an externally loaded swf. I have the external swf loading, but I'm not sure how to access the specific frame label after release. This is an example of the code on my external swf timeline:
[Code]....
View 3 Replies
Jun 10, 2009
I am using Flash CS3, Actionscript 2.
I need to load an external movie file into the root of my main movie, so it replaces the main movie, and when it loads, it loads at a specific frame (or label)of that newly loaded movie.
Explanation: My main movie, lets call it "Main.swf", has a button which is part of a drop down (tree) list. When you click on the button, I want to load my second movie called "bearings.swf", and to immediately go to frame #2 of the "bearings.swf" movie.
View 4 Replies
Nov 7, 2007
The title of my main file is "Gabriel96.fla". Inside this file I have a movie clip called "home movie". Inside this movie clip i have a button called "Symbol 32". Once this button gets clicked, I'd like it to go to frame "joe" which is inside a movie clip called "porrtfolio", which inside a separate file called "portfolio55.swf".
View 4 Replies
Mar 8, 2012
I'm actually creating a pretty simple banner that needs to stay under 40k size. I'm trying to load and unload an external .swf to my main swf file. So far, I only managed to load my external .swf, without finding a way to make it appear and disappear at specific frames (the external .swf shows up directly at frame 1, then when the animation loops over, it stacks over and over).
I read some things about onEnterFrame and counters but still wasn't able to solve my issue.
Here's my actual code. It makes the "horse.swf" file (located in the same folder as my main swf) fades in into my main swf after it has been loaded.
By the way, I used The LoaderMax system from greensock. because it seemed lighter and easier to manage than the native Adobe Loader one.
Code:
import com.greensock.*;
import com.greensock.loading.*;
import com.greensock.events.LoaderEvent;
[Code].....
View 6 Replies
Sep 20, 2009
Does someone have a working fla to illustrate how to load an external movie and zoom and pan to specific location of this movie (with easing)? With actionscript, not necessarily with a control for the user. I am looking for it for some time and unfortunately my programming abilities are not yet sufficient to find it out from scratch (but I am working on it).
View 2 Replies
Sep 21, 2009
Basically once my animation loads I want to pull in an external SWF at a specific frame, basically like the "home page" swf that will display first. Underneath that I will have "About Us, Contact, etc..." and those will each load an external SWF into my movie clip. My movieclip right now is called mcHolder. Here is the code I am currently using for the buttons:
Code:
//About Us Button
function test2(evt:Event):void{
[code].....
View 1 Replies
Apr 28, 2010
Loading stuff in levels ( MovieClipLoader.loadClip(picOrSwf, 1); ) and want a -for to do- loop to make them all _visible = false; but can't get it to workfor (i=0; i<total; i++) { _root[_level+i]._visible = false; } is the closest I got. (_root[_level+1]._visible = false; DOES work, but is no good of course).Let me know if this outlines my problem goo
View 4 Replies
May 4, 2010
Loading Images in _levels via loadClip. Now i want 2 buttons on TOP of the Images. So first tried attachMovie _level 200. Did't work (don't ask me why since all logic says it should. but I'm guessing a difference in loading between loadClip & loadMovie). Now made 2 swf files with just the buttons and load via loadClip. Works fine BUT... now I can click then. tried stuff like:
Code:
_level200.button_btn.onRelease,
_level200[button_btn].onRelease, _level200["button_btn"].onRelease, _root[_level200["button_btn"]].onRelease
You get the picture. Any solution to this?
View 9 Replies
Apr 8, 2005
I have a loaded SWF file in _level1 that has audio in the timeline. I am trying to control the volume of this loaded SWF with a 'mute' button in the main SWF file. On the first frame I'm using the code:
my_sound = new Sound(_level1);
and then on the button script I have:
mute_btn.onPress = function(){
my_sound.setVolue(0);//mute volume
}
but it's not working. Is the new Sound(_level1) not valid?
View 1 Replies
Apr 8, 2005
I have a loaded SWF file in _level1 that has audio in the timeline. I am trying to control the volume of this loaded SWF with a 'mute' button in the main SWF file. On the first frame I'm using the code:
my_sound = new Sound(_level1);
and then on the button script I have:
mute_btn.onPress = function(){
my_sound.setVolue(0);//mute volume
}
but it's not working. Is the new Sound(_level1) not valid?
View 1 Replies
Feb 21, 2011
However I am using embedded .swf files, and the scrollable image I want to control is on _level10 (within a master file _level0). I am decent with actionscript and based on tests with the example file, I know the code works. BUT my problem is getting it to function within a different flash level. I'm about 99% sure it isn't working because the code is looking for my movieclips or the scroll function on the main timeline and not that of _level10, but I can't figure out where the code I need to change is. Its driving me crazy.Here's the code (from the above link). This goes into the main timeline, where "area1" is the movieclip you hover over to enable the mousewheel and "mc1" is the mc that is moved by the mousewheel:
Actionscript Code:
// IMPORT import FlashCommon.MouseControl;import mx.utils.Delegate;Stage.scaleMode = "noScale";// ADD SCROLL FOR AREAS - addScroll(id, mc, function)//// adding scroll
[code].....
View 2 Replies
Jan 23, 2005
why my MC actionscript with loadVariablesNum("submit.php", 0, "POST"); don't wanna work if I loaded into other _level...
If i don't loaded it work well... but not useful
View 5 Replies
Feb 5, 2009
I have loaded as2 swf in as3 using Loader object. Loading is done fine, but the problem is that the as2 swf uses stuff like _root, _level1.. etc. that doesn't work in as3. So is there any way by which I can make as2 swf work properly inside as2? I have bought some readymade as2 swf and need to use them here. I dont have the as2 fla so can't make any changes in them...
View 9 Replies
Aug 23, 2010
I want to create an array of object so that I can store the _level I want to load image at specified level and and to keep track of levels in an array so that when any new image will be loaded I can get location of previously loaded image and place the new image before the last image
Code:
loadMovieNum(_global.myXML.childNodes[0].childNodes[3].childNodes[5].childNodes[0].attributes.path, 178);
_root.mcTray._alpha = 100;
_level178._x = 20;
_level178._y = 620;
View 1 Replies
Apr 5, 2007
I have attached a zip file which has a main.fla and a folder pages which contains 2 fla's p1.fla and p2.fla.The main page loads the first page which is p1 and as the main page has 2 buttons i am using _level script to know which page to load, actually i wanted to create 3 buttons. Since i have already created 2 buttons the first page automatically loads but when i click on the 2nd button it does'nt the p1 page goes but it comes back again.In the main there is a movie clip which has an instance name of page_mc and the code inside it is:
Code:
nextpage="pages/p1.swf";
loadMovieNum(nextpage,1);
b1.onRelease = function() {[code].....
View 2 Replies
Jul 6, 2009
Can I load a swf to a specific keyframe on browser refresh or if sent to another page on the site?Each page will have the same .swf header and I'd like to highlight or animate the header based on the new html page selected.
View 1 Replies
Apr 18, 2012
I have a guestion about preloaders. Every preloader that is available on the web loads the entire .SWF.But I want the preloader to load a specific mc. So that the .SWF will run as soon as that specific mc is loaded.
in addition: Is it possible to have an mc in the .SWF that will only load when the user pushes a button?
View 2 Replies
Jan 3, 2006
for my latest task at work, oh what joy, i have to create a small banner thing which reads data from a text file... BUT... it only reads from the text file IF there is a text file present which i labeled TODAYS date!
Get todays date IF there is a file present in a certain directory which is called todays date.txt (ie. 02042006) then it reads the info in that text file and prints it into a certain area in the flash file. If there is nothing present it just displays the default stuff!!
View 21 Replies
Nov 9, 2009
I made a flash website and had one page load an external swf.
In this external .swf are thumbnails that link to another page (frame) all within the external swf. when you go to these pages there is a 'back' link which links back to the main external swf frame.
My problem is this: let's say i click a thumbnail in the external swf and it goes to the respective thumbnail page, and then i dont click the 'back' button but instead click another link of the main flash website - then i go back to the page that loads the external swf and instead of going to the main frame of the external swf it stays at the page i was previously on.
How do I get the link on the main flash website which loads the external .swf to always load on the first frame of the external swf?[code]...
View 2 Replies
Sep 13, 2009
I have two flash files, say a.swf and b.swf.a.swf is the main swf file, embedded in an HTML page for a webpage. There is a preloader in a.swf too. In b.swf, when I click a specific button I need to load a.swf, but not from the preloader, from the content. To be precise, the content starts from Frame 24 of a.swf (obviously Preloader ends in Frame 23). I believe, the frame 24 has to be loaded in a.swf when I click the button in b.swf.
View 2 Replies
Jun 29, 2011
I've got another little hitch that I've come accross in the project that I'm currently assembling. From time to time I need to load swf files at specific frames & seem to have hit a brick wall.
[code]...
It loads the right swf, but at frame 1, when I want tp load it at frame 18
View 22 Replies
Mar 8, 2009
I have menu.swf which loads an external SWF (longmenu.swf)longmenu.swf has a long background on stage, which scrolls according to what the user clicks. It works fine on it's own with tweenLite. But what i need to do is to have menu.swf controls to which part of the background it scrolls or appears at once an item on menu.swf is clicked.
View 1 Replies