mwh71057
2009-04-03 02:44:35 UTC
I want to pause a QT movie with the space bar, one click stops it, one click
starts it. The script below only works while bar is being pressed. - Help!
on enterFrame me
sprite (1).movieRate = 1
if _key.keyPressed(49) then
if sprite (1).movieRate = 0 then
sprite (1).movieRate = 1
else
if sprite (1).movieRate = 1 then
sprite (1).movieRate = 0
end if
end if
end if
end
Second question:
If projector is made to a specific size ie 1024X768, is ther a way that the
projector can shrink to a smaller size if played on a monitor of 800X600?
starts it. The script below only works while bar is being pressed. - Help!
on enterFrame me
sprite (1).movieRate = 1
if _key.keyPressed(49) then
if sprite (1).movieRate = 0 then
sprite (1).movieRate = 1
else
if sprite (1).movieRate = 1 then
sprite (1).movieRate = 0
end if
end if
end if
end
Second question:
If projector is made to a specific size ie 1024X768, is ther a way that the
projector can shrink to a smaller size if played on a monitor of 800X600?