A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: [RESOLVED] 50%alpha, onRollOver+onRelease=100%alpha

Threaded View

  1. #5
    Member
    Join Date
    Jul 2008
    Posts
    73
    Perfect! Thank you very much for that.

    For anyone who is interested: to prevent the thumbnail from being clicked again (if already selected) add the following:

    Code:
    target.onRelease = function() {
          if (this != picked) {      //added
                 callFullImage(this._name);
    	     picked._alpha = 100;
    	     picked = this;
          }  //added
    };
    Last edited by Playdoe; 01-19-2010 at 02:13 PM.

Tags for this Thread

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