Go Back   Cockos Incorporated Forums > REAPER Forums > Dstruct's Casa De Nitpicks

Reply
 
Thread Tools Display Modes
Old 02-09-2018, 02:04 PM   #1
RCJacH
Human being with feelings
 
Join Date: Apr 2016
Location: Beijing, China
Posts: 215
Default What happened to the "remove all track fx" action?

I had it on a toolbar before, and now it's not triggering the action (since 5.71pre or something?)...and I couldn't find any related action in the action list. Where did it go?
RCJacH is offline   Reply With Quote
Old 02-10-2018, 01:40 AM   #2
foxAsteria
Human being with feelings
 
foxAsteria's Avatar
 
Join Date: Dec 2009
Location: Oblivion
Posts: 10,248
Default

Hold alt and click the fx button on a track. Fx be gone.
__________________
foxyyymusic
foxAsteria is offline   Reply With Quote
Old 02-10-2018, 02:14 AM   #3
RCJacH
Human being with feelings
 
Join Date: Apr 2016
Location: Beijing, China
Posts: 215
Default

Is there currently a batch remove fx action for more than one track?
RCJacH is offline   Reply With Quote
Old 02-10-2018, 02:48 AM   #4
foxAsteria
Human being with feelings
 
foxAsteria's Avatar
 
Join Date: Dec 2009
Location: Oblivion
Posts: 10,248
Default

SWS remove selected fx from selected tracks seems to do it.
__________________
foxyyymusic
foxAsteria is offline   Reply With Quote
Old 03-03-2018, 01:15 PM   #5
Edgemeal
Human being with feelings
 
Edgemeal's Avatar
 
Join Date: Apr 2016
Location: ASU`ogacihC
Posts: 3,903
Default

I'd like to remove all fx from selected tracks also, I also want to do this from a toolbar button without needing to press/hold down any keyboard keys.

Searching, but don't see anything in Actions/ReaPack that can do this.
EDIT, came up with this after looking at a few other scripts, seems to work OK.
Code:
-- Remove all FX from selected tracks

reaper.Undo_BeginBlock()

for i =1, reaper.CountSelectedTracks(0) do 
  track = reaper.GetSelectedTrack(0,i-1)
  for fx_id = reaper.TrackFX_GetCount(track), 1, -1 do
    reaper.SNM_MoveOrRemoveTrackFX(track, fx_id-1, 0)
  end
end

reaper.Undo_EndBlock('Remove all FX from selected tracks', 0)

Last edited by Edgemeal; 03-03-2018 at 02:10 PM.
Edgemeal is offline   Reply With Quote
Old 03-09-2018, 01:27 AM   #6
RCJacH
Human being with feelings
 
Join Date: Apr 2016
Location: Beijing, China
Posts: 215
Default

I'm terribly sorry, but I just realized that sws was removed from both of my PCs. I installed sws back and the action works again.

The action I used is this:
SWS/S&M: Clear FX chain for selected tracks
_S&M_CLRFXCHAIN3
RCJacH is offline   Reply With Quote
Old 03-09-2018, 08:50 AM   #7
TPerry
Human being with feelings
 
Join Date: Jul 2015
Location: Portugal
Posts: 10
Default

Use this macro for the whole project.



If you want just some selected tracks, remove the first action in the custom list..
TPerry is offline   Reply With Quote
Reply

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 02:22 AM.


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