Just 2 handy macros:
Code: Select all
Macro BeepOn()
  RunProgram("net","start beep","")
EndMacro
Macro BeepOff()
  RunProgram("net","stop beep","")
EndMacro
Code: Select all
Macro BeepOn()
  RunProgram("net","start beep","")
EndMacro
Macro BeepOff()
  RunProgram("net","stop beep","")
EndMacro
Code: Select all
Procedure BeepOn()
  RunProgram("net","start beep","")
EndProcedure

No, can't be true, Procedure has another Jumpmark, Macro is replaced while compiling, so Macro = slower and faster, but has no local variables and you can do other things with it, what you can't when using Procedure.Flype wrote:Macro is faster but the executable is bigger.
Procedure is slower but the executable is smaller.
