v2003 Timeline

A

Al Edlund

I can set the shapesheet to what I need, but timeline won't update the
drawing unless you go through the menu. how do you trigger the addon to do a
redraw?
Al
 
A

Al Edlund

John,
A couple of superflous facts first. The TimeLine addon in V2003 supports the
ability to import a 'script like' configuration to draw a timeline. The
utility is called TLImpt.exe. For those that don't want to write code.

V2003 appears to have changed some addon types of things. Specifically
RUNADDONWARGS.

I had to use this type of scenario to 'phoney' up the field updates :

Dim objAddOn As Object
Set objAddOn = appVisio.Addons
Set objAddOn = appVisio.Addons.Item("ts")
Application.AlertResponse = 1 ' since the menu being called should be
objAddOn.Run ("/cmd=4") ' initalized from the updated shapesheet
Application.AlertResponse = 0 ' we can just fake it out this way

The commands are visible in the actions section of the shapesheet for the
different types of objects that are supported (timeline, interval, event,
etc.)
Have a great one,
Al
 
A

Al Edlund

forgive the typo in previous append should only be one set objAddon (the one
with the item).
al
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top