Hello Guest it is April 16, 2024, 02:32:30 PM

Author Topic: Gcode Button in flash  (Read 8019 times)

0 Members and 1 Guest are viewing this topic.

Gcode Button in flash
« on: August 14, 2008, 08:08:00 AM »
Hello…
 ???
I did a screen in screen4 where it had a button set to perform a function Gcode, so when I press the button he performed the function immediately.
But my whole project is being done in flash.
How do I get this same function in Gcode button in a flash?

Offline zealous

*
  •  489 489
  • HI!
    • View Profile
    • Artsoft Solutions
Re: Gcode Button in flash
« Reply #1 on: September 08, 2008, 03:08:49 PM »
Hi,

MCodes:
Code: [Select]
fscommand("Code", "M1")
Gcodes:
Code: [Select]
fscommand("Code", 'G0 X 1.0 Y 3.5 Z 2.3')
or

Code: [Select]
myGcode = 'G0 X 1.0 Y 3.5 Z 2.3'

fscommand("Code", myGcode);

Thanks,
Jason Blake

« Last Edit: August 12, 2010, 05:21:07 AM by zealous »