Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Reference
Accessing AIR APIs from JavaScript | 59 For example, this reduces: var desktop = window.runtime.flash.filesystem.File. desktopDi ...
60 | Chapter 3: Working with JavaScript and HTML Within AIR TIP This technique works only with ActionScript 3 libraries. Let’s l ...
Accessing AIR APIs from JavaScript | 61 Using this technique allows you to leverage third party ActionScript APIs from within AI ...
62 CHAPTER 4 CHAPTER 4 AIR Mini-Cookbook This chapter describes solutions to common tasks when developing AIR applications. The ...
Application Chrome | 63 Discussion While Adobe AIR allows developers to completely define and customize the application’s window ...
64 | Chapter 4: AIR Mini-Cookbook systemChrome="none" width="206" height="206"> custom.html </rootContent> </applica ...
Application Chrome | 65 title { position: absolute; font-weight: bold; color: #FFFFFF; } function doClose( ) { window.htmlCon ...
66 | Chapter 4: AIR Mini-Cookbook Windowing Creating a New Window Problem You need to display an additional widow into which add ...
Windowing | 67 Basic Window function doLoad( ) { document.getElementById( "btnLogin" ). addEventListener( "click", doLogin ...
68 | Chapter 4: AIR Mini-Cookbook <td><input name="password" /></td> </tr> <tr> <td colspan="2" ...
Windowing | 69 var options = new air.NativeWindowInitOptions( ); var login = null; options.minimizable = false; options.maximiza ...
70 | Chapter 4: AIR Mini-Cookbook Anative window initially has no content outside of the run- time. Unlike the JavaScript window ...
Windowing | 71 TIP It is likely that knowledge of the Stage class and the dis- play list will be abstracted into more useful hig ...
72 | Chapter 4: AIR Mini-Cookbook control = new window.runtime.flash.html.HTMLControl(); control.width = win.stage.stageWidth; c ...
Windowing | 73 <tr> <td colspan="2" align="right"> <input type="button" value="Sign In" /> </td> </tr ...
74 | Chapter 4: AIR Mini-Cookbook To create a full-screen window without any chrome, the NativeWindowInitOptions.systemChrome pr ...
Windowing | 75 TIP If you find yourself confronted with an application that doesn’t shut down, but whose visible windows are all ...
76 | Chapter 4: AIR Mini-Cookbook win.stage.scaleMode = window.runtime.flash.display. StageScaleMode.NO_SCALE; win.stage.align = ...
File API | 77 var file = air.File.applicationStorageDirectory.resolve( "myFile.txt" ); The call toFile.resolve( )creates a refer ...
78 | Chapter 4: AIR Mini-Cookbook that which the operating system is using, which is available on theFile class asFile.systemCha ...
«
1
2
3
4
5
6
7
8
9
»
Free download pdf