ActionScript® 3.0 Referenzhandbuch für die Adobe® Flash®-Plattform
Home  |  Liste der Pakete und Klassen ausblenden |  Pakete  |  Klassen  |  Neue Funktionen  |  Stichwortverzeichnis  |  Anhänge  |  Warum auf Englisch?
Filter: Daten werden vom Server abgerufen...
Daten werden vom Server abgerufen...
com.adobe.livecycle.content 

File  - AS3 ADEP Content

Paketcom.adobe.livecycle.content
Klassepublic class File
VererbungFile Inheritance EventDispatcher Inheritance Object
Implementiert IManaged

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

File enables efficient transportation of binary content to and from the Experiece Server. It never stores binary content inside it but has all metadata to store and retrieve binary content to/from server. It has capability to upload file from filesystem or byte array to server. It is Data Services managed class so that any content change is notified. It dispatches FileEvent.FILE_CONTENT_CHANGE_EVENT when content is modified on the Experience Server.



Öffentliche Eigenschaften
 EigenschaftDefiniert von
  baseURL : String
[statisch] The baseURL of Experience Server.
File
 Inheritedconstructor : Object
Ein Verweis auf das Klassenobjekt oder die Konstruktorfunktion für eine angegebene Objektinstanz.
Object
  contentStreamPath : String
TempPath when content is temporarily uploaded.
File
  contextRoot : String
[statisch] The context root of launchpad application.
File
  created : Date
Date when file is created.
File
  createdBy : String
The user ID of user who created file.
File
  extendedPropertyMap : Object
Additional key-value attributes whichare persisted along with file.
File
  fileName : String
The name of the file.
File
  id : String
The identifier of the file node.
File
  lastModified : Date
The last date the content was modified.
File
  lastModifiedBy : String
The user ID of user who last modified the file.
File
  mimeType : String
The MIME type of the content.
File
  securityManager : SecurityManager
[statisch] The User Manager (UM) SecurityManager instance.
File
  tempPath : String
The temporary path to store the file.
File
Geschützte Eigenschaften
 EigenschaftDefiniert von
  boundary : String
[schreibgeschützt] Boundary of multipart request used in multipart binary upload of content.
File
Öffentliche Methoden
 MethodeDefiniert von
  
constructor of File.
File
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registriert ein Ereignis-Listener-Objekt bei einem EventDispatcher-Objekt, sodass der Listener über ein Ereignis benachrichtigt wird.
EventDispatcher
  
Deletes the JCR node specified by this instance.
File
 Inherited
Sendet ein Ereignis in den Ereignisablauf.
EventDispatcher
  
download content of jcr node into ByteArray.
File
  
downloadContentToFileSystem(defaultFileName:String = null):void
Downloads content of the JCR node to filesytem.
File
  
Fill the current instance with metadata of jcr node.
File
 Inherited
Überprüft, ob das EventDispatcher-Objekt Listener für einen bestimmten Ereignistyp registriert hat.
EventDispatcher
 Inherited
Gibt an, ob für ein Objekt eine bestimmte Eigenschaft definiert wurde.
Object
 Inherited
Gibt an, ob eine Instanz der Object-Klasse in der Prototypkette des Objekts vorhanden ist, das als Parameter angegeben wurde.
Object
 Inherited
Gibt an, ob die angegebene Eigenschaft vorhanden ist und durchlaufen werden kann.
Object
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Entfernt einen Listener aus dem EventDispatcher-Objekt.
EventDispatcher
 Inherited
Legt die Verfügbarkeit einer dynamischen Eigenschaft für Schleifenoperationen fest.
Object
 Inherited
Gibt die Stringdarstellung dieses Objekts zurück, formatiert entsprechend den Konventionen des Gebietsschemas.
Object
 Inherited
Gibt das angegebene Objekt als String zurück.
Object
  
updateFromByteArray(fileData:ByteArray, mimeTypeStr:String = null):void
Updates content of jcr node specified by this instance from file on ByteArray.
File
  
Updates content of jcr node specified by this instance from file on filesystem.
File
  
