home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Graphics
/
TimeMachine
/
timemachine
/
rexx
/
TM_LayerPosition.ifx
< prev
next >
Wrap
Text File
|
1999-08-08
|
442b
|
27 lines
/************
TM_LayerPosition.ifx for Time Machine
************/
options results
activelayer
parse var result LayerNum
if rc ~=0 then
do
requestnotify "Not possible on the background!"
exit
end
if LayerNum=0 then
do
requestnotify "Not possible on the background!"
exit
end
layeroffset
parse var result offsetx offsety
call setclip('TM_Layer'LayerNum'PositionX',offsetx)
call setclip('TM_Layer'LayerNum'PositionY',offsety)
exit