Jump to content
Search Community

Search the Community

Showing results for tags 'autofitareabitmapdata'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 1 result

  1. hi I'm trying to take a screenshot of the stage which is made up of various Movieclips blending and filling the entire stage using autofitarea. the problem is none of the movieclips in the autofitarea show up in the screenshot - and if i do select a movieclip to export it is the original size not the scaled size var area:AutoFitArea = new AutoFitArea(this,0,0,stage.stageWidth,stage.stageHeight); area.attach(mc, {scaleMode:ScaleMode.PROPORTIONAL_OUTSIDE, crop:true}); area.attach(mc2, {scaleMode:ScaleMode.PROPORTIONAL_OUTSIDE, crop:true}); area.attach(mc3, {scaleMode:ScaleMode.PROPORTIONAL_OUTSIDE, crop:true}); function SaveScreenshot(evt:MouseEvent):void{ var bitmapData:BitmapData=new BitmapData(area.width, area.height); bitmapData.draw(stage); var jpgEncoder:JPGEncoder = new JPGEncoder(100); var byteArray:ByteArray = jpgEncoder.encode(bitmapData); byteArray = jpgEncoder.encode(bitmapData); var fileReference:FileReference=new FileReference(); fileReference.save(byteArray, "scrShot1.jpg"); } // neither mc, mc2 or mc3 show in the exported jpg, while everything else on the stage does really hope someone can help me with this Thanks T
×
×
  • Create New...