scorpionipx
scorpionipx

Reputation: 105

How can I use stage.scaleMode property in AS3 in class?

I only use classes. There is the "main" class of my app.

Code printscreen

Upvotes: 0

Views: 405

Answers (1)

Aaron Beall
Aaron Beall

Reputation: 52133

That's right, you just forgot to import the StageScaleMode class:

import flash.display.StageScaleMode;

Upvotes: 1

Related Questions