Go Back   Cockos Incorporated Forums > REAPER Forums > REAPER Feature Requests

Reply
 
Thread Tools Display Modes
Old 07-13-2013, 02:28 PM   #41
luk
Human being with feelings
 
Join Date: May 2013
Posts: 51
Default

+ + + 1 ! ! !
luk is offline   Reply With Quote
Old 07-15-2013, 12:23 AM   #42
Smurf
Human being with feelings
 
Smurf's Avatar
 
Join Date: Jan 2006
Posts: 2,173
Default

This was requested back on 06-27-2008.....5 years ago.....so much for the legendary Reaper speed, 'eh?
__________________
Yep's First 3 Years in PDF's
HP Z600 w/3GHz 12 Core, 48GB Memory, nVidia Quadro 5800, 240GB SSD OS drive, 3 480GB SSD Sample/Storage drives, 18TB External Storage, Dual 27" Monitors
Smurf is offline   Reply With Quote
Old 09-17-2013, 11:34 AM   #43
ivan.lt
Human being with feelings
 
Join Date: Apr 2011
Posts: 503
Default

This thread is a duplicate of http://forum.cockos.com/showthread.php?p=387785
FR to vote http://forum.cockos.com/project.php?issueid=1334

And today I for a thousandth time wished for this feature.
ivan.lt is offline   Reply With Quote
Old 02-24-2015, 12:51 PM   #44
Ben Zero
Human being with feelings
 
Join Date: Jan 2006
Location: London, England
Posts: 706
Default

Big bump for this. Would be great to see track height lock in REAPER 5!

Ben
__________________
Pro REAPER user since 2006.
Ben Zero is offline   Reply With Quote
Old 08-12-2015, 07:49 AM   #45
hemsi
Human being with feelings
 
Join Date: Dec 2009
Posts: 2
Default

Need it too, vertical zoom is such a pain when using folders
hemsi is offline   Reply With Quote
Old 05-26-2016, 03:41 PM   #46
hesnotthemessiah
Human being with feelings
 
hesnotthemessiah's Avatar
 
Join Date: Aug 2014
Posts: 54
Default

+ 1 for me too

FR to vote http://forum.cockos.com/project.php?issueid=1334
hesnotthemessiah is offline   Reply With Quote
Old 05-26-2016, 06:35 PM   #47
lakair
Human being with feelings
 
Join Date: Jul 2012
Posts: 2
Default

+1 for individual track height lock
lakair is offline   Reply With Quote
Old 05-27-2016, 02:05 PM   #48
vdubreeze
Human being with feelings
 
vdubreeze's Avatar
 
Join Date: Jul 2011
Location: Brooklyn
Posts: 2,634
Default

Yes, please.
__________________
The reason rain dances work is because they don't stop dancing until it rains.
vdubreeze is online now   Reply With Quote
Old 06-30-2016, 07:12 PM   #49
vicnest
Human being with feelings
 
Join Date: Jul 2011
Posts: 99
Default

Really useful feature for editing. Please~~
vicnest is offline   Reply With Quote
Old 07-01-2016, 12:31 AM   #50
Gass n Klang
Human being with feelings
 
Gass n Klang's Avatar
 
Join Date: Nov 2015
Location: Cologne
Posts: 1,640
Default

+1111

in Addition: Vertical wave zoom without enlarging track size.
Gass n Klang is offline   Reply With Quote
Old 07-01-2016, 08:16 AM   #51
lachrimae
Human being with feelings
 
lachrimae's Avatar
 
Join Date: May 2010
Location: Austin, TX
Posts: 791
Default

Quote:
Originally Posted by Gass n Klang View Post
+1111

in Addition: Vertical wave zoom without enlarging track size.
Similar to the above, I never created an FR for this because nobody else expressed interest, but I think it'd be a "game-changer".
lachrimae is offline   Reply With Quote
Old 07-01-2016, 11:57 AM   #52
Luster
Human being with feelings
 
Luster's Avatar
 
Join Date: Nov 2015
Posts: 642
Default

+11111
Luster is offline   Reply With Quote
Old 07-01-2016, 12:46 PM   #53
Masi
Human being with feelings
 
Join Date: Sep 2015
Posts: 690
Default

+1 (yes, please)
Masi is offline   Reply With Quote
Old 07-03-2016, 07:45 AM   #54
ivan.lt
Human being with feelings
 
Join Date: Apr 2011
Posts: 503
Default

Quote:
Originally Posted by Gass n Klang View Post
in Addition: Vertical wave zoom without enlarging track size.
Existing actions "Peaks: Increase/decrease peak view gain" might be what you need.
ivan.lt is offline   Reply With Quote
Old 02-20-2017, 09:17 AM   #55
blumpy
Human being with feelings
 
