Skip to content

Instantly share code, notes, and snippets.

@Maruskakonst
Created September 25, 2015 23:34
Show Gist options
  • Save Maruskakonst/147f31b4727e113458af to your computer and use it in GitHub Desktop.
Save Maruskakonst/147f31b4727e113458af to your computer and use it in GitHub Desktop.
Dropbox - Dropbox-klient
https://www.dropbox.com/m/download_desktop?token=AACsZFn-wfl6pg0sf9fMRnrEPec-WzuXlsRhEFvt1V4DEIiocsx6dqucByNtLxOU_e_LuuePejtAfB9o5GUmwEc1#
@Maruskakonst
Copy link
Author

package
{
import flash.display.Sprite;
import flash.display.StageAlign;
import flash.system.Security;
import flash.text.TextField;
import flash.text.TextFormat;

[SWF(backgroundColor = 0xECECEC, width = 320, height = 480, frameRate = 16)]
public class SecuritySandbox extends Sprite
{
public var textField:TextField;

public function SecuritySandbox() 
{
  stage.align = StageAlign.TOP_LEFT;

  textField = new TextField();
  textField.width = 300;
  textField.height = 200;
  textField.defaultTextFormat = new TextFormat("_sans", 24);
  addChild(textField);

  textField.text = Security.sandboxType;
}

}
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment