This submodule allows hs.axuielement to support using AXTextMarker and AXTextMarkerRange objects as parameters for parameterized Accessibility attributes with applications that support them.
Most Accessibility object values correspond to the common data types found in most programming languages -- strings, numbers, tables (arrays and dictionaries), etc. AXTextMarker and AXTextMarkerRange types are application specific and do not have a direct mapping to a simple data type. The description I've found most apt comes from comments within the Chromium source for the Mac version of their browser:
// A serialization of a position as POD. Not for sharing on disk or sharing // across thread or process boundaries, just for passing a position to an // API that works with positions as opaque objects.
This submodule allows Lua to represent these as userdata which can be passed in to parameterized attributes for the appliction from which they were retrieved. Examples are expected to be added to the Hammerspoon wiki soon.
As this submodule utilizes private and undocumented functions in the HIServices framework, if you receive an error using any of these functions or methods indicating an undefined CF function (the function or method will return nil and a string of the format "CF function AX... undefined"), please make sure to include the output of the following in any issue you submit to the Hammerspoon github page (enter these into the Hammerspoon console):
hs.inspect(hs.axuielement.axtextmarker._functionCheck())
hs.inspect(hs.processInfo)
hs.host.operatingSystemVersionString()
Signature | hs.axuielement.axtextmarker._functionCheck() -> table |
---|---|
Type | Function |
Description | Returns a table of the AXTextMarker and AXTextMarkerRange functions that have been discovered and are used within this module. |
Parameters |
|
Returns |
|
Notes |
|
Source | extensions/axuielement/axtextmarker.m |
Signature | hs.axuielement.axtextmarker:bytes() -> string | nil, errorString |
---|---|
Type | Function |
Description | Returns a string containing the opaque binary data contained within the axTextMarkerObject |
Parameters |
|
Returns |
|
Notes |
|
Source | extensions/axuielement/axtextmarker.m |
Signature | hs.axuielement.axtextmarker:endMarker() -> axTextMarkerObject | nil, errorString |
---|---|
Type | Function |
Description | Returns the ending marker for an axTextMarkerRangeObject |
Parameters |
|
Returns |
|
Source | extensions/axuielement/axtextmarker.m |
Signature | hs.axuielement.axtextmarker:length() -> integer | nil, errorString |
---|---|
Type | Function |
Description | Returns an integer specifying the number of bytes in the data portion of the axTextMarkerObject. |
Parameters |
|
Returns |
|
Notes |
|
Source | extensions/axuielement/axtextmarker.m |
Signature | hs.axuielement.axtextmarker:startMarker() -> axTextMarkerObject | nil, errorString |
---|---|
Type | Function |
Description | Returns the starting marker for an axTextMarkerRangeObject |
Parameters |
|
Returns |
|
Source | extensions/axuielement/axtextmarker.m |
Signature | hs.axuielement.axtextmarker.newMarker(string) -> axTextMarkerObject | nil, errorString |
---|---|
Type | Constructor |
Description | Creates a new AXTextMarker object from the string of binary data provided |
Parameters |
|
Returns |
|
Notes |
|
Source | extensions/axuielement/axtextmarker.m |
Signature | hs.axuielement.axtextmarker.newRange(startMarker, endMarker) -> axTextMarkerRangeObject | nil, errorString |
---|---|
Type | Constructor |
Description | Creates a new AXTextMarkerRange object from the start and end markers provided |
Parameters |
|
Returns |
|
Notes |
|
Source | extensions/axuielement/axtextmarker.m |