ActionScript 2.0 :: Load A Specific Frame Of External SWF?

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


Similar Posts:


ActionScript 2.0 :: Load External SWF - Goto Specific Frame?

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

ActionScript 3.0 :: Load An External Swf Movie To A Specific Frame?

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

ActionScript 2.0 :: Load Specific Frame Label From External Swf

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

CS3 - Load An External Flash Movie At A Specific Frame Or Label?

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

ActionScript 2.0 :: Load Movie To A Specific Frame In External File?

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

ActionScript 3.0 :: Load Specific SWF At Specific Frame By Default?

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

ActionScript 3.0 :: Get An External Swf To Go To A Specific Frame?

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

Loading A Specific Frame In An External SWF

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

ActionScript 3.0 :: Going To Specific Frame Of External Swf?

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

ActionScript 2.0 :: Load Swf And Go To Specific Key Frame

Dec 11, 2009

I am new to working with code and flash...I want to load a swf and go to a specific frame, what code do I use.

View 1 Replies

ActionScript 3.0 :: Go To Specific Frame When Loading External SWF?

Apr 20, 2009

I have a main movie which loads various external SWF's. What I would like to achieve is that when returning to the main movie (using URLRequest & Loader class) that the main movie starts at specific frame.[code]I believe that the way global variables work in AS3 is very different. Is it true that I need to achieve this via an external class ?

View 5 Replies

ActionScript 3.0 :: Loading External Swf At Specific Frame?

Oct 1, 2009

Using AS3 how can you load an external swf file at a specific frame of the newly loaded swf file.Using the AS3 loader class I have no problem loading an external image or swf movie onto the stage.But what I want to do is when the swf is loaded, go to the second frame (labeled "two") of that loaded swf.

For example, My main movie "main.swf" is blank.My external movie "loadMe.swf" has a circle on frame one and a square on frame 2.On the main movie (main.swf) is a button and when you click on it I want the square on frame two of "loadMe.swf" to appear.

View 5 Replies

ActionScript 3.0 :: Loading A External Swf Then Go To A Specific Frame?

Sep 24, 2009

I'm made a dropdown menu and i have resolved the navigation for the main buttons, but i have problems with the menu sub buttons , my question is: After the movie is loaded, how can i make the sub button go to specific frame. This is the script:

[Code]...

View 4 Replies

ActionScript 3.0 :: Getting An External Swf To Play On A Specific Frame?

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?

This is my code for the page that loads the external .swf

var request:URLRequest = new URLRequest("branding.swf");
var loader:Loader = new Loader();
loader.load(request);
loader.x = 0;

[Code]....

View 4 Replies

ActionScript 2.0 :: Target Specific Frame From External Swf?

Oct 21, 2004

What is the best way to target a specific frame from an exterally loaded swf?

View 3 Replies

ActionScript 2.0 :: Target Specific Frame From External SWF

Oct 21, 2004

What is the best way to target a specific frame from an exterally loaded swf?

View 3 Replies

ActionScript 1/2 :: Load Movie And Go To Specific Frame?

Oct 24, 2011

I would like to load the "1.swf" to the "hub.swf"(ROOT MOVIE) and have it gotoAndPlay(2) using AS2.[code]...

View 2 Replies

ActionScript 2.0 :: Load A Movie And Then Go To Specific Frame

Feb 2, 2009

From main movie I call a 2nd movie to appear over the main movie using [code]all good and working.Now, from a link in the 2nd movie, I want to close the 2nd movie and go back to the first movie advancing the first movie to another page (frame).[code]but how can i tell my first movie to go to a specific frame.

View 3 Replies

ActionScript 2.0 :: Load A Movie To A Specific Frame?

Mar 3, 2005

Im having the following problem. Im trying to load a movie.swf, but i want this movie.swf to be loaded to a specific frame. I dont want it to load and start at the frame 1, i want it to be loaded and start at the framr 5.

View 3 Replies

