Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Click-and-Rotate picture in Flash

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #32941
    lena2010
    Member

    If anybody knows how to rotate picture 90 degrees by clicking on it and actually make this rotation been visual please help.

    #74709
    andrewsellenrick
    Participant

    AS2 // Kinda rusty but I’ll try //
    yourimage.onRelease = function() {
    this._rotation +=90;
    }

    AS3 //
    yourimage.addEventListener(MouseEvent.CLICK , clickEvent);
    function clickEvent(e:MouseEvent):void
    {
    e.currentTarget.rotation+=90;
    }

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.