jubishop / Facebook-for-Adobe-AIR

Facebook for Adobe AIR

This URL has Read+Write access

jubishop (author)
Tue May 19 13:34:46 -0700 2009
commit  fcb3f5a824f26967188348017c5a76be6457df62
tree    0996f639f0dd80d14df0d15e0f0cfdd03c1a55b8
parent  d852606bdde3549679b0c46da3f6c45c303c8ec0
Facebook-for-Adobe-AIR / ApplicationBase.as
100644 53 lines (42 sloc) 1.574 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
Copyright Facebook Inc.
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
 
http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package {
  import fb.util.FlexUtil;
  import fb.util.Output;
 
  import flash.events.Event;
  import flash.events.KeyboardEvent;
  import flash.ui.Keyboard;
 
  import mx.core.WindowedApplication;
 
  public class ApplicationBase extends WindowedApplication {
    // Our app id
    public static const AppID:Number = 75647677556;
 
    public function ApplicationBase() {
      layout = "absolute";
      showGripper = showStatusBar = false;
      addEventListener(Event.ADDED, added);
      addEventListener(Event.ADDED_TO_STAGE, addedToStage);
    }
 
    private function addedToStage(event:Event):void {
      stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDown);
    }
 
    private function added(event:Event):void {
      if (event.target == this) return;
      FlexUtil.simplify(event.target);
    }
 
    // Keybord shortcut to dump data
    private function keyDown(event:KeyboardEvent):void {
      if (event.commandKey && event.keyCode == Keyboard.D)
        Output.logDump();
    }
  }
}