movie - Create and manipulate movie widgets
SYNOPSIS
movie widgetPathName ?options? ?args?
TK STANDARD OPTIONS
-width -height -cursor -background
WIDGET-SPECIFIC OPTIONS
-file
?movieFileName? : file name
string (*.avi or *.mov)
-volume ?value?
: audio volume (0 to 100)
DESCRIPTION
The
movie command creates a movie window and load xanim with movieFileName
gived
by -file option.
WIDGET COMMANDS
widgetPathName playplay start animationwidgetPathName stopstop animationwidgetPathName togglestart or stop animationwidgetPathName muteaudio volume on or offwidgetPathName volume ?up/down?volume increasing or decreasingwidgetPathName controliconifyiconify xanim control windowwidgetPathName configure ?option? ?arg? ... ?option? ?args?configure one or more options
BINDINGS
No bindings by default.
use
: bind widgetpathName <?event?>
{?command
line?}
EXAMPLE
#!/usr/bin/wish -f
package require XanimTcl
movie .m -file your_file.avi -volume 80 -width 160 -height 120 -scale 3 -cursor target
pack .m -expand yes -fill both
(replace your_file.avi by a movie file)