Hi,
hotspot[get(hotspot_name)].loadstyle(mystyle);
The player return ---> WARNING: unknown action command: hotspot[get
this was a bug/limitation in the internal parser,
it was fixed now in the latest 1.0.8.14 release (
build 2011-09-12),
But what is %? a replacement/alternative for get(variablename)?
partially, only for using simple variables as array index - the % syntax is older then the get() syntax,
the get() syntax is the newer and better one because it allows using full path variables there,
e.g. element[%var].var - will work,
but element[%element[%var].var].var - will not work,
but with get() - element[get(element[get(var)].var)].var - it will work
best regards,
Klaus