Announcement

Collapse
No announcement yet.

Rectangle BO...

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Rectangle BO...

    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.
    Attached Files

  • #2
    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(520sLabel+"@URL=EFS:click"nullnull
            
    Text.RELATIVETOLEFT|Text.RELATIVETOBOTTOM|Text.BOLD|Text.LEFT|Text.BUTTON
            
    null12"button1");
        
    drawTextPixel(545"Reset@URL=EFS:reset"nullnull
            
    Text.RELATIVETOLEFT|Text.RELATIVETOBOTTOM|Text.BOLD|Text.LEFT|Text.BUTTON
            
    null12"button2"); 
    Once you make this change the script should work as intended (see enclosed animation)
    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


    • #3
      Thanks Alex - works great now.

      Comment


      • #4
        jones24621
        You are most welcome and thank you for letting me know it works fine now
        Alex


        Originally posted by jones24621
        Thanks Alex - works great now.

        Comment

        Working...
        X