ActionScript 2.0 :: OnLoad Swf Inside Main Swf?
Jun 27, 2008
My main swf (site.swf) contains a movie clip loader that loads a second swf "item_menu.swf". Inside this second swf, I also have a movie clip loader "cityLoader_mc" that loads another swf "itemA1.swf" but the onLoad function only works for the button "A1_btn". It does not work to load the swf by default.Do I have to use something before onLoad since it's not the root swf or something?
Here is the code
HTML Code:
onLoad = function() {
cityLoader_mc.loadMovie("itemA1.swf");
}
[code]...
I am using flash CS3 with AS 2.0
View 3 Replies
Similar Posts:
Jun 24, 2010
I am loading an xml configuration file and based upon values obtained from it, I am connecting to an xml socket in the server.
But I can't register for socket.onConnect Function now. I could do it in my old cold in which I didn't use a configuration file. The configuration values are loaded properly. It seems the issue is in the way, socket.OnConnect function is registered.
[Code].....
View 3 Replies
Nov 20, 2006
I am writting an image gallery that loads one intial xml file named galleries.xml.From this point each xml node loads a XMl file for that gallery that holds all the images.The problem arises in the fact that to do this I need a onload function within an onload function.Onload functions dont accept parameters so I can pass down the variable that shows what loop the gallery loop is on as I need that in the function that holds the images.
View 4 Replies
Apr 8, 2010
on my first frame in the main timeline, i specify a var
var geklikt:String = "About";
now on the same timeline, on the same frame, theres an MC in that MC, i want to read the value of the var created on the maintime line.
View 1 Replies
Sep 26, 2006
I have a website up at [URL]. The thing is that I have flv files being loaded by swfs that are loaded on a movieclip of a main swf. Locally everything works fine but as soon as I move it up the web or even try to run in over my home network, the flv files won't run. Can the flv run inside a swf that is loaded into another swf? I have set the paths to relative already, this taking into account the main swf!
Something like this:
loaded_swf_folder/flv_folder/flv_file.flv
If I didn't take the main swf into account it would look like this:
flv_folder/flv_file.flv
But I tried this already and it didn't work at all. Except if you run one of the loaded swf directly instead of through the main swf.
View 2 Replies
Aug 15, 2009
I`m a AS2 user, having a few problems getting adjusted to AS 3. What I want to do: In my stage I have 3 movieclips:
- Intro (frame 1)
- Main (2)
- End (3)
In the movieclip Intro i show some pictures etc, when it comes to the end, i want to go to the 2nd frame on the MAIN timeline. This used to be _root.gotoAndPlay("main"); using the hierarchy allways starting from _root or _level0. or _parent... I have tried searching but am not sure how to lookup this problem. I would be really happy if someone could post me a link how to address movieclips through other movieclips or starting from the root in AS3 and for the right code to use the function gotoAndPlay to go 1 frame further in the main timeline.
View 6 Replies
Feb 28, 2009
I have a frame label on the main timeline called "History" I have a movieclip on the stage. Inside that movie clip I have a button.
I want to refer back to History from the button within the clip. Tried everything.
View 2 Replies
Mar 23, 2012
I have a main swf container, who loads external swf . All my files are connected a php files who are connected one database in one server. Sometimes when I load my project the external files they take a long time to load.
View 2 Replies
Jan 18, 2010
is it possible to create a class within the main timeline? is there a way to get around it?what am trying to do is to bring my class inside my main fla file, rather than importing it.
View 6 Replies
Jul 18, 2011
this website I'm designing loads swfs. inside one of these loaded swfs is a button that is supposed to remove the loader child from the stage and load a page in the main swf. How would I go about scripting that without using OOP? or is there a short external class I can create?
View 2 Replies
Aug 17, 2007
I load a movie into my main movie. From that movie I want to load a third movie back onto my main movie. I tried _root from inside the second movie but it loads the third movie in the second.
View 5 Replies
Dec 9, 2009
I created "symbol1" movie clip. And I have dynamic text "myscore" on the main stage.
I have this code inside of "symbol1".
mybutton.addEventListener(MouseEvent.CLICK, b1);
function b1(event:MouseEvent):void {
myscore.text = "30";
}
And it gives me this error. (1120: Access of undefined property myscore.)
It works only when text and actionscript inside of the same symbol. I tried like this root.myscore.text = "30"; but it still doesn't work.
View 2 Replies
Oct 16, 2010
I've created six movie clips of cursive text effect using masking for the animation. Each clip is approximately 160 frames long. I need to play these sequentially, one after the other, when the page loads. structure multiple clips to play after each other?
View 3 Replies
Aug 13, 2011
I have a movieclip inside the OVER on a button, right now I have an animation that causes the button's brightness increases from 0 to 10 over 24 frames and then come stops because of a stop (). I now intend to add an animation after stop () which gets the button's brightness goes back to 0 again when you no longer hold the mouse over the button. I would therefore like to make some kind of mouseOut event that allows Movieclip go to the next frame. I have tried to insert a target path but it seems that it can't reach the movie clip inside the button.
View 1 Replies
Aug 24, 2009
as the title says i am having two movie clips on main stage one called "land" and other called "char" inside "char" MC i have another MC called "ht1" i want to make hitTest between "ht1" and "land" but everything seems to fail, i've tried using _root, _parent?
View 3 Replies
Jan 3, 2011
Inside of movieclip on keyframe i want a script that tells to swap depths between 2 mc's that are on main timeline. When i use setChildIndex inside of mc flash hits me with Error #2025.
View 9 Replies
Sep 16, 2009
I'm trying to listen for events sent from my main movie swf from inside a preloader shell swf.Inside Preloader.swf, I load my Main.swf in the traditional way, with a loader object and I listen for progress events on that. These progress events make my preloader bar scaleX increase, like normal. But, I have an XML file and an image that load inside of my Main.swf as soon as it is loaded. I would like for these unloaded bytes to be shown in my Preloader.swf before the Main.swf gets added to the stage.right now, I am sending the totalBytes from the XML file and the image to my Main.swf document class, which, in turn, dispatches a custom "PreloaderEvent" that holds the total number of bytes.
In Preloader.swf, I add an event listener to the loader ( which holds main.swf ), listening for that PreloaderEvent.Can events be heard in this manner and is this the best way to be preloading this type of file ( one where main.swf loads in the first frame, then starts loading of external images after the swf is running ).I'm just not sure how to get all of those extraneous bytes into one location for my preloader to see at the same time.
View 1 Replies
Jul 2, 2007
I've been using this code to try and stop a main movie clip and all of the movie clips inside it. My problem is that this code only stops the main movie "elements" but none of the nested clips, can anyone spot a glaring mistake.
function stopAllClips(clip) {
clip.stop();
for (var i in clip) {
if (typeof clip[i] == "elements") {
if (clip[i] != clip) {
stopAllClips(clip[i]);
[Code] .....
View 2 Replies
May 11, 2009
I need to recreate 2 buttons inside a mc or a main button in AS 2.0 [URL]rollover "portfolio" then rollover faith in chaos you will see a set of buttons in what looks like the main button overstate I know this was done with a javascript menu in this case but there has to be a way to do it in Flash I need to create that overstate with accessible buttons inside.
View 10 Replies
May 15, 2009
I am trying to set value of a textbox inside a swf loaded dinamically in the main swf...i am using
Code:
this.getChildByName("nuvoletta").textbox_value.text = "something";
but i get error 1199
I am forced using getchildbyname
View 1 Replies
Jul 12, 2002
I need to randomly position identical symbols in a movie - I have found a way I can do it in the main timeline using this code:
n = 10;
while (n>0) {
duplicateMovieClip ("/r1", n, n);
n = n-1;
[Code]....
The problem is that the _x and _y parameters only seem to work in the main timeline, and I need the whole thing to be self-contained inside a movie clip, so that I can easily paste it into other Flash movies (about 75 of them). Is it possible to specify a random location inside a MC?
View 5 Replies
Jun 11, 2010
I have an animation (movieclipX) on frame 2 of main timeline. At the end of movieclipX I'd like the main timeline to move to the next frame, frame 3. How can I do this??Sorry if this is an easy question, I'm in the process of learning.
View 8 Replies
May 5, 2011
I have a scrollPane on my stage, and I have a movieClip inside of it with a bunch of buttons. When you click on one of the buttons, I need it to gotoAndPlay a frame label on the main timeline. So far I cannot get this to work.
View 6 Replies
Nov 22, 2009
On the main stage I have a button that I have made invisible once the file is loaded. Inside a movieclip I have on frame 15 the following actionscript 3 code
button_mc.visible = true;
I want the button to become visible at the end of this movieclip. I am not using an external as3 file, I am putting the as3 code in its own layer on the first frame.
I know it has something to do with the path to the button, but I cannot figure it out. If there is anyone who can point me in the right direction for referencing instances by instance name that reside on the main satge from inside a movieclip
View 3 Replies
May 6, 2010
I'm working on a lot of different flash applications Most of those applications are visual and involves the main stage.I started oop a while ago and i got to a point that %99.9 percent of my code is extracted to different classes.There is one thing that repeat on a regular basis on all of my apps, passing the Stage variable to the different classes....It's working great but it doesnt feel right that i need to pass the main stage as a variable between the different classes,is there a better way to access the stage from external classes ? can i make the main stage a static property and access itwithin all the objects in the application ?
View 1 Replies
Jan 24, 2011
I have a movieclip and within it is a bit of actionscript and a couple of different movieclips to make it function like the button on a ball point pen (you click it and it stays clicked until you click it again).
var booleanClick:Boolean = false;
var colorTransform:ColorTransform = optBox.transform.colorTransform;
optHitState.addEventListener(MouseEvent.CLICK, onClickHandler);
function onClickHandler(myEvent:MouseEvent){
[Code].....
I don't want to get deeper into this monster of a project without making sure this is working first. Is my boolean working and just my trace statements aren't worded right or is my method to change the boolean wrong?
View 1 Replies
Jan 8, 2011
Am gonna create an encyclopedia program, consist many of Chapter. I have difficulties about controlling external swf inside my Main swf. This is my Main.as in Actionscript 3
public class utama extends MovieClip {
var loader:Loader;
var urlReq:URLRequest;[code]........
Am using eksternal page as a Chapter, and A Chapter consist of many Pages (it using Scene)
For an example :
Chapter 1 --> Page 1 it will be represented as hal1.swf-->Scene 1
Chapter 1 --> Page 2 it will be represented as hal1.swf-->Scene 2
Now, How to control it, I still didn't get it ??
View 1 Replies
Jul 15, 2010
Is a website with a banner
the banner is a symbol in the main movie called [B]screen[B]
the 3 external swf files are: mov01, mov02, mov03
i use the loader component but play 1 file only
i need play the 3 movies random in the "screen symbol" inside the main movie.
View 0 Replies
May 2, 2011
How to target a label within a movie clip on the main timeline, from a button within another movieclip on the maintimeline.
View 0 Replies
Apr 9, 2009
I make a website. First I have a frame with a movieclip, where my entire page is within.Inside of that is where all of my pages is in different frames, and in each of these frames there are other movieclips with content. My example:Top level /Entire site/My pages, in different frames /Movies/Pictures/About/Etc./Content (inside the "Movies") /Info about movies/Movie one/Movie two/Etc./My problem is as easy as this: I will link from the "My pages" level, to the first frame in "Content" (info about movies)If i just link to the, "Movies" frame, I can't get from "Movie One" to Info about movies by pressing the button, wich lies on the "My pages" Level.
View 4 Replies