A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: Horizontal Flip

  1. #1
    Mental Ward Patient Blips's Avatar
    Join Date
    May 2005
    Posts
    482

    Horizontal Flip

    How would one horizontaly flip a movie clip with as 2.0 ? second dumb question i've asked today

  2. #2
    Senior Member catbert303's Avatar
    Join Date
    Aug 2001
    Location
    uk
    Posts
    11,222
    Code:
    instanceNameOfMovieClip._xscale *= -1;

  3. #3
    killerjackaroo
    Join Date
    Aug 2005
    Location
    San Francisco <--the ****
    Posts
    44
    Try the manual way.
    Open up the MC,
    add a new keyframe,
    Go back to the first frame,
    put a Stop(); action on the frame,
    select the entire image,
    Control-C,
    go back to frame 2,
    Control-V,
    on menu bar; Modify>Transform>Flip Horizontal.
    Put a Stop(); Action on the second frame,
    add a new layer,
    insert a button,
    alphize it (make it invisible)
    give it this action:
    on (keyPress "<Right>"){
    gotoAndStop(1)
    }
    on (keyPress "<Left>"){
    gotoAndStop(2)
    }

  4. #4
    Junior Member
    Join Date
    Dec 2004
    Posts
    24
    nice catburt!

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