Hi,
I have this silverlight player i want to handle with mouseclicks in my site config. The player plays just fine, and i can see all of the silverlight element in Plex. And I am positive the on x=55 and y=595 there is a Play/Pause button.
The log says
LINE: PAUSE<br />
Executing Mouse click<br />
Mouse click at 55, 595<br />
Executing Moving to state paused<br />
sendPluginMouseDown: point (55,595) mapped to (55.000000,125.000000)<br />
mouseDown:<br />
Mouse down event 55, 595<br />
mouseUp:<br />
Mouse up event 55, 595<br />
and my site config
<state name="playing"><br />
<event><br />
<condition><br />
<command name="pause" /><br />
</condition><br />
<action><br />
<click x="55" y="595" /><br />
<goto state="paused" /><br />
</action><br />
</event><br />
</state><br />
<br />
<state name="paused"><br />
<event><br />
<condition><br />
<command name="play" /><br />
</condition><br />
<action><br />
<click x="55" y="595" /><br />
<goto state="playing" /><br />
</action><br />
</event><br />
</state>
Nothing happens inside the player, is there some way to further debug, like see visual where the mouse actual clicks?