ActionScript 2.0 :: [FMX] Whom To Load A Movie In A Specific Frame?

Apr 7, 2005

i'm trying to do a simple thing: a site where the background fades in and out between areas... ...and i'm trying it for a week...and still have no idea on whow to do it. i've seen many and many tutorials but there's no information regarding to loading movies in a specific frame!(like "call"-calling a specific action script frame?) here's what i have: a main movie (1frame) with 5 layers: actions, menu, bgone, bgtwo and border. and my problem is making the interaction between those areas, since i can't make the menu load the movies in the specific frames,to the specific layers... perhaps i'm just trying to find the wrong answers, or is is impossible?

View 3 Replies

ActionScript 2.0 :: Load Movie And Go To A Specific Frame?

Jul 22, 2004

I'm trying to build a full flash site. I have movieA (main movie) that loads the rest of the movies (movieB, movieC, movieD...). MovieA is the menu. When I want to "come back" from this movies to the main movie, I need to move the header to a specific frame of movieA, diferent depending on the movie I have previously loaded:

movieA: loadmovie (movieB, movieC, movieD...)
from movieB: loadmovie movie A (frame2)
from movieC: loadmovie movie A (frame3)
from movieD: loadmovie movie A (frame4)

Is it possible or when you load a movie you can only start playing in frame 1?

View 7 Replies

ActionScript 3.0 :: GotoAndPlay Specific Frame In External Swf From Main Swf?

Jul 27, 2011

I have a main swf that loads 2 external swfs. I click on button to see content of external swf #1 and see stuff. I do something that causes external swf to show other stuff (i.e. not at beginning state)

In the main swf I click on button to see content of external swf #2. External swf #1 content is made invisible and I see content of external swf stuff. NOW, if I click on button to take me back to see external swf #1, I see it's content in current state. I want to force it to start over again at frame #1 which will reset content.

However, no matter what I try, I can't seem to control which frame to go to in external swf using gotoAndplay.

[Code]...

View 9 Replies

ActionScript 3.0 :: Goto A Specific Frame In An External Movie

Sep 9, 2009

I'm making a training video and right now I have a container swf that loads external swf's In the container swf there is about 3 frames in the beginning and on the fourth frame you choose the section you want to go to next. The sections are just external swf's. To load the section / external swf I'm using:

[Code]...

View 0 Replies

ActionScript 2.0 :: Link To External Swf File With Specific Frame?

Jan 15, 2006

How do I link from one specific frame in one swf file to another specific frame in another swf file?It should be something like...

on(release){_root.gotoAndStop(8)}

...but where I want to get linked to another file in frame 8.Do I just simply rewrite _root to something else?

View 6 Replies

ActionScript 3.0 :: URLLOADER Load Picture To Specific Frame

Jan 21, 2010

I'm planning to load images via URLLOADER onto the stage.....i want each image to be on a diffrent frame of the main timeline how do i tell each one which frame it belongs to?

View 5 Replies

ActionScript 2.0 :: Load A Specific Frame Within A Movie Using 'loadmovie'

Jan 21, 2004

is there a way with the loadmovie function that you can load a specific frame within the movie instead of starting at frame1?

what ive been using is:-

on (release) {
loadMovie("mymovie.swf", 1);
}

but this starts 'mymovie' at frame1, is there a way to get it to load the movie and start at frame 20?

View 1 Replies

ActionScript 2.0 :: Load Specific MC Within External SWF?

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

ActionScript 3.0 :: Play External Swf On Specific Frame On Another Html Page?

Jul 27, 2010

i will send newsletter to client via emailclient clicks on image or link and it will open a specific frame in swfi know we can jump specific frame in html if swf is embed in same htmlbut i am looking for external swf in html to be played on specific frame.

View 1 Replies

ActionScript 2.0 :: Loading Specific Frame Of External .swf Into Main Movie?

Aug 3, 2003

how to load frame label "one" of external.swf into main movie.

buton.onPress = function () { loadMovie("external.swf.......??

View 12 Replies







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