Announcement

Collapse
No announcement yet.

clearing text and shapes

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

  • clearing text and shapes

    Greetings,

    New to eSignal, I've just written my first add-on study. It seems to work fine, but the problem i have is that on each tick update, I am overwriting (previous) text with new text, creating a mess. My question is "How do I clear text that I have previously drawn?

    Tx,

    Scott
    Scott Masters
    www.tic2tic.com
    [email protected]

  • #2
    Scott:

    clearText()
    clearLines()
    clearShape()
    clearImage()

    are the various functions available. Can also remove single text object, line, image or shape using the

    removeText(id);
    removeLine(id);
    removeShape(id);
    removeImage(id);

    versions.


    Chris

    Comment

    Working...
    X