I have tried to get this Rectangle Breakout EFS to work, but can't get it to plot anything. Anyone gotten it to function ? - if so I would appreciate the help...It was written by Markos Katsanos.
Announcement
Collapse
No announcement yet.
Rectangle BO...
Collapse
X
-
Re: Rectangle BO...
jones24621
The problem you are seeing is due to an issue in the drawTextRelative() function in version 10.x. As I understand it eSignal is aware of this issue which is slated to be fixed in one of the next releases.
At this time the way to resolve the problem is to replace drawTextRelative(...) with drawTextPixel(...) in lines 67 and 70 of the script eg
PHP Code:drawTextPixel(5, 20, sLabel+"@URL=EFS:click", null, null,
Text.RELATIVETOLEFT|Text.RELATIVETOBOTTOM|Text.BOLD|Text.LEFT|Text.BUTTON,
null, 12, "button1");
drawTextPixel(5, 45, "Reset@URL=EFS:reset", null, null,
Text.RELATIVETOLEFT|Text.RELATIVETOBOTTOM|Text.BOLD|Text.LEFT|Text.BUTTON,
null, 12, "button2");
Alex
Originally posted by jones24621
I have tried to get this Rectangle Breakout EFS to work, but can't get it to plot anything. Anyone gotten it to function ? - if so I would appreciate the help...It was written by Markos Katsanos.
Comment