Page 1 of 1

Repeat Last Command

Posted: 13 Jan 2017, 10:31
by myara
Is there anyway to manipulate this repeat last command ?

I mean, defining manually which command I want to be recognized as the last executed command.

Thanks,

Re: Repeat Last Command

Posted: 13 Jan 2017, 17:44
by julius
You can repeat last command with the ";"
I think you can't manage the command (it wouldn't be last command otherwise...)

Why do you want to manage the command concerned ? What is the difference with creating a shortcut ?

Re: Repeat Last Command

Posted: 13 Jan 2017, 18:51
by myara
I have a Jscript command to get the weights array so I can use it in my Python plugin to refresh my GUI. I use it because loading the weights array in Python is like 3 times slower.

I want to be able to repeat my last command like "paste weights" with the repeat command but since the refresh command runs automatically after the paste command to refresh my GUI, the repeat command doesn't work.

Re: Repeat Last Command

Posted: 14 Jan 2017, 15:29
by myara
I couldn't solve it, so I tried a different approach.

I just put my refresh command inside paste weights, so it will refresh my GUI and paste weights will be the last command registered in the repeat list.