Prev Previous Post   Next Post Next
Old 02-01-2017, 05:45 AM   #1
me2beats
Human being with feelings
 
me2beats's Avatar
 
Join Date: Jul 2015
Location: Yekaterinburg, Russia
Posts: 400
Default GetFocusedFX - itnum, fxnum.. takenum ??

Today I wanted to finish my script Toggle bypass focused fx. It works for track fx but doesn't work with FX on items.
And I wanted to finish it and I started to write a code like this

Code:
retval, trnum, itnum, fxnum = r.GetFocusedFX()

if retval == 1 then -- track FX is focused
  tr = r.GetTrack(0,trnum-1)
  en = r.TrackFX_GetEnabled(tr, fxnum)
  r.TrackFX_SetEnabled(tr, fxnum, not en)
elseif retval == 2 then -- item FX is focused
  tr = r.GetTrack(0,trnum-1)
  item = r.GetTrackMediaItem( tr, itnum-1)
but wait..

I need to get the take right now and then use TakeFX_GetEnabled(take, fx) but
GetFocusedFX() doesn't return neither take nor take number what the freak?

Of course I can try track or item chunks but maybe there's a better way.
me2beats is offline   Reply With Quote
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -7. The time now is 03:29 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.