Adobe Extending Flash Professional CS5 Uživatelský manuál Strana 131

  • Stažení
  • Přidat do mých příruček
  • Tisk
  • Strana
    / 565
  • Tabulka s obsahem
  • KNIHY
  • Hodnocené. / 5. Na základě hodnocení zákazníků
Zobrazit stránku 130
109
EXTENDING FLASH PROFESSIONAL
Document object
Last updated 5/2/2011
Example
The following example displays the XML settings string for the current document:
fl.trace(fl.getDocumentDOM().getMobileSettings());
//traces a string like the following"<? xml version="1.0" encoding="UTF-16" standalone="no"
?><mobileSettings> <contentType id="standalonePlayer" name="Standalone Player"/>
<testDevices> <testDevice id="1170" name="Generic Phone" selected="yes"/> </testDevices>
<outputMsgFiltering info="no" trace="yes" warning="yes"/> <testWindowState height="496"
splitterClosed="No" splitterXPos="400" width="907"/> </mobileSettings>"
See also
document.setMobileSettings()
document.getPlayerVersion()
Availability
Flash CS3 Professional.
Usage
document.getPlayerVersion()
Parameters
None.
Returns
A string that represents the Flash Player version specified by using document.setPlayerVersion(). If no value has
been set, returns the value specified in the Publish Settings dialog box.
Description
Method; returns a string that represents the targeted player version for the specified document. For a list of values that
this method can return, see
document.setPlayerVersion().
To determine which version of ActionScript is being targeted in the specified file, use document.asVersion.
Example
The following example illustrates targeting specified player versions for the current document and then retrieving
those values:
fl.getDocumentDOM().setPlayerVersion("6");
var version = fl.getDocumentDOM().getPlayerVersion();
fl.trace(version) // displays "6"
fl.getDocumentDOM().setPlayerVersion("FlashPlayer10");
var version = fl.getDocumentDOM().getPlayerVersion();
fl.trace(version) // displays ""FlashPlayer10""
See also
document.setPlayerVersion()
Zobrazit stránku 130
1 2 ... 126 127 128 129 130 131 132 133 134 135 136 ... 564 565

Komentáře k této Příručce

Žádné komentáře