Adobe Extending Flash Professional CS5 Manuale Utente Pagina 256

  • Scaricare
  • Aggiungi ai miei manuali
  • Stampa
  • Pagina
    / 565
  • Indice
  • SEGNALIBRI
  • Valutato. / 5. Basato su recensioni clienti
Vedere la pagina 255
234
EXTENDING FLASH PROFESSIONAL
flash object (fl)
Last updated 5/2/2011
Parameters
instanceName A string that specifies the instance name of an item in the specified document.
document The Document object in which to search for the specified item.
Returns
An array of generic objects. Use the .obj property of each item in the array to get the object. The object has the
following properties:
keyframe, layer, timeline, and parent. You can use these properties to access the hierarchy
of the object. For more information on these properties and how to access them, see
fl.findObjectInDocByType().
You can also access methods and properties for the layer and timeline values; they are equivalent to the Layer object
and the Timeline object, respectively.
Description
Method; exposes elements in a document with instance names that match the specified text.
Note: In some cases, this method works only when run as a command from within a FLA file, not when you are currently
viewing or editing the JSFL file.
Example
The following example searches the current document for elements named "instance01" .
var nameToSearchFor = "instance01";
var doc = fl.getDocumentDOM();
var results = fl.findObjectInDocByName(nameToSearchFor, doc);
if (results.length > 0) {
alert("success, found " + results.length + " objects");
}
else {
alert("failed, no objects named " + nameToSearchFor + " found");
}
See also
fl.findObjectInDocByType()
fl.findObjectInDocByType()
Availability
Flash CS3 Professional.
Usage
fl.findObjectInDocByType(elementType, document)
Parameters
elementType A string that represents the type of element to search for. For acceptable values, see
element.elementType.
document The Document object in which to search for the specified item.
Vedere la pagina 255
1 2 ... 251 252 253 254 255 256 257 258 259 260 261 ... 564 565

Commenti su questo manuale

Nessun commento