Is it possible to create an object that activates a command when being opened/clicked on?
We have made some addins and in those addins, the user may type the command:
Code: Select all
addinname ?Code: Select all
'open help file
if @upper(%0)="HELP" or %0="?" then
setmaxerrs 10
%runpath=@runpath
%about="about.pdf"
%runpath=@addquotes(%runpath+%about)
shell(t=3000) {%runpath}
stop
endif
Thomas

