|
|
document.canSaveAVersion()
AvailabilityFlash
CS3 Professional.
Usagedocument.canSaveAVersion()
ReturnsA Boolean
value of true if a version of the file can be saved
to the Version Cue server; false otherwise.
DescriptionMethod;
determines whether a version of the specified document can be saved
to the Version Cue server.
ExampleThe
following example tests whether document.saveAVersion() can
be used. If so, it calls the method.
if(fl.getDocumentDOM().canSaveAVersion()){
fl.getDocumentDOM().saveAVersion;
}
|