Duplicate Selected Scene

2.03K viewsCSS Questions
0

Hello there,

how can I use Reactions to duplicate the currently highlighted/selected scene? Capture and insert is useful at times but I want to duplicate every clip (playing or not) and not to play that scene automately.

Thank you

Victor Guyomard Answered question
Attached Files:
0

Try this:
‘self’ .song().duplicate_scene ( ) 1
‘1’ is the scene number from the top (starting from zero).

admin Changed status to publish
Attached Files:
0

Instead of adding a 1, add this: self.selected_scene_idx()

admin Changed status to publish
Attached Files:
0

oh does it…
Ok, try adding this instead:
self.selected_scene_idx() – 1

admin Changed status to publish
Attached Files:
1

I was looking for the same thing, thanks, but the code has changed slightly since the publication date.

In CSS3, it’s:

self.song().duplicate_scene(self.selected_scene_idx()-1)

But I had to add a condition to cancel the double signal:

MIDI button > (Number) is equal to > 127

Victor Guyomard Answered question