getSelector(id).settings.disableClicks()
Makes it impossible to select by clicking. If no .settings.keys command is called on the element, this makes any selection impossible.
Example:
[js highlight=”8″ try=”true”]newImage(“square”, “square.png”)
,
newImage(“triangle”, “triangle.png”)
    .settings.before( getImage(“square”) )
    .print()
,
newSelector(“shapes”)
    .settings.disableClicks()
    .settings.add( getImage(“square”) , getImage(“triangle”) )
    .settings.keys(     “F”           ,        “J”           )
    .wait()
[/js]
Adds two images side by side and waits for a selection by pressing either the F key or the J key.