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 February 4th, 2004, 02:06 PM
ucmeicu49 ucmeicu49 is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 1 ucmeicu49 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Layered Flash Banner

Has anyone seen those flash ads that fly all over your page?
Army has alot of them, go URL and watch what comes out of the bottom left.
Does anyone know how to make that happen? I am pretty knowledgeable in flash but I have absolutley no idea how do to that.
Thanks

Reply With Quote
  #2  
Old February 4th, 2004, 02:13 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
Put your banner inside a movie clip and give it an instance name of "clip." From the root, place the following code inside a keyframe:

Code:
MovieClip.prototype.Increment = function(max_x, speed) {
    this.onEnterFrame = function() {
        this._x += speed;
        if (this._x>=max_x) {
            this._x = max_x;
            delete this.onEnterFrame;
        }
    };
};
with (clip) {
    _x = -123;
    _y = 200;
    Increment(123, 11);
}


With regard to your html document. You should make the flash movie transparent. Macromedia has a tutorial on that. This way, the banner could appear to overlap the html.

Last edited by jmichels : February 4th, 2004 at 02:15 PM.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignFlash Help > Layered Flash Banner


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 1 hosted by Hostway