quickTime.isPlaying
| Syntax |
quickTime.isPlaying ()
|
| Params |
None.
|
| Action |
Determines is a file is being played by the QuickTime Player window.
|
| Returns |
True if a file is being played, false otherwise.
|
| Examples |
quickTime.open ("Macintosh HD:Music:A song.mp3");quickTime.play ();quickTime.isPlaying () » true
quickTime.open ("Macintosh HD:An image.jpg");quickTime.play ();quickTime.isPlaying ()
|
| Notes |
Static images are displayed, not played -- see the second example above. This verb is Macintosh-only and new in Frontier 7.
|
| See Also |
quickTime.play
|