Is it possible to read the playerID value using JavaScript?
<object id="myid" class="newclass">
<param name="bgcolor" value="#FFFFFF" />
<param name="width" value="345" />
<param name="height" value="216" />
<param name="playerID" value="1234" />
<param name="playerKey" value="AFASS" />
<param name="isVid" value="true" />
<param name="isUI" value="true" />
</object>
Or, you can try the following statement. It will return all the play IDs on the page, if you have multiple.
playerIDs will be an array. If you only have one playerID on the page, you can just say
playerIDs[0]