Hello Guest it is March 28, 2024, 02:59:49 PM

Author Topic: Laser Crosshair  (Read 13928 times)

0 Members and 1 Guest are viewing this topic.

Offline Tweakie.CNC

*
  • *
  •  9,196 9,196
  • Super Kitty
    • View Profile
Re: Laser Crosshair
« Reply #10 on: October 06, 2013, 06:48:04 AM »
This is the button script that I use to turn the cross-hair on / off from the same screen button (I am using Output #5 to switch the device)

If IsOutputActive(OUTPUT5) Then ‘Check to see if its on
DeActivateSignal(OUTPUT5) ‘Its on so turn it off
Else
ActivateSignal(OUTPUT5) ‘Its off so turn it on
End If

(If it's any help, further detals are here http://www.cooperman.talktalk.net/files/17.htm)

Tweakie.
PEACE
Re: Laser Crosshair
« Reply #11 on: October 06, 2013, 07:50:01 PM »
Thanks all worked out good.

Brooks