LarryR Posted September 2, 2006 Report Share Posted September 2, 2006 Is there a way shortkeys or a macro can generate text with color, size, or font parameters? Thanks, Larry Quote Link to comment Share on other sites More sharing options...
kevin Posted September 3, 2006 Report Share Posted September 3, 2006 Not directly. How would you type that from your keyboard? Each program has its own 'binary' format to support font, color, size, etc. Rather than adding the ability to read and write Word, Excel, Word Perfect, WordPad, etc. file formats, Macro Express can automate the keystrokes necessary to select a format. If you are writing a macro in Word, then you can click something like Alt-f (for the Format menu), f (for the font menu), c (for the color dialog), etc. (These are probably not the exact keystrokes.) Quote Link to comment Share on other sites More sharing options...
LarryR Posted September 3, 2006 Author Report Share Posted September 3, 2006 How would you type that from your keyboard? I was thinking of copying and pasting from text that is already formatted. Or perhaps there is a way to include formatting characters/text within a macro. Such as in html <B> <i> <u> , <font color="#000080"> etc. I am not at all familair with macro coding. Thanks, Larry Quote Link to comment Share on other sites More sharing options...
jason Posted September 8, 2006 Report Share Posted September 8, 2006 When scripting the macro, you will need to use the Control Down, Control Up, Alt Down, Alt Up etc... They can be found in the Text Type command, or individually in the Keyboard Category of the Commands list. I created the below code for MSWord: // Bold Control Key Down Text Type: b Control Key Up Text Type: the brown cow // Bold & Italics Control Key Down Text Type: i Control Key Up Text Type: jumped over the moon // Disable text formatting Control Key Down Text Type: ib Control Key Up Quote Link to comment Share on other sites More sharing options...
LarryR Posted September 11, 2006 Author Report Share Posted September 11, 2006 Jason, Thanks for the idea. I will give this a try when I get a chance. Larry Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.