Quote:
Originally Posted by Mark Nord
...
3) if doDigit is used, chang it this way:
Code:
<function id="doDigit" params="part">
//this.drawDigit(part.key) // restore this for PRS
this.drawDigit(part) // use this on PC
</function>
...
|
Mark, if you use in eBookSimMain.xml (for each digit button) code
Code:
var part=new Object;
part.key=2;
this.container.EINK.VIEW.DOCUMENT.AUTORUN_GROUP.AUTORUN.bubble("doDigit",part);
instead of your
Code:
this.container.EINK.VIEW.DOCUMENT.AUTORUN_GROUP.AUTORUN.bubble("doDigit",2)
than this step is not necessary. Is there any reason why not to do it this way?