blumpy's Avatar
 
Join Date: Sep 2016
Posts: 508
Default I would love to see this happen if it's not in there already

please
blumpy is offline   Reply With Quote
Old 02-20-2017, 09:47 AM   #56
Vagalume
Human being with feelings
 
Join Date: Nov 2015
Posts: 607
Default

Yes, +++++++++++++ 1 pleaseeeeeee. He have been so good in 2016 we deserve this present
Vagalume is offline   Reply With Quote
Old 02-20-2017, 12:50 PM   #57
bFooz
Human being with feelings
 
Join Date: Jul 2010
Location: Slovakia
Posts: 2,588
Default

I agree that this would be useful. I've been scripting a bit today to make track locking somehow available, but I have not find a reliable way. This is what I have:

Code:
-- USER VARIABLES ---------------------------------------------------

  --string which all lockable folders contain
  userFolderString = "BUS"
  
  --minimum height of folder tracks
  userHeight = 200 --px

-- END USER VARIABLES----------------------------------------------

function main()
  
  trackNum = reaper.CountTracks(0)
    
  for i=0, trackNum-1 do
  
        track = reaper.GetTrack(0, i)
        
        --get name
        name = ""
        _, name = reaper.GetSetMediaTrackInfo_String( track, "P_NAME", name, false )
        
                   
        --if the name contains desired string
        if name:find(userFolderString)~=nil then
            
               reaper.SetMediaTrackInfo_Value(track, "I_HEIGHTOVERRIDE", userHeight )
                                  
        end --if
        
  end --for i

  reaper.TrackList_AdjustWindows( false )
  reaper.defer(main)
end --function main

main()
The main problem is that when using a standard vertical zoom action, Reaper is taking the height of the last touched track as a basis. That means that when a locked BUS is a last touched track, the you cannot make the other tracks smaller that the BUS
bFooz is offline   Reply With Quote
Old 02-21-2017, 06:17 AM   #58
Masi
Human being with feelings
 
Join Date: Sep 2015
Posts: 690
Default

Quote:
Originally Posted by lakair View Post
+1 for individual track height lock
Yes, please.
Masi is offline   Reply With Quote
Old 03-10-2017, 06:19 AM   #59
James HE
Human being with feelings
 
James HE's Avatar
 
Join Date: Mar 2007
Location: I'm in a barn
Posts: 4,467
Default

Quote:
Originally Posted by bFooz View Post
I agree that this would be useful. I've been scripting a bit today to make track locking somehow available, but I have not find a reliable way.
We (mostly me ) figured out a way to do it a while back.

This is a set of actions that you use as an alternative to the zoom, it works from the arrange area but not if the mouse is over the tcp. There are other caveats to consider, well, read the thread for the nitty gritty.

http://forum.cockos.com/showthread.p...22#post1661822
James HE is offline   Reply With Quote
Old 03-22-2017, 06:26 AM   #60
PelF
Human being with feelings
 
PelF's Avatar
 
Join Date: Mar 2013
Posts: 181
Default

+1 from me
PelF is offline   Reply With Quote
Old 09-03-2017, 05:05 AM   #61
frareinif
Human being with feelings
 
Join Date: Jan 2013
Location: Germany
Posts: 39
Default

Still no feature?
+1!
frareinif is offline   Reply With Quote
Old 09-06-2017, 08:08 AM   #62
J Riley Hill
Human being with feelings
 
J Riley Hill's Avatar
 
Join Date: Jul 2014
Posts: 155
Default

I would use this feature
J Riley Hill is offline   Reply With Quote
Old 09-06-2017, 10:05 AM   #63
vectorwarrior
Human being with feelings
 
vectorwarrior's Avatar
 
Join Date: Aug 2014
Posts: 179
Default

+1 from me too. I have never really adapted comfortably to the way reaper handles vertical track zooming, it's pretty clunky compared to other programs.
vectorwarrior is offline   Reply With Quote
Old 09-06-2017, 05:37 PM   #64
Rico Sergeant
Human being with feelings
 
Join Date: Feb 2017
Posts: 19
Default

I would like this.
Rico Sergeant is offline   Reply With Quote
Old 11-09-2017, 03:41 PM   #65
PelF
Human being with feelings
 
PelF's Avatar
 
Join Date: Mar 2013
Posts: 181
Default

+1.000.000

please add this very useful feature
PelF is offline   Reply With Quote
Old 11-13-2017, 03:28 AM   #66
Gass n Klang
Human being with feelings
 
Gass n Klang's Avatar
 
Join Date: Nov 2015
Location: Cologne
Posts: 1,640
Default

+1111111
Gass n Klang 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 04:07 PM.


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