BP Progress Bar question

How do I get a custom icon in the progress bar (referring to the one in the resource folder of the application bundle)
There seems to be a new version of the progress bar.
Can someone give me the link please.

Thanks in advance,
Peter

Currently, you pass a POSIX path to changeIcon:

tell ProgressBar
	changeIcon to "/example/path"
end tell

There isn’t a new version. It’s still available here at ScriptBuilders.

Thanks Bruce.

I used:

tell ProgressBar
	changeIcon to (path to resource "Some.icns" in bundle (path to me))

and it works perfect.

Peter