An array of alpha values for the corresponding colors in the colors array; valid values are 0–100. If the value is less than 0, Flash uses 0. If the value is greater than 100, Flash uses 100.
Gets or sets a value indicating whether the ellipsis character (...) appears at the right edge of the Label, denoting that the Label text extends beyond the specified length of the Label.
Determines whether the x axis extents will be automatcially calculated. If set to false you mustset them manually yourself. This can be useful if you have several charts and you wish them all to have the same extents
Determines whether the y axis extenst will be automatcially calculated. If set to false you mustset them manually yourself. This can be useful if you have several charts and you wish them all to have the same extents
somehow the expression (bitAND(b, c) | bitAND((~b), d)) didn't return coorect results on Mac for: b&c = a8a20450, ((~b)&d) = 0101c88b, (bitAND(b, c) | bitAND((~b), d)) = a8a20450 looks like the OR is not executed at all. let's try to trick the P-code compiler into working with us... Prayer beads are GO!
will bitXOR be the only one working...? Nope. XOR fails too if values with bit31 set are XORed. Note however that OR (and AND and XOR?!) works alright for the statement (msb31 << 1) | lsb even if the result of the left-shift operation has bit 31 set. So there might be an extra condition here (Guessmode turned on): Mac Flash fails (OR, AND and XOR) if either one of the input operands has bit31 set *and* both operands have one or more bits both set to 1. In other words: when both input bit-patterns 'overlap'. Stuff to munch on for the MM guys, I guess...
Allows users to select one option from a scrolling list of choices. This component can have an selectable text field at the top of the list that allows users to search the list
The context object the event is related to For tree drop events this is an object with the properties: dragTree - The tree which is the parent of the node being dragged dropTree - The tree which is the parent of the node being dropped on node - The node being dragged parentNode - The parent node wher the node is benig dropped index - The index position where the node will be inserted position - The requested position before, after, over copy - True if the node is being copied
CornerRadius is a value type used to describe the radius of a rectangle's corners (controlled independently). It contains four number structs each corresponding to a corner: TopLeft, TopRight, BottomLeft, BottomRight. The corner radii cannot be negative.
If target and property are set creates a listener in which all event types apply the handler's action to the target. If target,property and eventProperty are set creates a listener in which all event types pass the value of the event expression, eventProperty, to the final method in the statement, property, which is applied to the target. If all params are set creates a listener in which the event type named eventType passes the value of the event expression, eventProperty, to the final method in the statement, property, which is applied to the target.
current - Static read property in class xp.system.Cursor
Gets or sets a cursor symbol that represents the mouse cursor. The default is a null reference. Setting the Current property changes the cursor currently displayed.
current - Static write property in class xp.system.Cursor
DateFormatter Formats date for data binding In many cases dates are held as strings in raw data ina custom format to handle this DateFormatter uses two date format string, one to convert the display string to a Date object and a second to convert a Date object into raw data
The Delegate class creates a function wrapper to let you run a function in the context of the original object, rather than in the context of the second object, when you pass a function from one object to another.
An optional number indicating how many lines should be scrolled for each notch the user rolls the mouse wheel. A positive delta value indicates an upward scroll; a negative value indicates a downward scroll. Typical values are from 1 to 3; faster scrolling can produce larger values.
The DataSource object’s deltaPacket property should be bound to this property so that when DataSource.applyUpdates() is called, the binding will copy it across and the resolver will create the update packet.
The Dimension class encapsulates the width and height of a component (in integer precision) in a single object. The class is associated with certain properties of components. Normally the values of width and height are non-negative integers. The constructors that allow you to create a dimension do not prevent you from setting a negative value for these properties. If the value of width or height is negative, the behavior of some methods defined by other objects is undefined.
The EventDelegate class creates a DOM3 compliant wrapper to let you invoke an event handler in the context of the original object, rather than in the context of the second object with optional arguments
The EventHandler class provides support for dynamically generating event listeners whose methods execute a simple statement involving an incoming event object and a target object You don't generally deal directly with EventHandler instances. Instead, you use the EventHandler create methods to create an object that implements a listener interface. This listener object uses an EventHandler object behind the scenes to encapsulate information about the event, the object on which to perform an action when the event occurs, the action (method) to be performed, and any argument to the method. The simplest use of EventHandler is to install a listener that calls a method on the target object with no arguments. In the following example we create a listener that invokes the toFront method on an instance of Frame myButton.addEventListener(EventHandler.create(frame, "toFront")); When myButton is pressed, the statement frame.toFront() will be executed. One could get the same effect using the Delegate class The next simplest use of EventHandler is to extract a property value from the first argument of the method in the listener interface (typically an event object) and use it to set the value of a property in the target object. In the following example we create an EventListener that sets the nextFocusableComponent property of the target object to the value of the "source" property of the event. EventHandler.create(target, "nextFocusableComponent", "source") Probably the most common use of EventHandler is to extract a property value from the source of the event object and set this value as the value of a property of the target object. In the following example we create a listener that sets the "label" property of the target object to the value of the "text" property of the source (the value of the "source" property) of the event. EventHandler.createHandler(button, "label", "source.text") The event property may be be "qualified" with an arbitrary number of property prefixes delimited with the "." character. The "qualifying" names that appear before the "." characters are taken as the names of properties that should be applied, left-most first, to the event object. For example, the following listener EventHandler.createHandler(source, "a", "b.c.d") might be written as the following inner class (assuming all the properties had canonical getter methods and returned the appropriate types): //Equivalent code using an inner class instead of EventHandler. var actionListener = { source:this, handleEvent:function(e:Event) { source.setA(e.target.getB().getC().isD()); } }
FieldCompositionFormatter Formats data for display in data binding Format data for display by replacing elements in a format string with data from the current data item or row
Comments on points, First payment up front, and Last payment up front These entities affect the calculations as follows: Calculation of FV, payment amount, or number of payments is independent of these three Calculation of PV: The number of payments is reduced by 1 for each of the two 'up front' payments. Next, the PV is calculated and then reduced by the amount of the points and 1 payment amount for each of the 'up front' payments. Calculation of I: These amounts are deducted from the PV and the number of payments is reduced by 1 for each of the 'up front' payments. Next, the interest rate is calculated.
Constructs a new instance of the FormsSizer. Do not call-FormSizers are only intended to be instantiated at author time via placing on the stage. At run time the same functionality is avaible by setting the container minWidth and minHeight properties
Allows a user defined data object to be returned to the Forms owner. This method is invoked by the window just prior to its closing and triggering the DialogResult event. The return value of this function will be passed as the data property of the DialogResult event
Get the current focusManager.For compatibility with MM Framework This may return an instance of mx.managers.FocusManager or xp.system.FocusManager depending on whether internal FocusManagement is enabled or not.
Get the current focusManager.For compatibility with MM Framework This may return an instance of mx.managers.FocusManager or xp.system.FocusManager depending on whether internal FocusManagement is enabled or not.
Determines the minimum size of the container argument using this layout. The minimum size is the smallest size that, if used for the container's size, will ensure that all components are at least as large as their minimum size. This method cannot guarantee that all components will be their minimum size. For example, if component A and component B are each allocate half of the container's width and component A wants to be 10 pixels wide while component B wants to be 100 pixels wide, they cannot both be accommodated. Since in general components rather be larger than their minimum size instead of smaller, component B's request will be fulfilled. The minimum size of the container would be 200 pixels.
ICloneable A class implements the Cloneable interface to indicate to the Object.clone() method that it is legal for that method to make a field-for-field copy of instances of that class. Invoking Object's clone method on an instance that does not implement the Cloneable interface results in the exception CloneNotSupportedException being thrown. By convention, classes that implement this interface should override Object.clone (which is protected) with a public method. See Object.clone() for details on overriding this method. Note that this interface does not contain the clone method. Therefore, it is not possible to clone an object merely by virtue of the fact that it implements this interface. Even if the clone method is invoked reflectively, there is no guarantee that it will succeed.
icon - read,write property in class xp.controls.Label
The library symbol of the icon set to load
icon - read,write property in class xp.controls.TextInput
Gets or sets the Icon object to be displayed. The Icon maybe a single graphics object or a set of objects one of which will be displayed according to the iconIndex property. This property maybe be set using the library linkageId of the icon or using an Icon class object The default Icon is InputIconStates, a set containing "none,error,info,ask,warn,req,ok" images
icon - read,write property in class xp.controls.TreePanel
Create a standard field data binding-bind def specs everything but the target -- this is called from UIControl DONT CHANGE!!! assumes we are binding to the modelChanged event of the target and that we will access the event target.data
Inserts a column in this layout. All components to the right of the insertion point are moved right one column. The container will need to be laid out after this method returns. See setColumn.
Inserts a row in this layout. All components below the insertion point are moved down one row. The container will need to be laid out after this method returns. See setRow.
Lays out the container using a horizontal box model Iterate over child cmps, position cmp at the left of the remainig space and stretch vertically to fit
Lays out the container using a horizontal box model Iterate over child cmps, position cmp at the left of the remainig space and stretch vertically to fit
Lays out the container using a horizontal box model Iterate over child cmps, position cmp at the left of the remainig space and stretch vertically to fit
To lay out the specified container using this layout. This method reshapes the components in the specified target container in order to satisfy the constraints of all components.
User code should not have to call this method directly.