Toggle Laser output

MrBeam

Member
Hi I am currently using the following script to disable laser output on a key to Pangoscript. The key is generated from one of the buttons on my mouse.

I am wondering if there is a simpler way/command to do this, something like LaserEnableToggle?


Perhaps this is a safety issue that I saw in another post on TTL?

Chromatic



StoreZoneSelection

SelectZoneName "Left" // enter Zone name
SelectZoneName "Centre" // enter Zone name
SelectZoneName "Right" // enter Zone name
SelectZoneName "Wide" // enter Zone name
SelectZoneName "Wide-Hot" // enter Zone name
SelectZoneName "Left-Hot" // enter Zone name
SelectZoneName "Centre-Hot" // enter Zone name
SelectZoneName "Right-Hot" // enter Zone name
//etc. for zones/heads


MuteSelectedZones TOGGLE // ON, OFF, TOGGLE

ReStoreZoneSelection
 
Can you please tell what exactly you want to do? There are commands EnableLaserOutput and DisableLaserOutput. There is command Blackout. Muting is possible, but this pretty specific way to disable laser output.

For mutin you can use objects, as example:

MainGraphics.Muted=1

or

zone[1].muted=1

In PangoScript edit at right there is treeview and item "how to stop". as example - StopAllNow. Some commands there outdated, we will review it soon.

Regards,
Alexey.
 
Back
Top