uploadToPathFromByteArray(parentPath:String, fileData:ByteArray, mimeType:String, fileNameArg:String):void
Uploads file to location specified by parenPath on the Experience Server from a ByteArray value.
File
  
uploadToPathFromFileReference(parentPath:String, typeFilter:Array = null):void
Uploads file on filesystem at path specified by parentPath on the Experience Server.
File
  
uploadToTempFromByteArray(fileData:ByteArray, mimeType:String, fileNameArg:String = null):void
Uploads file to temporary location to the Experience Server from a ByteArray value.
File
  
Uploads file on filesystem to temporary location on the Experience Server.It uses FileReference to upload file to the Experience Server.
File
 Inherited
Gibt den Grundwert des angegebenen Objekts zurück.
Object
 Inherited
Überprüft, ob bei diesem EventDispatcher-Objekt oder bei einem seiner Vorgänger ein Ereignis-Listener für einen bestimmten Ereignistyp registriert ist.
EventDispatcher
Geschützte Methoden
 MethodeDefiniert von
  
Appends User Manager (UM) ticket to the URL.
File
Ereignisse
 Ereignis Übersicht Definiert von
 Inherited[broadcast event] Wird ausgelöst, wenn Flash Player oder eine AIR-Anwendung den Betriebssystemfokus erhält und aktiv wird.EventDispatcher
 Inherited[broadcast event] Wird ausgelöst, wenn Flash Player- oder die AIR-Anwendung den Fokus verliert und inaktiv wird.EventDispatcher
Öffentliche Konstanten
 KonstanteDefiniert von
  NT_FILE : String = "nt:file"
[statisch] constant representing nt:file
File
  TEMP_FOLDER_NAME : String = "/tmp/uploadFilesTempDir"
[statisch] The temporary path of folder where temp files will be uploaded.
File
Eigenschaftendetails

baseURL

Eigenschaft
public static var baseURL:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The baseURL of Experience Server. Set it once and File APIs use it to upload and download content from it.

boundary

Eigenschaft 
boundary:String  [schreibgeschützt]

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Boundary of multipart request used in multipart binary upload of content.



Implementierung
    protected function get boundary():String

contentStreamPath

Eigenschaft 
contentStreamPath:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

TempPath when content is temporarily uploaded. It is only populated when content is uploaded using uploadToTempFromFileReference,uploadToTempFromByteArray. path of the content.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get contentStreamPath():String
    public function set contentStreamPath(value:String):void

contextRoot

Eigenschaft 
public static var contextRoot:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The context root of launchpad application.

created

Eigenschaft 
created:Date

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Date when file is created.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get created():Date
    public function set created(value:Date):void

createdBy

Eigenschaft 
createdBy:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The user ID of user who created file.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get createdBy():String
    public function set createdBy(value:String):void

extendedPropertyMap

Eigenschaft 
extendedPropertyMap:Object

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Additional key-value attributes whichare persisted along with file. This value is applicable when the file is created using the RepositoryService or LiveCycleContentAssembler service.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get extendedPropertyMap():Object
    public function set extendedPropertyMap(value:Object):void

fileName

Eigenschaft 
fileName:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The name of the file.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get fileName():String
    public function set fileName(value:String):void

id

Eigenschaft 
id:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The identifier of the file node.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get id():String
    public function set id(value:String):void

lastModified

Eigenschaft 
lastModified:Date

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The last date the content was modified.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get lastModified():Date
    public function set lastModified(value:Date):void

lastModifiedBy

Eigenschaft 
lastModifiedBy:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The user ID of user who last modified the file.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get lastModifiedBy():String
    public function set lastModifiedBy(value:String):void

mimeType

Eigenschaft 
mimeType:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The MIME type of the content.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get mimeType():String
    public function set mimeType(value:String):void

securityManager

Eigenschaft 
public static var securityManager:SecurityManager

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The User Manager (UM) SecurityManager instance. Set it once and File APIs use it to retrieve ticket and credentials.

tempPath

