FR:Play head options
-
- KVRian
- 526 posts since 7 May, 2007 from Angus,Scotland
@Devs, is there any possibility of having the option to select how many bars the play head jumps back after play is stopped?
Thanks
Thanks
Windows 10 / Intel core i7 2700k @ 3.50GHz / 16GB Ram / Emu 1212m Sound Card / Ati Radeon HD5400 Series G/Card
-
- KVRAF
- 2417 posts since 17 Jun, 2003
Turn on "return cursor to start position when playhead stops" in Options, and start from where you want it to jump back to.
"my gosh it's a friggin hardware"
-
- KVRian
- Topic Starter
- 526 posts since 7 May, 2007 from Angus,Scotland
I do have that switched on, but when editing, midi stuff going through checking there are no misplaced/played notes. You can end up quite far from the start position. Then when you hit stop to correct something, you're back at the beginning.The option to just jump back a couple of bars after play is stopped, I think would be pretty useful.
Windows 10 / Intel core i7 2700k @ 3.50GHz / 16GB Ram / Emu 1212m Sound Card / Ati Radeon HD5400 Series G/Card
-
- KVRAF
- 2417 posts since 17 Jun, 2003
Ah okay, see what you mean. You could do this with a macro, then map the macro to a keyboard shortcut. Something like this kinda works (change the jumpback -5 figure to whatever you think is a decent number for your needs)
Tracktion.StopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
Tracktion.StopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
"my gosh it's a friggin hardware"
-
- KVRAF
- 2417 posts since 17 Jun, 2003
TBH, the Page Up keyboard shortcut might also do what you're looking for ...
"my gosh it's a friggin hardware"
-
- KVRian
- Topic Starter
- 526 posts since 7 May, 2007 from Angus,Scotland
Cheers Chico,
Will give that a try, I've not used macros before, was kind of nervous about messing up something.
Would still be good if TSC would add the option though.
thanks again.
Will give that a try, I've not used macros before, was kind of nervous about messing up something.
Would still be good if TSC would add the option though.
thanks again.
Windows 10 / Intel core i7 2700k @ 3.50GHz / 16GB Ram / Emu 1212m Sound Card / Ati Radeon HD5400 Series G/Card
-
- KVRian
- Topic Starter
- 526 posts since 7 May, 2007 from Angus,Scotland
ok Just tried to set this up, getting the message void set position(setstringpositionidentifier,double time) I have no idea what that means, any thoughts? cheers
Windows 10 / Intel core i7 2700k @ 3.50GHz / 16GB Ram / Emu 1212m Sound Card / Ati Radeon HD5400 Series G/Card
-
- KVRAF
- 2417 posts since 17 Jun, 2003
It's a typo with the case. I think i edited it slightly before sending you it, and didn't test the edited version. This should work ;
Tracktion.stopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
The difference is in the first line, i had put "StopPlayback()" when it expects "stopPlayback()"
Tracktion.stopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
The difference is in the first line, i had put "StopPlayback()" when it expects "stopPlayback()"
"my gosh it's a friggin hardware"
-
- KVRian
- Topic Starter
- 526 posts since 7 May, 2007 from Angus,Scotland
Hi Chico,
still cant get this to work.
I would like this operation to jump 2 Bars to back and stop.
tried this, doesnt seem to work!
Tracktion.stopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
tried this after looking at the macros sticky
//Tracktion.stopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
this jumps back 2 bars but resumes playing
Thanks for your help.
Would be easier for me, but maybe not for them if TSC implemented this option.
still cant get this to work.
I would like this operation to jump 2 Bars to back and stop.
tried this, doesnt seem to work!
Tracktion.stopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
tried this after looking at the macros sticky
//Tracktion.stopPlayback();
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
this jumps back 2 bars but resumes playing
Thanks for your help.
Would be easier for me, but maybe not for them if TSC implemented this option.
Windows 10 / Intel core i7 2700k @ 3.50GHz / 16GB Ram / Emu 1212m Sound Card / Ati Radeon HD5400 Series G/Card
-
- KVRAF
- 2417 posts since 17 Jun, 2003
haha, seems that way ... bit weird it's not working for you, I've just deleted my own macro, and copy pasted that code above, and it definitely jumps back a bit in time, and stops playback.
Not sure what could be different ... when you copy paste it in, do you get a green tick, in the bottom right corner? If you get a red X, there's some syntax error, green tick should be good.
You could try putting the stop command at the end, although it shouldn't matter. eg ;
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
Tracktion.stopPlayback();
Not sure what could be different ... when you copy paste it in, do you get a green tick, in the bottom right corner? If you get a red X, there's some syntax error, green tick should be good.
You could try putting the stop command at the end, although it shouldn't matter. eg ;
jumpBack = Tracktion.getPosition ('transport');
jumpBack = jumpBack - 5;
Tracktion.setPosition ('transport', jumpBack);
Tracktion.stopPlayback();
"my gosh it's a friggin hardware"
-
- KVRian
- Topic Starter
- 526 posts since 7 May, 2007 from Angus,Scotland
Yes I was getting a green tick, mapped it the # key
Will try again.
Cheers
Will try again.
Cheers
Windows 10 / Intel core i7 2700k @ 3.50GHz / 16GB Ram / Emu 1212m Sound Card / Ati Radeon HD5400 Series G/Card
-
- KVRian
- Topic Starter
- 526 posts since 7 May, 2007 from Angus,Scotland
That did the trick
Much appreciated.
Much appreciated.
Windows 10 / Intel core i7 2700k @ 3.50GHz / 16GB Ram / Emu 1212m Sound Card / Ati Radeon HD5400 Series G/Card
