On Fri, Mar 19, 2010 at 3:44 AM, Binh Hoang <[email protected]> wrote:
> I would first like to know if anyone out there has any other gui for emc2
> other then the ones that come with a normal load. I seem to be having
> problems with Tkemc . I would like to know how to change the file for Tkemc
> interface then be able to use it. Do I have to recompile this file when I am
> done changing it? Or is it like the ini file where I can change it and then
> run it? Any information about Gui's would be great I am just starting out
> using EMC2. Thank you and hope to hear from you experts soon.

EMC is implemented in several languages. Some of the time-critical
routines are written in C and compiled, but a lot of user interface is
written in Python and Tcl/Tk which are interpreted languages, using
scripts that you can read and edit. The changed scripts are immediately
available for execution (of course you may need to restart the interpreter
if you're already running the old version).

Check it out for yourself: find and read file tcl/tkemc.tcl. The graphical
widgets are positioned using the Tcl command 'pack', e.g.:

pack .runmark.buttons.ok .runmark.buttons.cancel -side left -expand 1

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Emc-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/emc-users

Reply via email to