unload image

This is a discussion on "unload image" within the Flash & Multimedia Forum section. This forum, and the thread "unload image are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Nov 5th, 2007, 14:27
1840dsgn's Avatar
SuperMember

SuperMember
Join Date: Jun 2007
Location: Canterbury
Age: 19
Posts: 719
Thanks: 0
Thanked 0 Times in 0 Posts
unload image

Hi all,

I've got a portfolio wit an image gallery as part of it. when the user clicks the gallery button the gallery appears and within thwe gallery there is code that loads external images into a frame.

It all works perfectly.

My only problem is when you then exit the gallery by clicking on the About page or whatever page the last loaded image from the gallery stays in place.

I'm using AS3 and I've given the code below for one of the gallery images.

Is there a way I can unload al external images or soemthign?

Code: Select all
btn1_btn.addEventListener(MouseEvent.CLICK, image1);
function image1(event:MouseEvent):void {
    var request:URLRequest = new URLRequest("images/img1.jpg");
    myloader.load(request);
    addChild(myloader);
    myloader.x=285.6;
    myloader.y=66.3;
}
Reply With Quote

  #2 (permalink)  
Old Nov 9th, 2007, 14:04
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Sgaspar11
Re: unload image

Enjoy this little read...:-)

http://www.gskinner.com/blog/archive...urce_ma_1.html
Last Blog Entry: Yay!? (Oct 8th, 2007)
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
unload movie clip transition. monkeygraphik Flash & Multimedia Forum 0 Jan 29th, 2008 12:37
Unload movie clip problem monkeygraphik Flash & Multimedia Forum 2 Sep 11th, 2007 08:37
How to unload a movie from the Loader component griffonwing Flash & Multimedia Forum 5 Jun 12th, 2007 04:22
unload and load a new movie on existing background Val J Flash & Multimedia Forum 2 Oct 5th, 2005 03:01
Unload Movie? Marcusweb Flash & Multimedia Forum 1 Oct 29th, 2004 07:10


All times are GMT. The time now is 07:37.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43