Livecode Wiki
Register
Advertisement

The code editor is one of the most important component of LiveCode, it permits you to add code handlers to any object in your program. When any messages are sent to the object, if the name matches a handler, it is executed.

Code editor

Here is the shortcuts of code editor:

  • Apply: CTRL + Return
  • Save: CTRL + S
  • Close: CTRL + W
  • Print: CTRL + P
  • Undo: CTRL + Z
  • Redo: CTRL + SHIFT + Z
  • Cut: CTRL + X
  • Copy: CTRL + C
  • Paste: CTRL + P
  • Comment: CTRL + -
  • Uncomment: CTRL + _
  • Find: CTRL + F
  • Find & Replace: CTRL + SHIFT + F
  • Find selection: CTRL + ALT + F
  • Go to line number : CTRL + L
  • Run: F5
  • Stop: SHIFT + F5

The code editor is a powerful editor, it list all functions and handlers on the list on the left.

The Find & Replace functions are amazing, discover more here: Find & Replace

On top of the editor there is a green arrow with a option menu. You can select any function or handler from the list and execute just it pressing the green arrow.

Top left there is a clock icon, press it to search and open recent folders.

Every time you press tab on your keyboard, it initiates code indentation. Pressing NumLoc return will close the current folder.

It automatic color the code.

If you select documentation tab from the bottom tab panel, it automatically show you the documentation of the word where the caret of the editor is. Check the "Full Documentation" check box in the bottom of the window to obtain a full description.

Advertisement