• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Wrong Image ( it break when i used rotation in flex), it break more and more when I click it

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I realize that only if i use rotate function, i make my Image break any more when I click in it.
Then i only code simple example about rotation, it the same make problem
here is my video : http://www.youtube.com/watch?v=k3Ih6D8dQd8&feature=youtu.be
and here is my click function :
private var currentChannelDeg:Number = 0;
protected function CHANNEL_clickHandler(event:MouseEvent):void
{
Image(event.currentTarget).rotation = currentChannelDeg;
currentChannelDeg+=45;
}
how can I solve this problem. tks everyone
reply
    Bookmark Topic Watch Topic
  • New Topic