Package | com.adobe.consulting.pst.vo |
Class | public class TBX |
Inheritance | TBX DataModule Object |
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
DataModule
class.
Related API Elements
Property | Defined By | ||
---|---|---|---|
activeEndDate : Date
Specifies the date when the data module was archived. | DataModule | ||
activeStartDate : Date
Specifies the date when the data module was activated. | DataModule | ||
comment : String
Specifies a comment associated with the last change or update to the data module. | DataModule | ||
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
dataDictionaryRef : String
Specifies the name of the data dictionary that this data module references. | DataModule | ||
desc : String
Gets the description for this data module. | DataModule | ||
dmType : int [read-only]
Specifies the type of this data module. | DataModule | ||
extendedProperties : Object
Specifies the extendedProperties map. | DataModule | ||
flashHtml : String
The Flash HTML or Flex Rich Text version of the content. | TBX | ||
hasVariables : Boolean [read-only]
Specifies whether the module has variables in its content. | DataModule | ||
id : String
Specifies the unique identifier for this data module. | DataModule | ||
lastChangeBy : String
Specifies the last user who completed a change. | DataModule | ||
lcat : Category
Specifies the subcategory for the data module. | DataModule | ||
lcatName : String [read-only]
Specifies the name of the category associated with this module. | DataModule | ||
name : String
Specifies the name of the data module. | DataModule | ||
plainText : String
Specifies the plain text version of the content. | TBX | ||
state : int
Specifies the state for the data module. | DataModule | ||
TBXXML : String
The TBXXML content is XML serialized as a String. | TBX | ||
ucat : Category
Specifies the main category for the data module. | DataModule | ||
ucatName : String [read-only]
Specifies the name of the subcategory for the module. | DataModule | ||
variableList : ArrayCollection
Specifies the list of Variable objects for each variable used by this module. | DataModule | ||
version : int
Specifies the version for this data module. | DataModule | ||
xhtml : String
The XFA XHTML version of the content. | TBX |
Method | Defined By | ||
---|---|---|---|
TBX()
Constructor. | TBX | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, weakRef:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener
receives notification of an event. | DataModule | ||
Dispatches an event into the event flow. | DataModule | ||
Checks whether the EventDispatcher object has any listeners registered for a specific type
of event. | DataModule | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Removes a listener from the EventDispatcher object. | DataModule | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
[override]
| TBX | ||
Returns the primitive value of the specified object. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type. | DataModule |
Constant | Defined By | ||
---|---|---|---|
BINDEVENT_FLASH_CHANGE : String = "bindFlashChange" [static]
Specifies a binding event dispatched when the Flash HTML content changes. | TBX | ||
BINDEVENT_PLAIN_CHANGE : String = "bindPlainChange" [static]
Specifies a binding event dispatched when the plain text content changes. | TBX | ||
BINDEVENT_TBXXML_CHANGE : String = "bindTbxxmlChange" [static]
Specifies a binding event dispatched when the TBXXML property changes. | TBX | ||
BINDEVENT_XHTML_CHANGE : String = "bindXhtmlChange" [static]
Specifies a binding event dispatched when the XHTML content changes. | TBX | ||
PROTECTED_VAR_POSTFIX : String = "unknown" [static]
Specifies a protected variable postfix. | TBX | ||
PROTECTED_VAR_PREFIX : String = "unknown" [static]
Specifies a protected variable prefix. | TBX | ||
UNPROTECTED_VARIABLE_POSTFIX : String = "unknown" [static]
Specifies an unprotected variable postfix. | TBX | ||
UNPROTECTED_VAR_PREFIX : String = "unknown" [static]
Specifies an unprotected variable prefix. | TBX |
flashHtml | property |
flashHtml:String
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The Flash HTML or Flex Rich Text version of the content. Note that this value contains multiple top-level entities such as <TEXTFORMAT> elements. This is the nature of Flex Rich Text and helps with concatenation.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange
event.
Implementation
public function get flashHtml():String
public function set flashHtml(value:String):void
plainText | property |
plainText:String
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies the plain text version of the content.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange
event.
Implementation
public function get plainText():String
public function set plainText(value:String):void
TBXXML | property |
TBXXML:String
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The TBXXML content is XML
serialized as a String
. It is a combination of xhtml
, flashHtml
and plainText
content for the module.
Note: Rather than reading or setting this property directly, we encourage using the xhtml
, flashHtml
and plainText
properties that get and set this property correctly.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange
event.
Implementation
public function get TBXXML():String
public function set TBXXML(value:String):void
xhtml | property |
xhtml:String
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
The XFA XHTML version of the content. Note that this value is never wrapped in a <body ...> node and may contain multiple top-level entities such as <p> elements. This allows text module values to be concatenated together easily.
This property can be used as the source for data binding. When this property is modified, it dispatches the propertyChange
event.
Implementation
public function get xhtml():String
public function set xhtml(value:String):void
TBX | () | Constructor |
public function TBX()
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Constructor.
Registers event listeners for changes in the id
, name
and desc
.
toString | () | method |
BINDEVENT_FLASH_CHANGE | Constant |
public static const BINDEVENT_FLASH_CHANGE:String = "bindFlashChange"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies a binding event dispatched when the Flash HTML content changes.
BINDEVENT_PLAIN_CHANGE | Constant |
public static const BINDEVENT_PLAIN_CHANGE:String = "bindPlainChange"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies a binding event dispatched when the plain text content changes.
BINDEVENT_TBXXML_CHANGE | Constant |
public static const BINDEVENT_TBXXML_CHANGE:String = "bindTbxxmlChange"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies a binding event dispatched when the TBXXML
property changes.
BINDEVENT_XHTML_CHANGE | Constant |
public static const BINDEVENT_XHTML_CHANGE:String = "bindXhtmlChange"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies a binding event dispatched when the XHTML content changes.
PROTECTED_VAR_POSTFIX | Constant |
public static const PROTECTED_VAR_POSTFIX:String = "unknown"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies a protected variable postfix.
PROTECTED_VAR_PREFIX | Constant |
public static const PROTECTED_VAR_PREFIX:String = "unknown"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies a protected variable prefix.
UNPROTECTED_VAR_PREFIX | Constant |
public static const UNPROTECTED_VAR_PREFIX:String = "unknown"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies an unprotected variable prefix.
UNPROTECTED_VARIABLE_POSTFIX | Constant |
public static const UNPROTECTED_VARIABLE_POSTFIX:String = "unknown"
Language Version: | ActionScript 3.0 |
Product Version: | Asset Composer Building Block 9.5 |
Runtime Versions: | AIR 1.0, Flash Player 9, Flash Player 10 |
Specifies an unprotected variable postfix.
Wed Nov 21 2018, 06:34 AM -08:00