Eigenschaft 
tempPath:String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The temporary path to store the file.

Diese Eigenschaft kann als Quelle für die Datenbindung verwendet werden. Beim Ändern dieser Eigenschaft wird das propertyChange -Ereignis ausgelöst.



Implementierung
    public function get tempPath():String
    public function set tempPath(value:String):void
Konstruktordetails

File

()Konstruktor
public function File()

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

constructor of File.

Methodendetails

appendSecurityTicket

()Methode
protected function appendSecurityTicket(url:String, ticket:com.adobe.livecycle.ria.security.api:ITicket):String

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Appends User Manager (UM) ticket to the URL.

Parameter

url:String — url string
 
ticket:com.adobe.livecycle.ria.security.api:ITicket — UM ticket

Rückgabewerte
String — ticket appended url

deleteFile

()Methode 
public function deleteFile():void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Deletes the JCR node specified by this instance. It dispatches FileEvent.FILE_DELETED_EVENT on completion of file upload.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_DELETED_EVENT
flash.events.Event.CANCEL
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS

downloadContentToByteArray

()Methode 
public function downloadContentToByteArray():void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

download content of jcr node into ByteArray. It dispatches FileEvent.FILE_DOWNLOAD_COMPLETED_EVENT on completion of file download.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_DOWNLOAD_COMPLETED_EVENT
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS

downloadContentToFileSystem

()Methode 
public function downloadContentToFileSystem(defaultFileName:String = null):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Downloads content of the JCR node to filesytem. It uses FileReference to download content. It dispatches FileEvent.FILE_DOWNLOAD_COMPLETED_EVENT on completion of file download.

Parameter

defaultFileName:String (default = null) — default file name by which file is saved on file system. It appears in save dialog box.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_DOWNLOAD_COMPLETED_EVENT
flash.events.Event.CANCEL
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR

fillMetaData

()Methode 
public function fillMetaData():void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Fill the current instance with metadata of jcr node. It makes a call to the Experience Server and retrieves all properties and fills in current instance. It dispatches FileEvent.FILE_METADATA_FILLED_EVENT when metadata is populated in instance.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_METADATA_FILLED_EVENT
flash.events.Event.CANCEL
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS

updateFromByteArray

()Methode 
public function updateFromByteArray(fileData:ByteArray, mimeTypeStr:String = null):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Updates content of jcr node specified by this instance from file on ByteArray. It uses FileReference to upload file from filesystem. It doesn't update content of temporary file i.e. File object created from uploadToTempFromFileReference and uploadToTempFromByteArray. It doesn't update content on File instance which is retrieved from repository. To update such instance upload content via uploadToTempFromFileReference or uploadToTempFromByteArray API and update it via LiveCycleContentAssembler or RepositoryService. It dispatches FileEvent.FILE_UPLOAD_COMPLETED_EVENT on completion of file upload.

Parameter

fileData:ByteArray — the data which will be updated
 
mimeTypeStr:String (default = null) — the new mimeType of the data.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_UPLOAD_COMPLETED_EVENT
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS

updateFromFileReference

()Methode 
public function updateFromFileReference(typeFilter:Array = null):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Updates content of jcr node specified by this instance from file on filesystem. It uses FileReference to upload file from filesystem. It doesn't update content of temporary file i.e. File object created from uploadToTempFromFileReference and uploadToTempFromByteArray. It dispatches FileEvent.FILE_UPLOAD_COMPLETED_EVENT on completion of file upload. It doesn't update content on File instance which is retrieved from repository. To update such instance upload content via uploadToTempFromFileReference or uploadToTempFromByteArray API and update it using the LiveCycleContentAssembler or RepositoryService service.

Parameter

typeFilter:Array (default = null) — file type filter to filter files in File select dialog.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_UPLOAD_COMPLETED_EVENT
flash.events.Event.CANCEL
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS

uploadToPathFromByteArray

()Methode 
public function uploadToPathFromByteArray(parentPath:String, fileData:ByteArray, mimeType:String, fileNameArg:String):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Uploads file to location specified by parenPath on the Experience Server from a ByteArray value. It creates nt:file node at temporary location. The current instance will be consumed by lc-content RepositoryService to move content from temp location to actual location. It dispatches FileEvent.FILE_UPLOAD_COMPLETED_EVENT on completion of file upload.

Parameter

parentPath:String — path upto parent folder location.
 
fileData:ByteArray — content of file.
 
mimeType:String — mimeType of file.
 
fileNameArg:String — name of the file node that will be created on server.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_UPLOAD_COMPLETED_EVENT
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS

uploadToPathFromFileReference

()Methode 
public function uploadToPathFromFileReference(parentPath:String, typeFilter:Array = null):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Uploads file on filesystem at path specified by parentPath on the Experience Server. It uses FileReference to upload file to the Experience Server. It dispatches FileEvent.FILE_UPLOAD_COMPLETED_EVENT event when the file upload completes.

Parameter

parentPath:String — path upto parent folder location.
 
typeFilter:Array (default = null) — file type filter to filter files in File select dialog.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_UPLOAD_COMPLETED_EVENT
flash.events.Event.CANCEL
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS

uploadToTempFromByteArray

()Methode 
public function uploadToTempFromByteArray(fileData:ByteArray, mimeType:String, fileNameArg:String = null):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Uploads file to temporary location to the Experience Server from a ByteArray value. It creates nt:file node at temporary location. The current instance will be consumed by lc-content RepositoryService to move content from temp location to actual location. It dispatches FileEvent.FILE_UPLOAD_COMPLETED_EVENT on completion of file upload.

Parameter

fileData:ByteArray — content of file.
 
mimeType:String — mimeType of file.
 
fileNameArg:String (default = null) — name of the file node that will be created on server.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_UPLOAD_COMPLETED_EVENT
flash.events.Event.CANCEL
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR

uploadToTempFromFileReference

()Methode 
public function uploadToTempFromFileReference(typeFilter:Array = null):void

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

Uploads file on filesystem to temporary location on the Experience Server.It uses FileReference to upload file to the Experience Server. It creates nt:file node at temporary location. The current instance will be consumed by lc-content RepositoryService to move content from temp location to actual location. It dispatches FileEvent.FILE_UPLOAD_COMPLETED_EVENT on completion of file upload.

Parameter

typeFilter:Array (default = null) — file type filter to filter files in File select dialog.

Verwandte API-Elemente

com.adobe.livecycle.content.FileEvent.FILE_UPLOAD_COMPLETED_EVENT
flash.events.Event.CANCEL
flash.events.HTTPStatusEvent.HTTP_STATUS
flash.events.IOErrorEvent.IO_ERROR
flash.events.Event.OPEN
flash.events.SecurityErrorEvent.SECURITY_ERROR
flash.events.ProgressEvent.PROGRESS
Konstantendetails

NT_FILE

Konstante
public static const NT_FILE:String = "nt:file"

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

constant representing nt:file

TEMP_FOLDER_NAME

Konstante 
public static const TEMP_FOLDER_NAME:String = "/tmp/uploadFilesTempDir"

Sprachversion: ActionScript 3.0
Produktversion: Adobe Digital Enterprise Platform Experience Services - Content 10
Laufzeitversionen: AIR 2.6, Flash Player 10.2

The temporary path of folder where temp files will be uploaded. The default path is /content/uploadFilesTempDir.





[ X ]Warum auf Englisch?
Inhalt des ActionScript 3.0-Referenzhandbuchs wird in englischer Sprache angezeigt

Nicht alle Teile des ActionScript 3.0-Referenzhandbuchs wurden in alle Sprachen übersetzt. Wenn der Text zu einem Sprachelement nicht übersetzt wurde, wird er auf Englisch angezeigt. Zum Beispiel wurden die Informationen zur ga.controls.HelpBox-Klasse nicht in andere Sprachen übersetzt. In der deutschen Version des Referenzhandbuchs erscheint der Abschnitt zur ga.controls.HelpBox-Klasse deshalb auf Englisch.