Run The Called File From Specific Frame
In one animation i call two swf files... and the code is....
Frame 1 -------
tank2.loadMovie("tank2.swf"); tank1.loadMovie("tank1.swf");
Frame 3 -------
if(tank2.done == true){ tank1.gotoAndPlay(5); } else{ gotoAndPlay(2); }
Frame 5 -------
if(tank1.done == true){ tank2.gotoAndPlay(2); } else{ gotoAndPlay(4); }
This is loopable animation when one file playing completes then other file plays. But i want this plays normally first time but on first loop the tank2 will start from the Frame 20 not from the frame1. Please tell me this is possible or not. Because preloaders are created in the tank1 and tank2 and on loops those are also visible for a second.
FlashKit > Flash Help > Flash ActionScript
Posted on: 10-06-2004, 12:37 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Going To A Specific Frame Of Another .swf File
Hi all:
I took a stab at this last week and couldn't find a solution. I thought a fresh attempt might yield results.
In a nutshell, I have a movie with a button on it. When I click on that button I want to go to a specific frame on an external .swf file. So far All I've been able to accomplish is getting the external movie to load in and present the first frame. I just want to be able to load a movie and jump to a frame of my choosing. I'll need to work with external .swfs here and want to avoid calling any movieclips from a library.
Back when I would do this with Lingo is was a simple matter of writing some code like - go to frame ("x") of movie ("y") and it was all set.
I imagine it can't be that hard to d the same type of thing in Flash, but it ain't happening for me.
Any wisdom would be appreciated
Rob
Link From One Swf File To A Specific Frame In Another Swf File
Hi, I am a beginner actionscript coder and am in a quandry about how to link a small swf file (just a button, in fact) on an html page to the final frame of another, independent flash movie. This is so that the user won't have to view that movie to get to the menu at its end. The whole project will be distributed on a CD. Thanks for any input and please explain as simply as possible. Much appreciated!
Link To Specific Frame In Swf From Outside File
Hey guys,
I've got a flash file that looks like a notebook and i have the pages set up one on a different frame (1-5). I can make tabs within the fla. to go from frame to frame but I need a way to access the different frames from outside of flash. Is this possible to do?
thx!
Linking To A Specific Frame In Another Swf File
I would like to create a button that when clicked it goes to a specific frame number in another swf file. This would happen all in the same html window.
I have built a program that is multiple swf files, and within these separate swf files I have used gotoAndPlay to create the program. I have been using getURL to link these separate swf files, but I now need to create a "back" button that will go to the end of the previous swf file. Does that make sence? Basically I need to link to a specific frame in another swf file.
Any help would be greatly appreciated.
Opening Swf File On Specific Frame
When I call up an swf movie in its own browser windows via a navigation bar button, it always open on its first frame. Is there a way to tell the browser in conjunction with the getURL command to open at a specific frame other than frame 1? I can't find an Actionscript code sample that allows this while using getURL. Or is there some other way -- e.g. appending the swf file with frame number in its HTML page in some way, using Javascript, FSCommand, etc?
Jody
Capturing A Specific Frame From Flv File
Hello all,
New to the forum and media server dev. Got a small question .. my apologies if it looks too juvenile for the forum :)
I am trying to capture a particular frame from a .flv file and save it to a image file. I am using a .Net program to capture the frame on the backend. Is there any API on the media server that allows .Net to interact and accomplish the job?
Any help will be greatly appreciate!
Loading Into A Specific Frame In An SWF File
I'm using loadMovie to load an SWF file when a button is clicked and this works fine. But I need it to go to a specific frame in the SWF file when the button is clicked. How is this done and what code is needed?
Loading A SWF File To A Specific Frame Label
Hiya...
I have a cd project, with a main SWF movie, that loads multiple SWF files from a navigation bar, as the user interacts with it. I'm using Flash MX...
I need to load a SWF file, and have the movie go to a specific Frame Label in the file - ie, I want to load first.swf at the "FSF_Overview" frame label...
I know there is a way to do this using loadMovie and targets, but I dont know how to do it. Can anyone advise? Please help!
[F8] Can I Create A Hyperlink To A Specific Frame In My .swf File?
Hi There,
I am realitively new at flash. In my movie I have linked to a different site and I want to set it up so that when the user hits their browsers back button that instead of loading all the preloading parts of my movie that it justs takes them back to where they left off at say frame 63. Is that possible?
Thanks for any help on this.
Opening A HTML File In A Specific Frame
Hi all,
I have a frame based HTML file in which my SWF is displayed in the left frame. My SWF file has a button that simply, when clicked, displays a HTML file in the "rbottom" frame. Following is the code I used:
Code:
var a:String;
function aboutmeClicked(evt:MouseEvent):void {
var targetURL:URLRequest = new URLRequest("resume.htm");
navigateToURL(targetURL, "rbottom");
}
aboutmeB.addEventListener(MouseEvent.CLICK,aboutmeClicked);
Unluckily, when the button is clicked at run-time, the "resume.htm" file is opened in a separate window rather than in the specified frame.
Any guideline is highly appreciated.
How To Open A HTML File Into A Specific Frame
Hi all,
I have a frame-set based html. My flash has buttons on the left frame and I want the code that enables me to let the browser open an HTML file into the "mainFrame" when the button is pressed.
I tried the following but it didn't work. When the button is pressed on the browser, nothing happens:
ActionScript Code:
var a:String;
function aboutmeClicked(evt:MouseEvent):void {
var targetURL:URLRequest = new URLRequest("home_pp.htm");
navigateToURL(targetURL, "mainFrame");
}
aboutmeB.addEventListener(MouseEvent.CLICK,aboutmeClicked);
Here is the code of the frame based HTML file:
HTML Code:
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="*" frameborder="NO" border="0" framespacing="0">
<frameset cols="115,475*" frameborder="NO" border="0" framespacing="0">
<frame name="leftFrame" scrolling="no" noresize src="lbar_pp.htm" marginwidth="0" marginheight="0" bordercolor="#FFFFFF">
<frameset rows="40,519*" frameborder="NO" border="0" framespacing="0">
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="topFrame" noresize scrolling="NO" marginwidth="0" marginheight="0" bordercolor="#FFFFFF" src="../tbar_pp.htm">
</frameset>
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="mainFrame" src="home_pp.htm">
</frameset>
</frameset>
</frameset>
</frameset>
<noframes><body bgcolor="#FFFFFF">
I apologize; this site was designed to be viewed using browsers supporting frames
only.
</body></noframes>
</html>
Link To External Swf File With Specific Frame
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?
/Fredrik
Loading Specific Frame Of External .swf File
Hello!
I am attempting to load the same .swf file into three different scenes of my movie. The external .swf has three frames, and in each of the three scenes, it will need to stop on a different frame. I am loading the .swf into an empty movie clip by referencing the movie clip's instance name. I am using actionscript 2.0 and working in Flash CS3 -- but due to some other script I am using, the file is saved out as Flash 8.
Thanks in advance for your help!
How To Open A HTML File Into A Specific Frame
Hi all,
I have a frame-set based html. My flash has buttons on the left frame and I want the code that enables me to let the browser open an HTML file into the "mainFrame" when the button is pressed.
I tried the following but it didn't work. When the button is pressed on the browser, nothing happens:
Actionscript Code:
var a:String;
function aboutmeClicked(evt:MouseEvent):void {
var targetURL:URLRequest = new URLRequest("home_pp.htm");
navigateToURL(targetURL, "mainFrame");
}
aboutmeB.addEventListener(MouseEvent.CLICK,aboutmeClicked);
Here is the code of the frame based HTML file:
HTML4Strict Code:
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="*" frameborder="NO" border="0" framespacing="0">
<frameset cols="115,475*" frameborder="NO" border="0" framespacing="0">
<frame name="leftFrame" scrolling="no" noresize src="lbar_pp.htm"
marginwidth="0" marginheight="0" bordercolor="#FFFFFF">
<frameset rows="40,519*" frameborder="NO" border="0" framespacing="0">
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="topFrame" noresize scrolling="NO" marginwidth="0"
marginheight="0" bordercolor="#FFFFFF" src="../tbar_pp.htm">
</frameset>
<frameset frameborder="NO" border="0" framespacing="0" cols="*">
<frame name="mainFrame" src="home_pp.htm">
</frameset>
</frameset>
</frameset>
</frameset>
<noframes><body bgcolor="#FFFFFF">
I apologize; this site was designed to be viewed using browsers supporting frames
only.
</body>
</noframes>
</html>
Loading A Specific Frame Of Swf File Into Movie
hello,
I am tring to do the following (if there is a better route, i would love to hear it)
I have created a file with rollovers on the buttons. I want a bit of text to come up for each of the buttons as you rollover them.
I have created a seperate swf file for these chunks of text and have added a script to each button to load this external swf on rollover.
This works fine but I cannot get it to load a specific frame of the "imported" swf file containing my text for the rollovers.
here is what i have put in the actions:
on (release) {
gotoAndStop(60);
}
on (rollOver) {
loadMovieNum("portfolioLabels.swf", 100);
}
on (rollOut) {
unloadMovieNum(100);
}
thanks!
Loading An External Swf File At A Specific Frame
Hi,
I have this button in my main movie, when i click it i want it to load an external swf file, but i want it to load it at a specific frame, say the 20th. How do i do it?
The action script that i currently have loads the movie from the beginning:
on (release){
_root.loadMovie("mymovie.swf");
}
How do i modify this script to achieve what i want?
Thank for the help.
Jumping To A Specific Frame No In A Diff. Html File
is it possible in flash 5 to jump to a specific frame number of a different html file when i click a button in the source html file?
i use the getURL action but it directs to the first frame. I want it to go to frame 200 directly.
please help...thnx so much...
Load Movie To A Specific Frame In External File, As2
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". I don't seem to figure out the code for all this.
Thank you in advance.
Loading External Swf File To Specific Frame/framelabel
i didnt see a topic like this when i did a search. if there is one, please link me.
i have a main swf file with navigation, you click on a button it loads an external swf file. i would like to be able to tell this external swf file to go to a specific frame/frame label from the button. i have a feeling there is an easy answer, but i am not familiar enough with syntax to know exactly what im doing wrong.
here is the code that loads the external swf file from a button in the main swf file.
on (release) {
_root.home_content.loadMovie("appetizers.swf")
}
home_content being a placeholder that appetizers.swf is loading into.
any suggestions would help me out. thanks.
Load External Swf File At A Specific Frame Number
Hi guys i have a series of buttons with actions to load different swf files. I'm using this code:
on(release){
loadMovieNum("myExternalFile.swf",1);
}
to load files that start from the beginning. Now i want to load an external swf file to start at a specific frame number, can i use the same code? How do i specify my frame number? I still want to load the movie in the current window, you know replacing my current movie.
Thanks for the help.
Load External Swf File At A Specific Frame Number
Hi guys i have a series of buttons with actions to load different swf files. I'm using this code:
Code:
on(release)
{
loadMovieNum("myExternalFile.swf",1);
}
to load files that start from the beginning. Now i want to load an external swf file to start at a specific frame number, can i use the same code? How do i specify my frame number? I still want to load the movie in the current window, you know replacing my current movie.
Thanks for the help.
Can Flash MX Detects A Cached .swf File And Go To Specific Frame Label?
I have a website. The first page is called index.html and made entirely in html with a drop down menu in dhtml. Below the main buttons there is a landscape format embedded movie.swf. This .swf file has a preloader and an entire movie with 5 different frame labels. Each frame label marks the beginning of a different animation. So we have frame1, frame2, frame3, frame4 and frame5.
This website has 5 main pages. So when you first visit the website, you get to see the preloader and than it goes to play frame1 till frame 5. What I want to achieve is that, when a visitor go to a secondary webpage, then he/she goes back to home page, movie.swf doesn't play all the way from the start. Instead it somehow detects that the movie itself has been completely loaded and played once before, so it goes straight to the frame5 and stops.
Is it possible to do this with Flash MX? I understand that the script must somehow be inside the Flash. Or is there a special java script that can communicate the control a .swf file? Sort of the Flash MX equivalent of a Session I.D. in asp scripting.
I'm sure this is a valid question and I'd appreciate it if someone can help me with this.
Cheers,
P-2779
Laod Movie, Make It Go To A Specific Frame In Separate File
I have a movie clip within file A.fla. This movie has buttons. Each of the buttons should go to their respective frame within a movie clip from a separate file. Does anyone out there know what the code for this is? I've been going nuts trying to figure this one out.
Thanks.
Loading An External .swf File, And Telling It To Stop At A Specific Frame
Hello!
I am attempting to load the same .swf file into three different scenes of my movie. The external .swf has three frames, and in each of the three scenes, it will need to stop on a different frame. I am loading the .swf into an empty movie clip by referencing the movie clip's instance name.
Thanks in advance for your help!
If Timeline Came From (specific Frame Of Any Scene), Go To (specific Frame)
Hi, I have thirteen scenes, each one has 2 frames, one with audio (loadSound) one without. What's the best way to tell flash when a user clicks on a nav button (which calls a scene) to go to the 1st or 2nd frame of the scene depending on if the previous scene was playing the 1st or 2nd frame?
Thanks in advance.
Specific Html Page Triggers Specific Frame Of The Flash Movie
I have been playing with flash and html and wonder if any of you have a bright idea on how to do this.
I have a flash movie, which I call from html but depending on which part of the html page I call it from I want to start it at a particular frame and not always from the beginning.
I have created a variable within the movie in action script and given it a different value for each of the frames I want to start the movie at, and want now to designate the value I give to that within html so that the movie “jumps” to the correct frame. Is this possible or am I totally crazy??
How To Load Specific Frame Of Specific Movie On Another Layer
Here's my setup:
Layer 0 = main movie
Layer 1 = navigation movie
Layer 2 = products.swf
Using a button located on Layer 1 (that contains navigation.swf), I need to load on Layer 2 the products.swf, and it needs to land on frame 54 of that movie.
I'm fairly illiterate r.e. ActionScript, so go gentle on me, please, LOL
Thanks!!!!!
Frame 1 Called Repeatedly
Hey all,
Have a problem with flash. I have code that I placed in Frame 1 that seems to be getting called many many times. I had thought that Frame 1 would get called only once upon initialization when the page first loaded the object but that's not happening.
Is this normal then? Do I need to put my code in a different place?
Dynamically Change The Name Of A Frame That Is Being Called?
Hello,
Is it possible in Flash 5 to use a variable in the Frame label field in the Actions Window? I am trying to use a variable to allow the movie to go to a particular frame label in the timeline according to what the variable is at the time the goToandplay frameLablel action is called. This way, you can go to different framesLabels according to what the variable is set to.
Thanks
Damien
Unloading A Called Movie When Leaving A Frame
Hello, everyone! I have another question.
I have a set of navigational buttons at the top of a flash movie, one of which goes to a "media page" (that is, a frame with a media player.)
Now, when one goes to that frame, the player shows up and it plays very nicely, but I don't know how to make it go away after moving away from that frame.
The player is an swf that is loaded with this piece of actionscript:
loadMovieNum("media/player.swf", 2);
Any ideas?
LoadMovie And Play A Frame In The Called Movie
Is this possible?
I have a loadmovie command that I want to call a movie to replace the one that already exists. I can do that just fine, but is there a way to do a loadMovie and instead of that movie playing on frame "wait" (frame 1), I can play a label called "start" (frame 10)
I know this doesn't work.
return_btn.onRelease =function (){
loadMovie ("lab.swf", 2);
gotoAndPlay ("start")
}
If anything what would work?
many thanks
David
Tell Frame To Change If A Specific Frame Combination Is Loaded
To get a better idea of what Im talking about please check my flash page. http://www.munktiki.com/Munk-e.htm
You can see that when a different munk-e color is selected and you have his ear extentions on(bottom left in the piercings menu)that the colors dont match.
So.... when the color movie/orange frame is selected and the earring movie/ear extensions frame is selected then the orange frame will tell the earrings movie to go to the correct corrisponding color earring.
Man I hope this makes sense, it barely does to me.
Hope someone can help
Help Load A Movie (and Frame) On A Specific Frame In My Timeline
I need to Load a movie and go to a specific frame within that loaded movie.
I know how to do this "on press & release" commands but how do I get it to load when a certain frame is reached in my timeline.
Example. When finished preloading it plays frame 25. When it gets to frame 25 I wan't a movie to load and start on a certain frame.
If you need more info or I am not making myself clear, please let me know.
Thanks in advance.
Active URL In Flash That Has Been Called From An Xml File
How do I make my url link active within my flash page, if the address is called from an xml file.
I have search and found some parts relevant on other threads, but nothing that axplains this clear and concisely.
Thanks in advance, any help is appreciated.
Regards
Karl
::: Can A Flash SWF File Read Variables From The URL By Which It Is Called?
Dear Flash/DB specialists,
Can you please help me to solve following problem?
Can a flash SWF file read variables from the URL by which it is called? In other words, can a file, say, MyFlashFile.swf be built in such a way, that it performs distinct actions when it is targeted by the browser as
www.SomeServer.com/MyFlashFile.swf?user=John
and
www.SomeServer.com/MyFlashFile.swf?user=Billy
(where the same SWF file is called with two distinct values for the variable user).
Thank you in advance for your help,
Vahagn
Adding Link To Image Which Is Called Upon XML File
HI people,
I have a flash file that lods data and images from an XML file, what i would like to do is the ability to include a hyperlink to the images.
Here is the Actionscript code:
ActionScript Code:
[color=Red]images_xml = new XML();
images_xml.onLoad = startImageViewer;
images_xml.load("xml/images.xml");
images_xml.ignoreWhite = true;
//
// Show the first image and intialize variables
function startImageViewer(success) {
if (success == true) {
rootNode = images_xml.firstChild;
// 'totalImages' is the variable name set to correspond with the the dynamic text instance of 'totalImages'
totalImages = rootNode.childNodes.length;
// [ totalImages = rootNode.childNodes.length; ] gets the total number of childNodes (total number of image and text files) in your .xml document
firstImageNode = rootNode.firstChild;
currentImageNode = firstImageNode;
// 'currentIndex' is the variable name set to correspond with the dynamic text instance of 'currentIndex'
currentIndex = 1;
// [ currentIndex = 1; ] sets the viewer to play the first childNode (first image and text file) in your .xml document
updateImage(firstImageNode);
}
}
//
// Updates the current image with new image and text
function updateImage(newImageNode) {
// 'imagePath' is the variable name set to correspond with the .jpeg file name located in your .xml document
imagePath = newImageNode.attributes.jpegURL;
// 'imageText' is the variable name for the instance 'textArea'
imageText = newImageNode.firstChild.nodeValue;
// 'targetClip' is the instance name for the movie clip 'imageArea', this is where all your image files from your .xml document are loaded
targetClip.loadMovie(imagePath);
// 'links added in the .xml file.
imageLink = newImageNode.attributes.link;
getURL("link");
// IMPORTANT : RESCALING THE SIZE OF THE 'imageArea' MOVIE CLIP WILL AFFECT THE ORIGNAL SIZE OF WHATEVER IMAGE YOU HAVE IN YOUR IMAGES FOLDER
}
//
// Event handlers for 'Next image' and 'Previous image' buttons.
// These statements allows flash to advance or go back to the next childNode
// (next image and text) in your .xml document.
//
// The Property (.nextSibling;) evaluates the XML object and references the next sibling
// in the parent node's child list. This method returns null if the node does not
// have a next sibling node. This is a read-only property and cannot be used to
// manipulate child nodes.
//
next_btn.onRelease = function() {
nextImageNode = currentImageNode.nextSibling;
if (nextImageNode == null) {
break;
} else {
currentIndex++;
updateImage(nextImageNode);
currentImageNode = nextImageNode;
}
};
//
// Event handler for 'Previous image' button
back_btn.onRelease = function() {
previousImageNode = currentImageNode.previousSibling;
if (previousImageNode == null) {
break;
} else {
currentIndex--;
currentImageNode = previousImageNode;
updateImage(previousImageNode);
}
};[/color]
and XML file:
ActionScript Code:
[color=blue]<?xml version="1.0"?>
<!-- <IMAGES> is the parentNode in this XML document as well as the opening tag -->
<IMAGES>
<!-- <imageNode> is the childNode in this XML document as well as the opening tag -->
<!-- jpegURL="images/image1.jpg"> locates your image file in whatever path you specify -->
<!-- </imageNode> is the closing tag for this statement -->
<!--<slides >
<imageNode jpegURL="images/image1.jpg" url="http://www.something.com">SOMETHING</imageNode>
<!-- Each <imageNode> statement following the firstChild is referenced as the nextSibling -->
<imageNode jpegURL="images/image2.jpg">SOMETHING ELSE
MORE INFORMATION</imageNode>
</IMAGES>
<!-- </IMAGES> is the closing tag -->
<!-- To add more images/text for the imageViewer to display, simply copy and paste one complete <imageNode> statement and place it after the last childNode -->[/color]
##################
I would appreciate your help, thanks.
Help: How To Go To Specific Frame Automatically When Hit A Certain Frame?
Im trying to make a project where i have a set of picture "destination" and when you click on a button on that picture, it takes you through a series of pictures that plays automatically, but when it finishes, I want it to go back to a different picture destination automatically that wouldn't be the frame right after the one that just played.
All I know is how to go to different frames with buttons with the onrealease gotoandstop/play stuff but don't know how to make them go to a frame when playing without the use of a button. please help!
How Can A Javascript Function From An External .js File Be Called With Actionscript?
I've tried using this:
getURL("javascript:getHost('messages.aspx')", "_self");
but the button i attached the actionscript to won't respond. when it's clicked, nothing happens. the getHost() function on the .js file (which is linked to the container page of the swf) goes like this:
function getHost(goto){
var host = location.protocol + "//" + location.host + "/";
window.location = host + goto;
}
now i'm not so sure where the error lay. i could be wrong with the javascript (location.protocol usage?)
thanks for the help.
Load External Txt File Into Movie Clip That's Called From Library?
Dear all,
here's the code calling my text file:
//////////////////
myData = new LoadVars();
myData.onLoad = function(){
story_txt.text = this.content;
};
myData.load("story.txt");
stop();
//////////////////
//////////////////
the above loads my "story.txt" into the dynamic text field "story_txt" when it is place on the main root of movie, but
I would like to have a dynamic text field in each of my sections (which are called from the library) problem is I can load the external file into the main stage but I cannot get it to work from within a section even when I change my call code to:
//////////////////
content_mc_section2.story_txt.text = this.content;
};
myData.load("story.txt");
//////////////////
//////////////////
okay so here's the code for my sliding sections:
//////////////////
section = new Array("section1","section2", "section3", "section4", "section5");
max = _root.section.length;
itemDepth = 1;
for (i=0; i<max; i++) {
// attach new item
//_root.content_mc.attachMovie("section", "section_"+i, itemDepth);
_root.content_mc.attachMovie(_root.section[i], "section_"+i, itemDepth);
curItem = content_mc["section_"+i];
sectionTitle = ["yellow","red","blue", "purple", "green"];
content_mc["section_"+i].mySection_txt.text = sectionTitle[i];
_root.section[i] = curItem;
if (i == 0) {
curItem._x = 0;
} else {
curItem._x = content_mc._width+1;
}
itemDepth++;
}
//////////////////
//////////////////
I think what I would theoretically like to have happen is instead of the array displaying "yellow" or "red" to have it display external content from "story.txt" ???
Sorry it's a long one,
would love to get some experts help,
thank you. thank you .very much,
PG
From .swf 1 To A Specific Frame In .swf 2
Hi
just wondering what the script would be to make a button go to a specific frame in another .swf
So far i have use something like
on (release) {
stopAllSounds ();
loadMovieNum ("images.swf", 1);
}
but how would i script it to go to a specific frame in the images.swf?
Thanking you
Miffy
Going To A Specific Frame From One Swf To Another
Hi,
I'm pretty new to flash and I'm making a cartoon. However, I have each cartoon split into a few swfs. I have a forward and back button for each "cartoon scene" and once I leave one swf (I'm using "loadMovieNum") I don't know how to get back to the last "cartoon scene" of previous swf.
Any help is greatly appreciated!
Go To A Specific Frame With A MC
hi all i have the following code on a button...
Code:
on (release) {
_root.gotoAndPlay("corporate");
}
this sends the playhead to a frame label corporate which plays a movie clip... what do i need to change to make it play the movie clip at frame 20?
Going To A Specific Frame
I used this actionscript to load a movie on to level 1 and it works perfectly
on (release) {
loadMovieNum ("loadedmovie.swf", 1);
}
What do I need to add to make it open in a specific frame in the loaded movie?
Specific Frame Using URL
Hi everyone...
Does any of you know how I can go to a specific frame using a URL...? I'm not sure if this is possible but I was thinking of someting looking like this: www.webadress.com/flash.swf!frame=3 ...But it's only a sugestion to the URL, of course
The reason I need this is because I have a hi-score on my frame 2, and when I post my updated hi-score to my XML I use php in _self, so I would like it to return to the hi-score, when it's done.....if possible!
Hope you understand my problem, otherwise please write me!
/Asle
|