Eucon and Cubase 15

For some reason, using Eucon in Cubase 15, I can no longer use soft keys to load plugins not to mention autohotkey doesn’t seem to work either, any ideas?

1 Like

I don’t use softkeys to load plugins but I’m interested in if/how this gets resolved. My Eucon softkey functions all appear to be working as expected on my Artist Control, but they’re pretty basic - Undo, Save, Cycle, Mixer, Set L-R (and some other basic functions).

I have had cases where the soft keys just stop working. At that point I restart the app from the task bar icon (Windows). Other than that the only thing I would recommend is trying to save-as, and double check naming etc. I seem to recall that the naming isn’t necessarily obvious. Like, you can’t have multiple files with the name “Cubase 14”, “Cubase 15” etc., only “Cubase.exe”… or whatever it was, I can’t recall.

Hope you get it sorted.

1 Like

In the eucon software I loaded all cubase 14 settings then saved it as cubase 15 and all my previous settings worked, when you loaded c15 the software did not match it with c14 that was opened last and saved, try it and let me know

Thanks for all of the ideas, Eucon works fine except for the soft keys I’ve programmed to load plugins. It’s weird because auto hot key isn’t working either, This is only in Cubase 15,in 14 everything works as it should.

Have you tried opening 14, saving in Eucontrol, opening 15 and then opening the saved 14 settings?

Yes, it seems to be at work for a while in Cubase 15 but stopped working. I think it must be something else because Auto hot key isn’t working either.

I do believe that my autohotkey script isn’t working in Cubase 15. It’s a script I’ve been using for years to automate loading inserts in Cubase. It still works perfectly in Cubase 14, any ideas?

;<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< Select an Insert <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

!1:: ; Alt+1 hotkey.
Y:=114 ; (114)
Sleep 10
SendEvent {Alt up}
GoSub, SelIns
return

!2:: ; Alt+2 hotkey.
Y:=114+22.06
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!3:: ; Alt+3 hotkey.
Y:=114+22.06*2
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!4:: ; Alt+4 hotkey.
Y:=114+22.06*3
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!5:: ; Alt+5 hotkey.
Y:=114+22.06*4
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!6:: ; Alt+6 hotkey.
Y:=118+26.08*2
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!7:: ; Alt+7 hotkey.
Y:=114+22.06*6
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!8:: ; Alt+8 hotkey.
Y:=114+22.06*7
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!9:: ; Alt+9 hotkey.
Y:=114+22.06*8
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

!0:: ; Alt+0 hotkey.
Y:=114+22.06*9
Sleep 50
SendEvent {Alt up}
GoSub, SelIns
return

SelIns:
IfWinExist, Channel Settings
WinActivate
else
{
SendEvent e
WinWaitActive, Channel Settings
}

PixelGetColor, InsColor, 86,88, [RGB] ;Check the Tab Inserts/Strip
If InsColor <> 0x2F3840 ;if Strip is active
{
Click 86,88 ;Open Inserts
Sleep 100
}
MouseMove 210,Y ;Select an Insert , (x=187)
Sleep 60
;MouseMove 220,Y
;Sleep 110
Click
Return
#IfWinExist

;<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< End <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<

I figured out my problem for some reason, i had “run as administrator” on, switched if off and now autohotkey works as it should