cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

character fill in macros

AnthonyPhillips
1-Newbie

character fill in macros

How can I include the 'character fill' command in a macro?

3 REPLIES 3

The macro below is a simplied version showing the syntax. The last line of the macro ends up applying the $ISO_Black color at 10%.

Macro Apply_Fill
Define E1 as Element

Create Text 0 0 "Test"

E1 = ActiveDoc.FirstSelectedElement

E1.Fill = "{Ref '$ISO_BLACK' 10}"

End Macro

is there no way to do this using foundation's built in macro recording capability?

The recorder is a good starting point for a number of macro tasks, but what I'm assuming you are looking for requires a loop which can not be created by recording. This is a common cut-off point for macro recorders.

Top Tags