谢谢各位大侠关心,我昨晚又试了试,第一种顺序调用小窗口闪烁,第二种不闪,但不知为什么?请大侠指教,谢谢了。
(1)
on smovie
global mywindow
set mywindow = window("mywindow")
set the rect of mywindow =rect(320,240,640,480)
set the filename of mywindow to "@..\"&"word.dir"
set the drawrect of mywindow =rect(0,0,319,239)
set the windowtype of mywindow to 1
set the visible of mywindow to true
end
(2)
on smovie
global mywindow
set mywindow = window("mywindow")
set the windowtype of mywindow to 1
set the rect of mywindow =rect(320,240,640,480)
set the filename of mywindow to "@..\"&"word.dir"
set the drawrect of mywindow =rect(0,0,319,239)
set the visible of mywindow to true
end