Flash Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb DesignFlash Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old January 10th, 2004, 05:37 PM
blissdev blissdev is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 78 blissdev User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via AIM to blissdev
Image Alpha Fade

I know this is a simple question... I just make a tween between to images and then change the alpha right? are there any good tutorial on this?
__________________
--blissdev

Reply With Quote
  #2  
Old January 10th, 2004, 06:55 PM
jmichels's Avatar
jmichels jmichels is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2003
Location: Orlando, FL
Posts: 177 jmichels User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 18 m 12 sec
Reputation Power: 6
You can use tweening, but actionscripting is a good method as well. This .fla demonstrates a gradual fade-in through the use of actionscripting.
Attached Files
File Type: zip alpha_fade.zip (6.7 KB, 767 views)

Last edited by jmichels : January 10th, 2004 at 06:58 PM.

Reply With Quote
  #3  
Old January 10th, 2004, 07:07 PM
blissdev blissdev is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 78 blissdev User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via AIM to blissdev
aww man... won't let me open cuz i got mx 2k4

Reply With Quote
  #4  
Old January 10th, 2004, 07:32 PM
jmichels's Avatar
jmichels jmichels is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2003
Location: Orlando, FL
Posts: 177 jmichels User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 18 m 12 sec
Reputation Power: 6
I'm still using Flash MX. I hated when Macromedia got rid of normal mode via the actions panel in Flash MX 2004. Did you unzip the file using Winzip before you opened it in Flash?

Last edited by jmichels : January 10th, 2004 at 07:34 PM.

Reply With Quote
  #5  
Old January 10th, 2004, 07:39 PM
blissdev blissdev is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 78 blissdev User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via AIM to blissdev
yes, i did

Reply With Quote
  #6  
Old January 10th, 2004, 08:15 PM
jmichels's Avatar
jmichels jmichels is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2003
Location: Orlando, FL
Posts: 177 jmichels User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 18 m 12 sec
Reputation Power: 6
You can paste the code below into a keyframe. Then drag a movie clip onto the stage and give it an instance name of "clip" which will make a nice fade-in effect.


MovieClip.prototype.Increment = function(maxAlpha, speed) {
this.onEnterFrame = function() {
this._alpha += speed;
if (this._alpha>=maxAlpha) {
this._alpha = maxAlpha;
delete this.onEnterFrame;
}
};
};
with (clip) {
_alpha = 0;
Increment(100, 2);
}

Reply With Quote
  #7  
Old January 10th, 2004, 11:47 PM
blissdev blissdev is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 78 blissdev User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via AIM to blissdev
sweet thx

Reply With Quote
  #8  
Old January 10th, 2004, 11:48 PM
jmichels's Avatar
jmichels jmichels is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2003
Location: Orlando, FL
Posts: 177 jmichels User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 18 m 12 sec
Reputation Power: 6
My pleasure.

Reply With Quote
  #9  
Old January 11th, 2004, 02:18 AM
blissdev blissdev is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2002
Posts: 78 blissdev User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Send a message via AIM to blissdev
can i do this w/o actionscript?

Reply With Quote
  #10  
Old January 11th, 2004, 02:54 AM
jmichels's Avatar
jmichels jmichels is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2003
Location: Orlando, FL
Posts: 177 jmichels User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 18 m 12 sec
Reputation Power: 6
You can use a motion tween. I prefer a motion tween especially when making intros. Have a look at this .fla
Attached Files
File Type: zip alpha_tween.zip (5.8 KB, 369 views)

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignFlash Help > Image Alpha Fade


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway