"david.sotropa" wrote:
Hi david,
until someone posts a more elaborate method, here's a simple
script that will do it.
------script start------
Bar.Close("yourbarname")
Wait.For(500)
Do("C:/Program Files/IrfanView/i_view32.exe", "/capture=0")
Wait.For(2000)
Bar.Show("yourbarname")
------script end------
within your text editor, save it as somename.powerpro
place it in PowerPro\scripts folder
and then in Configure|Commanlists > yourbar
add your script in the "Enter command" box like this:
.filename
and apply
or if you wish, you can do it all in the Configure commandlist:
"Enter command": *Exec
"Action": MoreCommandsAsScript
"Enter more commands":
Bar.Close("yourbarname")
Wait.For(500)
Do("C:/Program Files/IrfanView/i_view32.exe", "/capture=0")
Wait.For(2000)
Bar.Show("yourbarname")
hope it helps