5f7c918434
- modifiche per ToolTrace e ingombro tavola2.
28 lines
702 B
Lua
28 lines
702 B
Lua
-- 2025/03/20
|
|
-- Machining Exit for Saomad-Just3500 machine
|
|
|
|
-- Intestazioni
|
|
require( 'EgtBase')
|
|
_ENV = EgtProtectGlobal()
|
|
EgtEnableDebug( false)
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- *** Uscita da Lavorazioni ***
|
|
|
|
-- Disabilito segnalazione modifica progetto
|
|
local bEnMod = EgtGetEnableModified()
|
|
EgtDisableModified()
|
|
|
|
-- Visualizzo gruppi che potrebbero essere stati nascosti
|
|
local vAuxId = { EgtGetFirstNameInGroup( GDB_ID.ROOT, 'Area*'), EgtGetFirstNameInGroup( GDB_ID.ROOT, 'Aux')}
|
|
EgtSetStatus( vAuxId, GDB_ST.ON)
|
|
|
|
EgtZoom( SCE_ZM.ALL, false)
|
|
|
|
-- Ripristino segnalazione modifica progetto
|
|
if bEnMod then
|
|
EgtEnableModified()
|
|
end
|
|
|
|
MACH.ERR = 0
|