wiederkehr / swf-console
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
Benji (author)
Fri Sep 12 03:37:36 -0700 2008
commit 683ed61ece599aff0caae45b6600b4ef4c90246f
tree 3065b38966388d3f957bddeeb956cd7f15726e81
parent 1678384c943f2b7207cc9843f023bf4ac38cb8e5
tree 3065b38966388d3f957bddeeb956cd7f15726e81
parent 1678384c943f2b7207cc9843f023bf4ac38cb8e5
| name | age | message | |
|---|---|---|---|
| |
.DS_Store | ||
| |
Console.fla | ||
| |
Console.swf | ||
| |
DocumentClass.as | ||
| |
LICENSE | ||
| |
README.markdown | ||
| |
console/ |
README.markdown
Background
The swf-console helps you to output information about an object. It displays a small textfield utility with basic functionalities. Scroll, drag & drop and resize to be exact. It delivers two API methods to output data. It is intended to be used when you haven't the native trace-window available (in-browser developement for example).
Installation
import the package
import console.Console;create the console
private var console:Console = new Console(this);add the console to the DisplayObjectContainer
this.addChild(console);call an api function in your code
console.analyze(this);or
console.print(this);display the console by pressing the space-bar
customize this interaction by changing the key-code at Console.as #249
Contributors
- Benjamin Wiederkehr, http://www.artillery.ch

