Speeding up conversions 3.94 - 4.00
Posted: Fri Mar 10, 2006 5:33 am
Haven't seen this posted else, if this is a duplicate, my apololgies.
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:
Sometimes, no need to search/rename:
This is proving pretty useful on a biggish old project right now.
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