5.0
Table Of Contents
- Avid iNEWS User's Guide
- Contents
- Using This Guide
- iNEWS System
- Getting Started
- The iNEWS Workspace
- Toolbars
- Working with Queues
- Changing Forms for Viewing Queues
- Changing the Width of a Queue Form Field
- Easy Locking a Queue
- Key Locking a Queue
- Moving a Queue
- Opening a Queue
- Refreshing a Queue
- Searching for Text in a Queue
- Specifying a Destination Queue
- Unlocking a Queue
- Using Abstract Display in Queue
- Using Currency Total
- Viewing Queue Properties
- Working with Wires
- Stories - Creation and Modification
- Moving Stories
- Stories - Protection
- iNEWS Projects
- Scripted Stories
- Displaying a Production Cue
- Enabling Autoscript
- Adding a Production Cue to a Story
- Adding a CG Production Cue
- Adding a Video Production Cue
- Adding a Still Store Production Cue
- Moving a Production Cue
- Deleting a Production Cue
- Using Script Templates
- Using CG Title Entry
- Primary Machine Control Event Placeholder
- Using MOS Placeholders
- Unscripting a Story
- Production Tasks
- Producer Basics
- Endorsing a Story
- Inserting a Break Line
- Ordering a Queue
- Calculating Backtime from Out Time
- Displaying the Show Timing Clocks
- Establishing Broadcast Control in a Queue
- Loading a Rundown Queue into Broadcast Control
- Placing a Rundown Queue in Show Timing Mode
- Production Locking a Queue
- Setting Clock for Show Timing
- Setting Story Start Times in a Rundown Queue
- Synchronizing a Story
- Synchronizing the First Story
- Synchronizing a Rundown Queue During Broadcast
- Timing Story Text
- Timing a Show
- Floating a Story
- Tracking a Show
- Printing
- Messages and Mail
- Sessions and Preferences
- Macros
- Searching in iNEWS
- Local Databases
- Connecting to a Remote Service
- System Shortcuts
- Icons
- Glossary
- Index
Using the State Keys in Macros
174
If you create a macro longer than 80 characters, let the system wrap the cursor around to the next
line.
Using Plain Text in Macros
Besides using individual keys and key combinations in a macro definition, you can also have the
macro enter plain text. This could be text you include in stories often or text you enter in fields of
a dialog box in iNEWS. Example:
@{ctrl{f9}}~{space} Roll tape - Sound up full {space}{enter}
Whenever you include plain text in a macro, all spaces in the text are preserved. The case
(lowercase or uppercase) is preserved as well.
Dialog Wait Macros
Some macros might attempt to send keystrokes to dialogs before the dialog boxes are available,
but there is a way to prevent that behavior. In the button or keyboard macro definition, a macro
can be instructed to wait for a dialog box. For instance, if a macro should wait for the Local
Printing dialog box before continuing, the syntax is:
{window Local Printing}
. This entry
will cause the macro to pause until the named dialog is available. Place the instruction
immediately following the keystroke that launches the dialog. For instance:
{ctrl p}{window
Local Printing}
. The text following the word window must match exactly the title of the
dialog box. If the text does not match, the macro will pause indefinitely until the user presses the
Escape key to exit the macro.
Using the State Keys in Macros
The Alt, Shift, and Ctrl keys are known as state keys, because their state affects what happens
when another key is pressed, whether they are pressed or not.
To include a state key in a macro:
1. Begin with an open brace ({) to indicate that a key is being pressed.
2. Follow the open brace with the name of the state key, such as Alt.
3. Since a state key does not do anything by itself, enter the name of the next key pressed along
with it. Enclose this key in another set of braces ({ }) if it is a function or numeric keypad
key, such as F7 or kp1.
4. End with a closing brace (}) to indicate the release of the state key. So you’d have something
similar to this:
{alt{f7}}
.