I dont even know if i got the title right. I am 5 days into actionscript and i have no prior training or experience in programming, flash using or whatever you might need to build a decent site, except for the graphic design part. I do however need to build an online portflio asap and things have been going great
I have a main movie that uses buttons to go to specific frames on the main timeline:
HZWA.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame); function fl_ClickToGoToAndStopAtFrame(event:MouseEvent):voi d { gotoAndStop(5);
I have a button ( 3 buttons ) and each button is assigned to Load a movie. When you click one of the buttons, the LoadMovie on Level 1 is good. Now here is my problem, how will I unload the current movie before Loading the next one. I want to UNLOAD the CURRENT MOVIE first before loading another MOVIE.
I have just been to a really nice website that has some really nice use of Flash on it.... I'm totally wowed by the resizing picture effect though? When each picture loads the loading frame resizes to the new picture size.
I'm totally wowed by the resizing picture effect though? When each picture loads the loading frame resizes to the new picture size.It must be some sort of actionscripting but how is it done?
now the movieclip "photo" consist on another movieclip that does the actual picture display/loading with some AS> photoHolder < loads the actual picture,so i thought ok,logically its
_root.photo.photoHolder.removeMovieClip(); maybe even _root["photo" + photoNum].photoHolder.removeMovieClip(); or _root.photo.removeMovieClip(); etc
i tried numerous other structures but i just can't get it to work, for some reasons i just can't unload the movieclip that shows the picture.
I have this menu that I am loading my swf files under a as. file and linked to a xml file. It loads perfectly my swf files when i click on the buttons, but when i keep clicking the buttons, it keeps loading it on top of each other...How can i unload the current swf file when i click on the other button.? under the as file i have the following to load my swf files:
private function customFunc(link):void { var request:URLRequest = new URLRequest(link); var loader:Loader = new Loader() loader.load(request) var swfContainer:MovieClip=new MovieClip ; this.addChild(swfContainer) swfContainer.addChild(loader);; trace(link); }
I have a menu set up with several buttons (on the left side of the screen), each of which loads an external swf (on the right side of the screen). Within some of these swfs are more buttons to load other swfs, and the menu on the left remains active while another swfs is playing.What I want is to unload the current swf whenever a button is clicked and load the new on in the same spot. So before I was using addChildAt to get the external swf's at a certain level, and then removeChildAt to take away whichever swf it is and then add the next one. That didn't stop the sound, so I switched it to unloadAndStop and set up a function that unloadAndStops each individual swf, like this:[code]
That function runs every time a new swf is called to remove the previous one.Now I know that's not what I should do since I'm effectively using a method on objects that aren't in the display list, and it's apparent since it messes up the text later on in the timeline. But I don't know any other way to get everything to unload and to stop all the sound. It would be a headache to make specific paths for the buttons within swf's, but I don't even know what I'd do about the buttons in the main timeline that don't know what swf is playing on the right.I've searched lots of different forums for this one, for something kinda like unloadAndStop and kinda like removeChildAt, so I'm thinking I need to reorganize this project somehow
The code works but with an issue. When I load an image it replaces the current one loaded but when I alpha tween the image to zero I see both images fading out on top of each other like the first one is still loaded but underneath the current one. Any body run into this before?
var imageLoader:Loader; function loadImage(url:String):void { // Set properties on my Loader object
I can't seem to be able to figure out how to unload a JPG image once I've loaded it so I can load a second JPG in it's place. Here's my code so far (document class, picHolder_mc exists already on the timeline). All that happens is the second JPG being called loads on top of the first.
How can I unload a movie from with in the UI Loader. I have loaded a movie into my UI Loader and there is a go back button And I simply want to unload that movie and return to normal.
I'm coding an xml gallery with thumbnails. Ive set a container for the thumbs and for the main image. when user clicks on a thumb it loads the larger image. Preloaders are done all is well however when the user clicks on a nother thumb it just loads in the image over the last one. How can I cause it to delete the currently displayed image and then load the new one.
would :- removeChild work or do I need to use .unload on the loader?
I am having some issues with my loader. What I have is one loader object that will load 5 different SWF loading xml galleries.It works fine the first time it loads, until I unload it to reload another gallery... then it will display its loading but nothing shows?
Code: var gallery:String=new String ; gallery="web"; var portIDReq:URLRequest=new URLRequest("viewer"+this.gallery+".swf"); var portIDLoader:Loader = new Loader(); portIDLoader.x=0; portIDLoader.y=0; [Code] .....
Then I draw a circle as _g mask,such as _c _g.mask=_c;
I want to realize following effect.First appear 2.jpg,and during the mask _c radius is from 0 to 300,the picture 1.jpg is appearing synchronously in mask _c.
I have a URLloader that load an xml file, what i need is to be able to clear whats in the loader once the data of my xml has been loaded, is it possible to use unload in the on complete function? for example[code]...
I am building a portfolio gallery, with one loader who loads 5 different .swf which load XML files.Everything work, but once I unloaded it to reload it, it says that its loaded but I dont see anything anymore.I probably tried a 1000 versions, but here is my latest code:[code]
I have used the loader class to play an external .swf file. When it is finished I need to stop it and continue to the next frame in the timeline of the original movie. I can load it and unload it, but how to I unload it after it has played and continue to frame 2 of the timeline?
var myLoader:Loader = new Loader();myLoader.x = 150;myLoader.y = 75; myLoader.load(new URLRequest("movie.swf"));addChild(myLoader); myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,onComplete) ; function onComplete(e:Event):void{ myLoader.unload(); this.gotoAndPlay(2);}
With this code, it skips the loaded movie and goes straight to frame 2.
I have load external swf file with loader. The external swf file have animation with embeded mp3 file . when i click the btn unload the external swf file .external swf file is unload ok. But Problam is after few seconds sound is hearing. I think animation still running in backend when reach the first frame sound is hearing.
var ldr:Loader=new Loader()ldr.load(new URLRequest("test.swf")) addChild(ldr) btn.addEventListener(MouseEvent.CLICK,unloadmovie) function unloadmovie(e:MouseEvent){ ldr.unload() SoundMixer.stopAll() }
My code is try { if (MovieClip(this.parent)!=null) { if (MovieClip(this.parent).imagename!=null) { var t=MovieClip(this.parent).imagename; var url:URLRequest=new URLRequest(t); [Code] ..... My loader unload event not calling?
I want to unload my loader when i click the unload button, and to check if it unloaded successfully, i typed a trace command [trace("unloaded")] in the eventListener "EVENT.UNLOAD", but when i click the unload button, it doesn't unload.[code]any help on how to make unload work?
here my code ----------------------------------------------------
if (MovieClip(root).gmapimage!="") { myLoader.contentLoaderInfo.addEventListener(Event. COMPLETE, onLoaderReady); myLoader.contentLoaderInfo.removeEventListener(Eve nt.UNLOAD,unloadHandler); var fileRequest:URLRequest=new URLRequest(MovieClip(root).gmapimage);
[Code].....
i want to remove all object and variable set or remove on Event.UNLOAD event(see my function unloadHandler()) but UNLOAD event not work for me anything wrong...
I have several thumbnails in my portfolio that dynamically load a .png file into the Loader component called myLoader.Followed the tutorial from Kirupa. Simple enough.
When I (user) goes to click on a different client to view different work, artwork from the current client is still loaded, or being shown. I have the same myLoader Loader spread through the frames.I tried to put this
Code: on(press){ unloadMovie("myLoader"); } on each client button to clear the Loader before you go to each section, but that makes it disappear all together, than when you go to click a thumbnail, nothing happens because the Loader is gone.Is there a way to unload the .png files w/o killing the loader? Should I use a separate loader for each client? or will that just get messy.
I'm having trouble passing the url for a users facebook profile picture to a Loader() variable. I'm using a PHP file to get around the security and from the debug I made, it shows that I'm getting the URL fine, but the Loader runs the error event listener. Here is what my facebookProxy.php file looks like;