Hi,
yes, you can, use the addplugin() or addhotspot() action to create a new plugin/hotspot,
or just leave the "url" attribute empty, and set it later on demand,
the file/image will be loaded when the "url" was set/changed
e.g.
|
Quellcode
|
1
2
3
|
<plugin name="image" url="" align="center" />
... onclick="set(plugin[image].url, image.jpg);"
|
or completely dynamic via addplugin():
|
Quellcode
|
1
2
3
|
... onclick="addplugin(image);
set(plugin[image].align,center);
set(plugin[image].url, image.jpg);"
|
best regards,
Klaus