introspection: current handler name?

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

LCMark
Livecode Staff Member
Livecode Staff Member
Posts: 1232
Joined: Thu Apr 11, 2013 11:27 am

Re: introspection: current handler name?

Post by LCMark » Mon Jan 20, 2020 6:42 pm

The most efficient way to get the handler name is

Code: Select all

param(0)
- then

Code: Select all

param(1), param(2), ...
give you the values passed as arguments in that position (which is useful for doing variadic type stuff).

Post Reply