“Script Format Helper” is a Revolution plugin that formats the selected text in your text editor and copies it to the clipboard as HTML, htmlText or a PNG image. Use it to quickly insert Revolution code snippets into web pages or word processing programs.
Version: 1.0
Documentation
The documentation is available at http://revolution.screenstepslive.com/spaces/revolution/manuals/plugins/chapters/1931.
Examples of HTML Snippets
Here is what some sample HTML output looks like without line numbers:
on mouseUp pMouseBtnNo if pMouseBtnNo is 1 then put "You colorized me!" into theMsg answer theMsg end if end mouseUp
Here is what some sample HTML output looks like with line numbers:
1on mouseUp pMouseBtnNo 2 if pMouseBtnNo is 1 then 3 put "You colorized me!" into theMsg 4 answer theMsg 5 end if 6end mouseUp