TheClickCount

Typeexpression
DictionaryLCB
LibraryLiveCode Builder
Syntax
the ( current ) click count
Associationscom.livecode.widget
Summary

Determines the number of successive clicks within the click distance.

Example
    variable tClickCount as integer
    put the click count into tClickCount

    if tClickCount is 1 then
        // do single click action
    else if tClickCount is 2 then
        // do double click action
    end if
Values
NameTypeDescription
return

The number of clicks which have occurred since the initial click within the standard 'click distance' from the original point.

Description

Determines the number of successive clicks within the click distance.

Tagswidget