Sometimes I find that it is quicker and easier to do some things in Authorware by going down a side road. For instance, if I have a long Test expression on the screen, such as {Test(Condition, "Some text", "")}{Test(~Condition, "Some other text", "")}, usually the expression is far bigger than the area allotted to it. Most of the time, this means that the text either goes off the bottom of the screen or overlays something that makes it unreadable.
One solution to this problem is to resize or move the text area until you can see everything you need to see. But then you have to resize or move it back where it came from. What a pain! I have found that you can temporarily set the text to Scrolling and give it an opaque background just long enough to edit the Test text, then uncheck scrolling and change the Mode back to Transparent.
If you've ever worked with KO's or functions, you're probably aware of how tedious it can be to write something like
Repeat with X@"my really long icon title" to Linecount(text@"my really long icon title")
--etc.
end repeat
I finally realized that you could use a short icon title temporarily, then change the icon title after your code is in place. All the icon references will change to the longer icon title when the icon is renamed. So your code would start out more like:
Repeat with X@"me" to Linecount(text@"me")
--etc.
end repeat
Then it would change to the longer title after
you are finished typing your code.