I've sorted it out and feel a bit foolish as it is so obvious
<action name="showImage">
set(plugin[photo].url, %1);
set(plugin[text].url, %2);
tween(view.fov, 120,0.7,,
tween(plugin[photo].width,get(stagewidth),0.2,, set(plugin[photo].width,70%);
tween(plugin[photo].height,get(stageheight),0.2,, set(plugin[photo].height,prop);
tween(plugin[text].scale, 0.56,0.2,,
tween(plugin[text].scale, 0.52,0.05,,
tween(plugin[text].scale, 0.55,0.1,,
loadscene('scene_2',null,KEEPALL,BLEND(1.2))))))));
</action>
Next issue:
On the good advice of VN2011, I'm using the following action to show an image which changes the colour of a car:
<action name="changeTruck">
set(hotspot[truck].url,%1);
tween(hotspot[truck].alpha,1,1.2);
</action>
This works perfectly for one colour change but when another colour is selected, the first colour disappears immediately. as the url is replaced with the onClick command.
What I would liketo happen is for the selected colour to fade out as the new one fades in.
Possible?