Skip to content

gordonlu310/ClickTool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ClickTool

An App Inventor non-visible extension that detects clicks and long clicks for visible components that does not have the Click or LongClick events.

📅 Release date: March 23, 2022 16:00 (Asia/Hong_Kong)

📦 Package name: com.gordonlu.clicktool.aix

🕓 Version: 3

📖 Documentation

Event blocks

GotFocus

image

This event is fired when a registered component is focused.

Parameters: component = component

LostFocus

image

This event is fired when a registered component has losen focus.

Parameters: component = component

OnClick

image

This event is fired when a registered component is clicked.

Parameters: component = component

OnLongClick

image

This event is fired when a registered component is long clicked.

Parameters: component = component

Method blocks

PerformClick

image

Performs a click for the given component.

Parameters: component = component

PerformLongClick

image

Performs a long click for the given component.

Parameters: component = component

RegisterClick

image

Registers the component so that when the user clicks the component, it will fire the OnClick event.

Parameters: component = component

RegisterFocus

image

Registers the component so that when the user focuses or removes focus for the component, it will fire the respective event.

Parameters: component = component

RegisterLongClick

image

Registers the component so that when the user clicks the component, it will fire the OnLongClick event.

Parameters: component = component

UnregisterClick

image

Unregisters the component so that when it is clicked, the extension will not fire the OnClick event.

Parameters: component = component

UnregisterFocus

image

Unregisters the component so that when the user has focused or removed focus this component, it will not fire the respective event.

Parameters: component = component

UnregisterLongClick

image

Unregisters the component so that when it is clicked, the extension will not fire the OnLongClick event.

Parameters: component = component

About

An App Inventor non-visible extension that detects clicks and long clicks for visible components that does not have the Click or LongClick events.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages