Matthias Kannengiesser
Erfahrenes Mitglied
Hi Folks,
Wer von Euch genauer wissen will, was für Neuerungen sich in ActionScript breit gemacht haben, sollte es mal mit folgenden Codezeilen versuchen:
Ausgabe:
oder
Ausgabe:
Hinweis:
Diese stammen noch aush Flash MX Zeiten und laufen noch einwandfrei.
Liebe Grüsse
Matze K.
Wer von Euch genauer wissen will, was für Neuerungen sich in ActionScript breit gemacht haben, sollte es mal mit folgenden Codezeilen versuchen:
PHP:
ASSetPropFlags(_global, null, 8, 1);
for (i in _global) {
trace(i);
for (j in eval(i).prototype) {
trace("\t\t" + j);
}
}
Ausgabe:
PHP:
XMLUI
CustomActions
MMSave
Cookie
TextSnapshot
setSelectColor
findText
hitTestTextNearPos
getSelectedText
getText
getSelected
setSelected
getCount
PrintJob
MovieClipLoader
URIError
toString
message
name
TypeError
toString
message
name
SyntaxError
toString
message
name
ReferenceError
toString
message
name
EvalError
toString
message
name
System
Accessibility
Video
Stage
TextFormat
TextField
Button
getDepth
enabled
useHandCursor
Key
Mouse
Selection
LoadVars
XML
namespaceURI
localName
prefix
previousSibling
parentNode
nodeValue
nodeType
nodeName
nextSibling
lastChild
firstChild
childNodes
attributes
getPrefixForNamespace
getNamespaceForPrefix
toString
hasChildNodes
appendChild
insertBefore
removeNode
cloneNode
addRequestHeader
getBytesTotal
getBytesLoaded
onData
onLoad
sendAndLoad
send
load
parseXML
createTextNode
createElement
XMLNode
namespaceURI
localName
prefix
previousSibling
parentNode
nodeValue
nodeType
nodeName
nextSibling
lastChild
firstChild
childNodes
attributes
getPrefixForNamespace
getNamespaceForPrefix
toString
hasChildNodes
appendChild
insertBefore
removeNode
cloneNode
Sound
Math
Array
String
Date
Boolean
Number
o
profile
clearInterval
setInterval
isFinite
isNaN
updateAfterEvent
trace
parseFloat
parseInt
unescape
escape
ASSetNative
ASSetPropFlags
AsSetupError
Error
toString
name
message
ContextMenu
ContextMenuItem
LocalConnection
SharedObject
Microphone
oder
PHP:
function allInfo(name) {
var ziel = eval(name);
var CR = "\n";
var sep = "--------------------";
ASSetPropFlags(ziel, null, 8, 1);
trace("info: " + name + CR + sep);
for (p in ziel) {
trace(p);
}
trace(sep + CR);
}
// Einzelne Objekte (Begutachten)
allInfo("_global");
allInfo("system");
allInfo("video.prototype");
allInfo("microphone.prototype");
allInfo("localConnection.prototype");
allInfo("netConnection.prototype");
allInfo("netStream.prototype");
Ausgabe:
PHP:
info: _global
--------------------
XMLUI
CustomActions
MMSave
Cookie
TextSnapshot
PrintJob
MovieClipLoader
URIError
TypeError
SyntaxError
ReferenceError
EvalError
System
Accessibility
Video
Stage
TextFormat
TextField
Button
Key
Mouse
Selection
LoadVars
XML
XMLNode
Sound
Math
Array
String
Date
Boolean
Number
o
profile
clearInterval
setInterval
isFinite
isNaN
updateAfterEvent
trace
parseFloat
parseInt
unescape
escape
ASSetNative
ASSetPropFlags
AsSetupError
Error
ContextMenu
ContextMenuItem
LocalConnection
SharedObject
Microphone
Camera
NetStream
NetConnection
Color
AsBroadcaster
XMLSocket
MovieClip
Infinity
NaN
Function
Object
FWEndCommand
MMEndCommand
FWJavascript
MMExecute
ASconstructor
ASnative
--------------------
info: system
--------------------
setClipboard
security
exactSettings
showSettings
Product
capabilities
__proto__
constructor
--------------------
info: video.prototype
--------------------
clear
attachVideo
__proto__
constructor
--------------------
info: microphone.prototype
--------------------
setUseEchoSuppression
setGain
setRate
setSilenceLevel
__proto__
constructor
--------------------
info: localConnection.prototype
--------------------
domain
close
send
connect
__proto__
constructor
--------------------
info: netConnection.prototype
--------------------
addHeader
call
close
connect
__proto__
constructor
--------------------
info: netStream.prototype
--------------------
setBufferTime
send
attachVideo
attachAudio
close
seek
pause
receiveVideo
receiveAudio
play
publish
__proto__
constructor
--------------------
Hinweis:
Diese stammen noch aush Flash MX Zeiten und laufen noch einwandfrei.
Liebe Grüsse
Matze K.