Event: Fixcatch(target)

Related Events: press, release, catch, drop, fixdrop, unfix
Related Actions: setfix, letfix, letcatch
See also: FKiSS, Events, Actions

fixcatch(target)

First defined in: FKiSS1
The fixcatch event is triggered when the user first begins to move a target which has a non-zero fix value.
Only one fixcatch event should exist for any target.

target

In FKiSS1 to FKiSS3, target may be an object number or cel.
In FKiSS4, target may be an object number, cel, or group.

Example:

;@ fixcatch("shirt.cel") ; When "shirt.cel" is first started to be dragged and has a non-zero fixed value...
;@   sound("yank.wav")   ; Play a sound.
;@ fixcatch(#5)          ; When object #5 is first started to be dragged and has a non-zero fixed value...
;@   sound("ding.wav")   ; Play a sound.
;@ fixcatch(!MyGroup)    ; When group !MyGroup is first started to be dragged and has a non-zero value...
;@   gosub(50)           ; Execute procedure 50.