ActionScript 2.0 :: [FMX04] Loading (replacing) Empty_holder Or Container?
Mar 16, 2006
I am loading in new swfs using the comboBox component which is all working fine with the following code:
HTML Code:
comboListener = new Object();
comboListener.change = function(evtObj){
_root.empty_holder.loadMovie(evtObj.target.text + ".swf",3);
}
myComboBox.addEventListener("change",comboListener );
What I want to do is instead of it loading into the empty_holder MC, load straight in to replace the parent swf.The reason being that all the buttons underneath, in the parent swf are still active when the new one loads in. If a completely new swf cant be loaded, is there some code that can just deactivate the parent swf?
View 2 Replies
Similar Posts:
Oct 21, 2006
I have three Flash movies (all the same pixel size) that I want to use on the home page of my website which is built in MX 2004.
How often the movie changes is not critical, but I think once an hour will be fine. What's the best way to get Flash to automatically change the movie every hour and where should I attach any code - to an Actions layer in movie no. 1?
As a summary, here's what I want to achieve;
12.00pm - movie no. 1 plays
1.00pm - movie no. 2 plays
2.00pm - movie no. 3 plays
3.00pm - movie no. 1 plays again
...and so on for 24 hours until you get back to 12.00pm when movie no. 1 plays again.
View 1 Replies
Jul 31, 2004
problem with loading images randomly and putting them in the right _x and _y coordinates.I have a swf file with in the first frame a button with this code :
on (release) {
filename = ["image-01.jpg", "image-02.jpg", "image-03.jpg"];
path = "images/";
[code].....
View 1 Replies
Jul 31, 2004
I have a problem with loading images randomly and putting them in the right _x and _y coordinates. I have a swf file with in the first frame a button with this code :
on (release) {
filename = ["image-01.jpg", "image-02.jpg", "image-03.jpg"];
path = "images/";
i = filename.length;
[Code]....
the image gets loaded and placed correctly when played from the harddisk. the problem starts when i upload the swf to the internet, then the image won't be centered but the left upper point of the image is placed at x=640 and y=230
View 1 Replies
Jul 28, 2011
I have a main shell swf file that has two buttons on it that should each launch/load their respective swf files (tool1, tool2). These should essentially replace the main swf file. Also, I have a button on tool1 & 2 that should bring you back to the main menu. All these files are then compiled into an exe. Seems easy enough, but I'm not entirely sure where to start.
So far I have:
import flash.display.*;
import flash.net.URLRequest;
tool1_btn.addEventListener(MouseEvent.CLICK, gotoTool1);
function gotoTool1 (e:MouseEvent):void{
Loader(this.parent).load(new URLRequest("tool1.swf"));
}
View 2 Replies
Dec 13, 2010
I'm working on a project for the new year gathering at our work. I made an application in which you can type a wish for the company and when you send it your message will be displayed in an dynamic text field and in the background fireworks are launched. These fireworks are external swf files, made in adobe after effects. They are launched when clicking a button. They are played at random. However, after playing 2 or 3 they start slowing down, probably because they stack on each other. I need the new swf to replace the old swf, now my application keeps loading new swf on top of each other.
View 1 Replies
Jun 8, 2010
I have swf_1 and a button in it, which should load swf_2 replacing swf_1.
View 5 Replies
Jan 27, 2012
I would like to have flash (as3) to save a var to a text file located on my server so everyone can reach it from their client swfs. I also need to know how to update this variable by loading latest var on the server and writing over it with a new updated var I've read so much already and it all seems so confusing[URL]
View 6 Replies
Jan 28, 2012
I would like to have flash (as3) to save a var to a text file located on my server so everyone can reach it from their client swfs. I also need to know how to update this variable by loading latest var on the server and writing over it with a new updated var.
[URL]
I would like to, whenever I feel like it, be able to load that var and replace it with something else.
edit: has to use "w w w" instead of "www" as it told me I needed to have made 50 posts to be able to post links, and I've only done 19 so far
View 4 Replies
Jan 27, 2012
I would like to have flash (as3) to save a var to a text file located on my server so everyone can reach it from their client swfs. I also need to know how to update this variable by loading latest var on the server and writing over it with a new updated var.I've read so much already and it all seems so confusing [URL]
View 1 Replies
Feb 21, 2009
I am trying to do something that seems like it should be relatively easy. Well bang goes that theory. Here is what I am trying to do. I have the path to a group of images stored in an xml file. I want to load them to a movie clip on the stage. doing this directly by reading the xml file and using loadMovie("filename"); bsaically does what I want it to do with just a few problems, 1. the movie repeats so the same image is pulled from the server multiple times sucking up bandwidth. 2. On slow connections the images can sometimes load slow making the movie not display properly. What I would like to do is load all the images into some structure and add the images to the movieclip in the time line when needed. How does one accomplish this in action script 2.0?
In a perfect world, I would just load all the images to an array and load the array element to the movieclip on the stage.
View 1 Replies
Jan 28, 2010
I've successfully managed to load an external swf file into a movie, but I don't know how to resize it or position it... is this possible?
I'm using this code to load the swf into a movieclip called 'Holder':
Code:
var Holder:Loader = new Loader();
var urlrHome:URLRequest = new URLRequest("myMovie.swf")
Holder.load(urlrHome);
[Code]....
My 'Holder' is bigger than the swf importing, but ideally i would like to resize and position it in the center of the stage... (at the moment, the movie loads in small and sits at the top left corner of the stage, even though my container is in the middle...
View 1 Replies
May 23, 2010
I'm trying to load links into this container:
var swfContainer:Sprite = new Sprite();
addChild(swfContainer);
swfContainer.x = 238;
[code]......
View 2 Replies
Jul 15, 2011
there a more official name for a 'flash container' ? because very little results come up when i try and search for answers!can you load a container within a container, i'm thinking no but would like to clear that up also! for example i've followed this tutorial htm however when loaded up in a container nothing appears in the mouse over effect.. i've also tried loading jpegs into a swf via an xml which again works fine until i load it up within a container and nothing appears..
View 21 Replies
May 14, 2010
If a swf file is destined to be loaded into a container file and interacted with from there, is it considered better practice for the code for the interaction to reside in the loaded file or the container file? I am writing on the timeline, rather than creating classes. Also if a movie clip on the stage contains buttons with event listeners attached and I remove the movie clip as a child, do the event listeners disappear with it, or should i remove them separately?
View 4 Replies
Aug 17, 2010
On the Mac, everything works fine. I load a .swf into an ADM Flash Player Item in the Illustrator SDK and the .swf pulls some information from an options.xml file on local machine to create the UI.On Windows the .swf seemingly won't load info from other files on the computer. I can get the .swf to load inside the ADM Flash Player Item, but it seems like it can't access the options.xml file.When I run the .swf OUTSIDE of the illustrator container, everything works as it is supposed toI thought it might be a security/permissions issue, but wouldn't that come into play even when it's run outside of illustrator
View 2 Replies
Dec 13, 2011
I need to place a image in a container. But well it does not work It doesn't do anything actaully.Its been a while since a used ac3 but still does someone care to take a look?the picture that needs to be loaded and the xml file are all in the same folder.do i need to use a for loop? my teacher said it didnt need it.
// ------------- PICTURE LOADER ----------------
var PicXML:XML;
var picXMLLoader:URLLoader = new URLLoader();
[code].....
View 3 Replies
Feb 16, 2009
I'm trying to design a scrolling panel following one of the tutorials. I'm loading some photos using an XML into a container and I want this container to be reactive to mouseX. I can't get this movement all the smooth that I want. The images sometimes vibrate.[code]
View 0 Replies
Oct 9, 2009
I have a SWF that uses a XML to load other swfs and put them together.
I try to load my main SWF called "preview" in a movie container in a .fla
But when I publish my "index", the movie container only loads PREVIEW without the content.
My AS for preview is:
stop();
//--------------------------------------------------------------------------------------
// Import Tween Files | Stage Setup
[Code]....
View 2 Replies
Sep 16, 2010
i have a xml gallery with a mouse hover scroll bar which loads up photos. I want to have this movie clip load into a container in my menu movie clip but whenever i try nothing shows up. I can load other movie clips fine. I am guessing its something to do with the xml.
View 9 Replies
Feb 22, 2008
I have created a flash gallery where I am trying to fetch all thumbnails and large images from external folders. I am using the following code to load image blow-ups in a container:[code]While this works offline, when I upload the files, the thumbs are fetched from the image folder but not the large images. If there was an issue with the path, then thumbs should also not load.
View 2 Replies
Sep 16, 2008
Late night dumb question time:I have an SWF named "gallery.swf" that loads into an empty clip called "holder_mc" in the parent movie. How do I call a function from gallery.swf that replaces gallery.swf with a file called "purchase.swf" in holder_mc? The function I'm using looks like this:
Code:
function ProceedToCart():Void {
_root.mcLoader.loadClip("purchase.swf",_root.holder_mc);
[code].....
View 1 Replies
Mar 1, 2009
i have main swf that loads external swf, here is the main FLA. the animation begins and stop at frame 71:
frame 71: there is empty movie clip with instance name container, this code in frame 1:
ActionScript Code:
var currMovie:String = "section1";
[Code].....
at this point, it loads sec1.swf, but when i click to load other swf, it will not respond.
View 3 Replies
Aug 20, 2009
I am doing a website with external swf using AS2 . The parent frame (container) is resizeable, the external swf is an animation. Some items draw outside external container. The external (swf with animation) will resize when parent frame (container) resized in scale.
The problem occurs when the parent frame resized, the flash programme define the width of external swf, such as the movieclips/jpeg outside the scene. (for example: both my Container and External swf are 1024x640. However, some of the graphics in the External Animation swf move outside this area. BUT the parent CONTAINER still RECOGNIZE and LOAD the content outside the defined stage.)
i found this izzue in FLEX, [URL]
Therefore, I would like to know if I could fix this in Flash CS3 (AS2) ?
View 1 Replies
Aug 19, 2011
I'm writing a preview site that will load SWFs/images from a URL into a preview pane. However, the primary problem I'm running into is actually loading these SWFs. It seems that the object/embed tags require width/height attributes. I will not know the exact size of these SWFs; in fact, I will know absolutely nothing about them.
What I'm asking is, what is the best way to load in these SWFs? Is there a library that exists to do this? Or do I need to do it myself?
View 2 Replies
Dec 9, 2011
I have a simple swf in an invisible <div>; when user mouseover's the <div> becomes visible.The swf has a ExternalInterface.addCallback( "..." , ... ) to create connection to js that needs to be called at load, such that by the time user mouseovers the flash-js connection is working.PROBLEM: on windows safari the flash does not go through its loading sequence until the user finally mouseovers
View 1 Replies
Aug 20, 2009
I am doing a website with external swf using AS2. The parent frame (container) is resizeable, the external swf is an animation. Some items draw outside external container. The external (swf with animation) will resize when parent frame (container) resized in scale.
The problem occurs when the parent frame resized, the flash programme define the width of external swf, such as the movieclips/jpeg outside the scene. (for example: both my Container and External swf are 1024x640. However, some of the graphics in the External Animation swf move outside this area. BUT the parent CONTAINER still RECOGNIZE and LOAD the content outside the defined stage.) i found this izzue in FLEX, [URL]
View 1 Replies
Nov 11, 2009
I have been trying endlessly to find a solution for a problem. All I want to do is to be able to load a loader container on to the stage and swap out each swf by hitting the corresponding btn. I found a code to do this and it works on static swfs but when I link xml photogallery swfs to it I get all kinds of output errors but the functions work in a browser. I know it is the code as I have tried 4 different kinds of xml photo galleries and all return similar output errors.
I know this is a bit of a pain in the @#$ but if someone could have a look at the zip file in the link below which contains a main.swf, an swf folder and one swf inside including all the xml. You will see what I mean. What I really need to acomplish is to have a set AS3 code for doing this, I'm sure a seasoned AS3 pro could look at the code in the file and see why I get the errors or I'll even settle for a code that works. I'm the kind of person that likes to know why something doesn't work and when it works I like to know how as well. This is one of the reasons I've been knocking myself out for days as you will see posts of mine about this.
zip file link is here
[URL]
View 0 Replies
Apr 23, 2010
I am creating a course that requires loading/unloading of several swfs in a container. My course structure is something like :
Course->Module01->src->test.as
->Module02->src->test.as
When I load file from Module01 in my container it works fine, but files from Module02 is not working as they should. They seem to be reading the code from the as file in Module01. The course works fine when I give the as files different names, but I want to keep the names as they are now as I have created several modules and sub-modules on similar structure.
View 3 Replies
May 10, 2004
I'm working with several nested movie clips. My Main container (the GUI), and the content MC's. The Main Container loads, via a button, another SWF file into the MC
"_root.content" (_root.content.loadMovie("filename.swf"))
Within that loaded swf file I've got a script to load information from an XML file, and add it to several dynamic text boxes. The XML loads fine, and the SWF file works fine, as long as it isn't in my container movie..
itmHeader = _root.attachMovie("movieName", "movieAlias")
I have tried root, parent, and this.. and none of them work while the SWF file is loaded into the container movie.. and the only one that works when I run the SWF file by it's self _root.attachMovie is the only command that shows the information as intended (at all).
View 3 Replies