Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
qm editor: list last run macro: how?
#1
Hi,

In qm 2.1.6 one could list/{set the focus on} the macro that was most recently run by pressing F3 in the qm editor. In qm 2.3.2.8 this does not seem to work anymore.
Is there another way to do this or has this feature been left out? If so, will be it be re-enabled in future versions?

Bye, Arthur.
#2
Click "Active items menu" button in toolbar. Click "View active items". It will add "Open items" and "Running items" lists in QM window. Look in "Recent".
#3
Thanks, that does the job. It would be nice however to have the F3-shortcut back for this, it would save a few mouse clicks.

Bye, Arthur.
#4
Function QmGoToLastMacro
Trigger CSAF3     Help - how to add the trigger to the macro
Code:
Copy      Help
;Shows list of recent macros, and opens selected macro.


act _hwndqm
;g1
Acc a=acc("Recent*" "OUTLINEITEM" _hwndqm "id=2214 SysTreeView32" "0" 0x1005)
err
,men 33304 _hwndqm ;;View Active Items
,0.5
,goto g1

str s ss
rep
,a.Navigate("next"); err break
,s=a.Name
,if(s!="QmGoToLastMacro") ss.addline(s)

int i=list(ss "Click to open." "QM - Recent Macros")
if(!i) ret
s.getl(ss i-1)
mac+ s

err+
#5
Thanks a lot!


Forum Jump:


Users browsing this thread: 1 Guest(s)