Livecode Wiki

Evaluates to true if the valueToFind is an element name in the arrayToSearch.Syntax:

<valueToFind> is among the keys of <arrayToSearch>

Examples:

local tArray
put "World" into tArray["Hello"] 
get "Hello" is among the keys of tArray -- evaluates to true
if "text" is among the keys of the dragData then
       set the text of field "Drag Target" to the dragData["text"]
end if

Is among the keys of should be used to check whether an array contains an element of a specified name.

Parameters:

  • valueToFind (string):
  • arrayToSearch (array):
  • Description:Is among the keys of should be used to check whether an array containsan element of a specified name.

See also: is not among the keys of (operator),is among (operator),