Hi! I'm trying to define some ADE-XL bindkeys for actions that I use really often, like the following: ; Open run log (history window) hiSetBindKey("adexl" "Ctrl Alt Shift L" "_axlDataViewOpenRunLogAction(axlDataViewForm0->axlDataViewWidget0)") ; Open run results (history window) hiSetBindKey("adexl" "Ctrl Alt Shift V" "_axlDataViewShowResultsAction(axlDataViewForm0->axlDataViewWidget0)") ; Export results to csv file hiSetBindKey("adexl" "Ctrl Shift S" "_axlExportResultsView(axlOutputsForm3->axlOutputsWidget3)") I usually get those code snippets from spying on the CIW log to see what gets called when I do these actions using the mouse, and often these "_" functions are involved which seem to be undocumented, private functions. The problem is that this spying method always gives me arguments that are "hardcoded" to the current application instance, session etc, and when these parameters change, my bindkeys break. For instance sometimes instead of "axlOutputsForm3" I should use "axlOutputsForm4" and so on. Is there any function I can call to pass the correct arguments to these "_" functions? Thanks and regards, Jorge.
↧