A Flash Developer Resource Site

Results 1 to 9 of 9

Thread: Image is not looking good while animating

  1. #1
    Junior Member
    Join Date
    Jan 2010
    Posts
    13

    Question Image is not looking good while animating

    hi,
    I have copied a new image in to the flash, and i tried to rotate it.
    Rotation is working, but the image is not looking good in flash (i can see some distractions while rotating).
    Can you give me a clue on why this is happening and how to avoid this?

  2. #2
    rabid_Delineator AttackRabbit's Avatar
    Join Date
    Dec 2003
    Location
    Orlando, Florida
    Posts
    481
    if your image is in the library , right click , or context click on the image , and make sure , allow smoothing , is checked. If you are loading the images via actionscript , you would probably want to cache the loader.content off as a new bitmap , and set its smoothing property to true.
    Code:
    var someImage : Bitmap = Bitmap( loader.content );
    someImage.smoothing=true;
    addChild( someImage );

  3. #3
    Junior Member
    Join Date
    Jan 2010
    Posts
    13
    I tried doing what you have mentioned. I have the image in library.
    But, I could not see an option like "Allow smoothing" on right clicking of the image.
    Can you please tell me where i am missing you?

  4. #4
    Junior Member
    Join Date
    Jan 2010
    Posts
    13
    Please find the attached options which are available to me,when i right click on the image (Options.JPG).
    Attached Images Attached Images

  5. #5
    Member
    Join Date
    Jan 2009
    Posts
    30
    Right click on the Bitmap in the Library and choose PROPERTIES. Then make sure "Allow Smoothing" is checked. The previous post skipped the Properties step.

  6. #6
    rabid_Delineator AttackRabbit's Avatar
    Join Date
    Dec 2003
    Location
    Orlando, Florida
    Posts
    481
    from the screenshot you took , it looks as if you right clicked on the stage object , which is probably a movieclip. the library is a seperate window.

  7. #7
    Junior Member
    Join Date
    Jan 2010
    Posts
    13
    Thank you "attackRabbit" and "davestarr" for your feedback.
    I have done the same thing as you told. But i could not find options like allow smoothing
    I am using flash player version10.
    I don't have much knowledge in flash. So please help me in making it smooth transition.
    Please find the attached picture showing the options.
    Attached Images Attached Images

  8. #8
    Senior Member
    Join Date
    Jul 2006
    Location
    San Jose, CA
    Posts
    334
    Those are the properties for the movieclip.

    Movieclip and graphics are different. Find the non-symbol image (denoted by a little green picture of a tree) and right click that.
    I (Love | Hate) Flash.
    ----
    Save a version back so others may help you!

  9. #9
    Junior Member
    Join Date
    Jan 2010
    Posts
    13

    resolved

    Thank you all of you for your support!!.
    Yes, now i have enabled the option of allow smoothing, and it is looking good

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