Is it possible for a macro to change the command window to the List View? If this is possible, is it also possible for the macro to click on the first error if it existed?
Currently I have macro which runs a ‘compile’ command. I have checked “Show parsed output as text” the only problem is that this does not switch to the list view. Only when I manually press the toggle button, does the list view show.
Here’s the macro’s code:
_part = komodo.findPart(‘command’, ‘Compile’)
if (!_part) {alert(“Couldn’t find a command called ‘Compile’ when executing macro.”); return }
ko.projects.invokePart(_part);
So I am thinking that the marco could then open the List view instead of relying on the Compile command to do it.