Macro makes it easier to convert 3.94 to 4.00 - not in every instance, but in many.
Search/Replace/Rename an old command and set up a macro for the new name - For example, replace ClearScreen with oldClearScreen and then create a macro:
Code: Select all
Macro oldClearScreen(r,g,b)
ClearScreen(RGB(r,g,b))
EndMacro
Code: Select all
Macro eventGadgetID
EventGadget
EndMacro