-
Posts
558 -
Joined
-
Last visited
Reputation
177 ExcellentAbout Heinz Hupfer
- Birthday 03/10/1961
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Feature Request: Keystroke for ProChannel EQ Flyout
Heinz Hupfer replied to MediaGary's topic in Feedback Loop
HI:) Not possible as far as I know. I made a Autohotkey "Mouse Click" to open it years ago. You have to have a special Screenset and look for to work, ProChannel always in the same position. ESC closes it. Bassman. -
I mostly have a big Project template with Drums, Percussion, Bass, Guitars, Pianos, Synths, Strings, Brass, Woodwinds, Voices, GMidi, Effects and some other Tracks, all about 200 Tracks. So if I want to see just the Pianos (4 Tracks), I have to hide 196 Tracks, if I want to see Guitars (12 Tracks) I have to hide 188 Tracks. Wouldn't it be better to do it the other way round? Make visible 4 Tracks and 12 Tracks instead of making hundreds of others invisible? I'm working with Reaper too and there I have the possibility to just see for example all Brasstracks with the word "Brass" in it. (lua script for that) Very fast to work on different Instruments. Perhaps I am the only one who likes to work like that😁 Bassman.
-
Whatfor should I use the search when I have to make invisible all other tracks? I expected to search for "drums" and make just these Tracks visible, shouldn't it work like this? What if I add Drum Tracks? Then I have to make invisible all other tracks again to show just Drums...it's not very handy! There should be a possibility to just see the search and then save it globally, not just for this project....Ok, I can blend out not selected Tracks but you first have to select them...I searched for so they are selected... Bassman.
-
Hi:) I just made a new project and added 16 Tracks, 8 for Drums, 8 for Bass. As you can see in the video I can't save any preset in Track Manager, can't make my search visible. Preset in Track Manager Bassman.
-
HI:) Track Manager: Very Fine! But how to use it? I'm searching for "Strings" so I can see the tracks with "Strings" in Trackmanager. AND NOW? I can make them invisible, change colors, Mute, solo ..... But how to make just these Strings Tracks visible in TV and MV? Can't find out! Saving a preset and deleting these tracks in Track Manager doesn't work! Thanks;) Bassman.
-
HI:) You can use AZController and set a Midiknob on back/forward 1,2,3 (as much you want) bars, beats, ticks, samples, milliseconds... You can even set looppoints back/forward 1,2,3 bars and start playback with 1 midiknob. The easiest way I think, instead of pressing Ctrl+PgUp 2 or 3 times. I can write you a small preset for this if you want... I have a fader to move back/forward 1-128 bars/markers/regions and by grid. (4 faders) Bassman.
-
[Solved]Project File of April and exported Midis broken
Heinz Hupfer replied to Heinz Hupfer's topic in Cakewalk Sonar
HI:) Problem solved! I had an older Backup of the project and this works. Don't know what happened but I'm sure it has to do with porting all projects to another (new) disc. As far as I know it's the only project that's broken. OK, all is fine now;) Thanks for the answers! Bassman. -
[Solved]Project File of April and exported Midis broken
Heinz Hupfer replied to Heinz Hupfer's topic in Cakewalk Sonar
HI:) Me too! It's the first time I have such an issue and I use Cakewalk since 1987. Maybe something happend on copying my projects to another disc Partition on a new Install. As I said it's the only project ever that make these problems.. Even the exported Waves are broken:( I sent one to the client and made a backup so I have the Music and can make the music again, no prob. A problem is that I backed up the broken files and don't ....ahhh for sure I have an older backup on DVD and Blue Ray Disc. I'm stupid, just have to reload these older backups from 2019....... Bassman -
[Solved]Project File of April and exported Midis broken
Heinz Hupfer replied to Heinz Hupfer's topic in Cakewalk Sonar
Of course, no chance! Bassman. -
HI:) I worked a bit on a old project from 2019 end of April and saved it after I exported all Midi Tracks. Yesterday I wanted to open the project but it is broken, It's not possible to open it, wether in Sonar nor in Bandlab. Then I tried to import the midis in a new project but not possible either, all files that I saved in April are broken:( What happened? Attached a few Midis and the project File. Thanks;) Bassman. Donzdorfer Fasnetslied 2019 - 11.cwp Donzdorfer Fasnetslied - Musette - Chorus 1.mid Donzdorfer Fasnetslied - Musette - Einleitung.mid Donzdorfer Fasnetslied - Musette - Vers 1.mid
-
Wanted: Bass, Guitar, Drummer and Engineer.
Heinz Hupfer replied to Terry James Carroll's topic in The Coffee House
Hi there:) I can play bass on your songs, some guitars and for sure can do some mixing. As there are a few other musicians out there I would prefer playing Bass:) Greetz;) Bassman. -
HI:) Since the last Update I get a VST2 verify sign from "Loopmaster Bass Master" and the sign stays forever until I click it away. Don't know why this happens cause the Plugin works since years without problems! How can I avoid this verify sign? Thanks;) Bassman.
-
I need help writing a CAL script for moving MIDI notes
Heinz Hupfer replied to foxicoot's topic in General Music Discussion
Hi:) In "*\Cakewalk Content\Sonar\CAL Scripts" is a script which splits notes to tracks, I attached the file, but here's the script itself: ; ; Split Note to Tracks.cal ; ; This routine modifies a source track, splitting it by note# into ; separate destination tracks. Only notes are split ... all other ; track parameters (Controllers, Tempos, Meters and Markers), ; if any, remain in the source track. ; ; Use this routine for splitting up a drum machine or other type ; of instrument track where voices are assigned by note number. ; ; = Courtesy Red Nile Productions 1993 (714)498-7515 CIS:70044,2733 ; ; = Modified 12/10/93 by Greg Hendershott at user's request to ; have this display notes as names (like C#5) rather than numbers ; in the track names. Caveat: The note names always use sharps ; and assume BaseOctave=0. (do (if (< VERSION 20) (do (pause "This CAL program requires CAL version 2.0 or higher") (exit) ) ) (include "need20.cal") ; Require version 2.0 or higher of CAL (int nOctave) (int nSrcTrk 1) (int nDestTrk (+ nSrcTrk 1)) (int nDestChan 0) (int nDestPort 1) (int nNote 0) (int bEvent FALSE) (getInt nSrcTrk "Source Track?" 1 256) (-- nSrcTrk) ; CAL uses 0..255 (getInt nDestTrk "First Destination Track?" 1 256) (-- nDestTrk) ; CAL uses 0..255 (getInt nDestChan "Destination Channel?" 0 16) (-- nDestChan) ; CAL uses -1..15 (getInt nDestPort "Destination Port?" 1 16) (-- nDestPort) ; 0 .. 15 ; If markers not set, select entire range (if (== From Thru) (do (= From 0) (= Thru End) ) ) ; Select only source track (TrackSelect 0 -1) (TrackSelect 1 nSrcTrk) ; Set filter params. Split notes only .. ; Controllers stay in source track. (ResetFilter 0 TRUE) (SetFilterKind 0 NOTE TRUE) (SetFilterKind 0 KEYAFT FALSE) (SetFilterKind 0 CONTROL FALSE) (SetFilterKind 0 PATCH FALSE) (SetFilterKind 0 CHANAFT FALSE) (SetFilterKind 0 WHEEL FALSE) (while (< nNote 127) (do ; Check for note events at current note # ... (forEachEvent (if (&& (== Event.Kind NOTE) (== Note.Key nNote)) (= bEvent TRUE) ) ) ; If there are note events, paste them to the destination track (if (== bEvent TRUE) (do ; Status message (message "Note # " nNote " --> Track " (+ 1 nDestTrk)) ; Set up filter .. item 0, NOTE, in the range nNote..nNote (SetFilterRange 0 0 TRUE nNote nNote) ; Cut/Paste the filtered events to the destintation track (EditCut From Thru TRUE TRUE FALSE FALSE FALSE FALSE) (EditPasteToTrack From 1 1 TRUE FALSE FALSE FALSE nDestTrk) ; Name dest track (= nOctave (/ nNote 12)) (switch (% nNote 12) 0 (TrackName (format "Split Note C" nOctave) nDestTrk) 1 (TrackName (format "Split Note C#" nOctave) nDestTrk) 2 (TrackName (format "Split Note D" nOctave) nDestTrk) 3 (TrackName (format "Split Note D#" nOctave) nDestTrk) 4 (TrackName (format "Split Note E" nOctave) nDestTrk) 5 (TrackName (format "Split Note F" nOctave) nDestTrk) 6 (TrackName (format "Split Note F#" nOctave) nDestTrk) 7 (TrackName (format "Split Note G" nOctave) nDestTrk) 8 (TrackName (format "Split Note G#" nOctave) nDestTrk) 9 (TrackName (format "Split Note A" nOctave) nDestTrk) 10 (TrackName (format "Split Note A#" nOctave) nDestTrk) 11 (TrackName (format "Split Note B" nOctave) nDestTrk) ) ; Set forced channel & port, and unmute it (TrackChannel nDestChan nDestTrk) (TrackPort nDestPort nDestTrk) (TrackActive TRUE nDestTrk) (++ nDestTrk) (= bEvent FALSE) ) ) ; Else (++ nNote) ) ) ) Greetz;) Bassman. Split Note to Tracks.cal -
HI:) Newest File: LCXL2-Final ver3-09-24-2024.spp WAI Down and WAI Up Doublepress (Set WAI to Track/Bus) now works correctly in all Modes Track Select Right (Shift Button) is ACT Mode on Double Press, Track Select Left (Ctrl Button) is now Reset All on Double Press. Deleted ACT2 Mode, Synths and FX are both opened in ACT Mode! A few Bug Fixes on LEDs and Modes, especially Double Press Ctrl Button! Now it accidentically not opens PRV Mode anymore on exit ACT Mode! A lot of AZ Display Fixes. Other Bug Fixes. In Gain Access Mode Rotors 17-24 are now Send 1 Volume WAI 1-8. https://1drv.ms/f/s!Al2mKojzOW0Mv_5Qh3Qya0iZ1i8qdA?e=wJ8TeL Heinz.
- 1 reply
-
- midi controller
- azslow
-
(and 1 more)
Tagged with:
-
How can I save the (docked) Browsers Look?
Heinz Hupfer replied to Heinz Hupfer's topic in Cakewalk Sonar
Good news, thank you very much;) Bassman.