A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: "fastblinkeffect"

  1. #1
    Junior Member
    Join Date
    Apr 2001
    Posts
    3
    How can i make a "fastblink effect" through actionscript similar to http://www.dennisinteractive.com and http://www.2advanced.com?? tnx :>

  2. #2
    Senior Member
    Join Date
    Jun 2000
    Posts
    145
    this is for if you just want it to appear and disappear, i think the two you've mentioned both are done through animation

    this code goes in to the movie clip

    onClipEvent (enterFrame) {
    if (this._visible) {
    this._visible = false;
    } else {
    this._visible = true;
    }
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center