Previous Thread
Index
Next Thread
Print Thread
Go To
#577227 01/21/20 06:12 AM
Help! Tech S.O.S (Off topic)
Joined: Dec 2015
Posts: 1,114
Expert
OP Offline
Expert
Joined: Dec 2015
Posts: 1,114
Hi all

I’m sure that those that use Cakewalk by bandlab will know that when you start Cakewalk it will turn Local off on your keyboard, this is great as it stops the old doubling of note problem.
Trouble is it does not turn local back on when you exit (BIAB does this seamlessly)
Has anyone found a fix for this, apart that is from creating a simple midi file with the correct cc to implement before closing. This is not a lot better than having to go to the keyboards settings and do it manually after exit.
I notice Jim Fogel has responded to this in the cakewalk forum but don’t see a solution.
Any more thoughts Jim, anyone?
Mike

Last edited by Mike Head; 01/21/20 06:15 AM.

BIAB2021 UltraPlus,AsusN55S1Tbssd, W10/64,Akai EIEpro
Yamaha CVP405,SquireStrat, CoolsoftVMidSynth
Novatation Impulse61 Ctr kbd, Cwalk blab Kontakt

http://mikesmusic.byethost16.com/
Help! Tech S.O.S (Off topic)
Joined: Dec 2013
Posts: 2,732
Veteran
Offline
Veteran
Joined: Dec 2013
Posts: 2,732
Start/Stop BIAB? -->Runs/hides




Steve

BIAB/RB 2022, Pro Tools 2020, Korg N5, JBL LSR 4328 Powered Monitors, AKG/Shure Mics.
PC: Win11 PRO, 4 TB M2 SSD, 2 TB HD, 128 GB Memory
Help! Tech S.O.S (Off topic)
Joined: Jun 2000
Posts: 2,475
Veteran
Offline
Veteran
Joined: Jun 2000
Posts: 2,475
In CW that done in the "TTSseq.ini" file that is only scanned (applied) at CW start-up

https://www.cakewalk.com/Documentation?product=SONAR&language=3&help=Playback.36.html


so you can remove that line and manually set local control (on/off) on HW synth or construct either a .syx file or better yet a .CAL script to send the specific Local Control On (or off) to your synths and send it before shutting down CW or when ever


The controller number for local on/off is 122

I have an old CAL script here that sends controller data if you want I can email it to you PM me - or if you have the old cal scripts from the old CAL contest winner set - it was called "c-ntrolr.cal" it's only 6KB

Larry




EDIT UPDATE

Here is the SCRIPT (start from first semi-colon'ed line down to where it says "NIL"
save the text in a file call it "whatever you want.CAL"

then run it as a Process in CW before shutting down
====================================================


;;; Robert C. Prince, III Cakewalk Pro SN: 406176-CP-4.0A
;;; P. O. Box 8043
;;; Athens, GA 30603-8043
;;; (404) 725-1014
;;;
;;; CONTROLR.CAL
;;;
;;; This is a CAL program that allows the user to change data for any
;;; controller using addition or subtaction of a fixed amount, a high
;;; and low boundary, or a percentage.
;;;
;;; NOTE: This program automatically deletes any consecutive duplicate
;;; controller values that are on the same MIDI channel.
;;;
;;; *********************************************************************
;;; Prolog
(do
; set variables
(int wtd 1) ; what user wants to do, fixed change default
(int ctrlr 7) ; which controller to affect, volume (7) is default
(int Fixed 1) ; if wtd=1 user wants fixed add/subtract
(int HiLo 2) ; if wtd=2 user wants hi low boundaries
(int Pct 3) ; if wtd=3 user wants percentage
(int c 0) ; counter to let user know something's happening
(int TEP 0) ; total events processed
(int TCVS 0) ; Temporary Controller Value Saver
(int TCCS 18) ; Temporary Controller Channel Saver
(int d 0) ; # dupes eliminated

; get which controller user wants to affect
(getInt ctrlr "Controller Number: " 1 127)

; get what user wants to do with the controller data
(getInt wtd "Fixed=1 Hi/Low=2 Percentage=3:" 1 3)

; now set the variables according to the task to complete
(switch wtd

;if user chose Fixed, do the following
Fixed (do
(int amt 10)
(getInt amt "Amount to add?" -127 127)
)

; if user chose Hi/Low, do the following
HiLo (do
(int H 127) ; the highest data allowed
(int L 0) ; the lowest data allowed
(getInt H "Highest amount:" 0 127 ) ; get Hi
(getInt L "Lowest amount:" 0 127 ) ; get the Low
)

; if user chose Percentage, do the following
Pct (do
(int percent 100)
(getInt percent "Percentage?" 1 1000)
)

;close off the switch parens
)

;close off the do parens
)

;;; *********************************************************************
;;; Body
;;;

(do

; let user know something's being done
(message "Controller " ctrlr
"Events: " c
" Total Events: " TEP
" Duplicates Deleted: " d
)

; bump up total events processed
(++ TEP)

; if the kind of event is a controller do something
(if (== Event.Kind CONTROL)

; yes it is a controller event, so see if it matches user's choice
(if (== Control.Num ctrlr)

; yes it matches user's choice
(do

(switch wtd

; if user chose Fixed, do the following
Fixed (+= Control.Val amt)

; if user chose Hi/Low, do the following
HiLo (do
; is the data less than L?
(if (< Control.Val L)

; YES, so make it equal L
(= Control.Val L)

; NO -- move on to next question
NIL

; close off the if paren
)

; is the data greater than H?
(if (> Control.Val H)

; YES, so make it equal H
(= Control.Val H)

; NO -- move on to next event
NIL

; close off the if paren
)

;close off the do paren
)

; if user chose Percentage, do the following
Pct
(do
; multiply data by percent
(*= Control.Val percent)

; divide result by 100
(/= Control.Val 100)

;close off do paren
)

;close off switch paren
)

; bump counter up
(++ c)

; delete any duplicates
(if (&& (== Control.Val TCVS) (== Event.Chan TCCS))
; yes it is a duplicate on the same MIDI channel
(do
(delete)
(++ d) ;; bump the # deletes counter up
)
; no it is not a dupe, so store it's value and Chan #
(do
(= TCVS Control.Val)
(= TCCS Event.Chan)
)
)

; close the yes event matches user's choice do paren
)

; no, it does not match user's choice, so do nothing
NIL

; close of if controller number matches user's choice paren
)

; no it is not a controller event, so do nothing
NIL

; close off if event is controller paren
)

; close off body/do paren
)

;;; *********************************************************************
;;; Epilog
;;;

NIL






Last edited by Larry Kehl; 01/21/20 09:31 AM.

Win10Pro,i9,64GB,2TBSSD+20TBHDDs,1080TI,BIAB'24,Scarlett18i8,Montage7,Fusion 8HD,QS8,Integra7,XV5080,QSR,SC-8850,SPLAT,FL21&others,Komp.14,IK suite&others, just a guitar player-AXE FX III &FM9T, FishmanTP, MIDIGuitar2, GK2/3'sw/GI20
Help! Tech S.O.S (Off topic)
Joined: Dec 2015
Posts: 1,114
Expert
OP Offline
Expert
Joined: Dec 2015
Posts: 1,114
HI

Thanks all,
yes I don’t have a problem with it switching local off when I start Cakewalk, I am pleased it does.

Just wish it tuned it back on when you exited automatically, without having to run cals or do it manually.
Thanks for your input on this.
Mike


BIAB2021 UltraPlus,AsusN55S1Tbssd, W10/64,Akai EIEpro
Yamaha CVP405,SquireStrat, CoolsoftVMidSynth
Novatation Impulse61 Ctr kbd, Cwalk blab Kontakt

http://mikesmusic.byethost16.com/
Previous Thread
Next Thread
Go To

Link Copied to Clipboard
ChatPG

Ask sales and support questions about Band-in-a-Box using natural language.

ChatPG's knowledge base includes the full Band-in-a-Box User Manual and sales information from the website.

PG Music News
Update Your PowerTracks Pro Audio 2024 Today!

Add updated printing options, enhanced tracks settings, smoother use of MGU and SGU (BB files) within PowerTracks, and more with the latest PowerTracks Pro Audio 2024 update!

Learn more about this free update for PowerTracks Pro Audio & download it at www.pgmusic.com/support_windows_pt.htm#2024_5

The Newest RealBand 2024 Update is Here!

The newest RealBand 2024 Build 5 update is now available!

Download and install this to your RealBand 2024 for updated print options, streamlined loading and saving of .SGU & MGU (BB) files, and to add a number of program adjustments that address user-reported bugs and concerns.

This free update is available to all RealBand 2024 users. To learn more about this update and download it, head to www.pgmusic.com/support.realband.htm#20245

The Band-in-a-Box® Flash Drive Backup Option

Today (April 5) is National Flash Drive Day!

Did you know... not only can you download your Band-in-a-Box® Pro, MegaPAK, or PlusPAK purchase - you can also choose to add a flash drive backup copy with the installation files for only $15? It even comes with a Band-in-a-Box® keychain!

For the larger Band-in-a-Box® packages (UltraPAK, UltraPAK+, Audiophile Edition), the hard drive backup copy is available for only $25. This will include a preinstalled and ready to use program, along with your installation files.

Backup copies are offered during the checkout process on our website.

Already purchased your e-delivery version, and now you wish you had a backup copy? It's not too late! If your purchase was for the current version of Band-in-a-Box®, you can still reach out to our team directly to place your backup copy order!

Note: the Band-in-a-Box® keychain is only included with flash drive backup copies, and cannot be purchased separately.

Handy flash drive tip: Always try plugging in a USB device the wrong way first? If your flash drive (or other USB plug) doesn't have a symbol to indicate which way is up, look for the side with a seam on the metal connector (it only has a line across one side) - that's the side that either faces down or to the left, depending on your port placement.

Update your Band-in-a-Box® 2024 for Windows® Today!

Update your Band-in-a-Box® 2024 for Windows for free with build 1111!

With this update, there's more control when saving images from the Print Preview window, we've added defaults to the MultiPicker for sorting and font size, updated printing options, updated RealTracks and other content, and addressed user-reported issues with the StylePicker, MIDI Soloists, key signature changes, and more!

Learn more about this free update for Band-in-a-Box® 2024 for Windows at www.pgmusic.com/support_windowsupdates.htm#1111

Band-in-a-Box® 2024 Review: 4.75 out of 5 Stars!

If you're looking for a in-depth review of the newest Band-in-a-Box® 2024 for Windows version, you'll definitely find it with Sound-Guy's latest review, Band-in-a-Box® 2024 for Windows Review: Incredible new capabilities to experiment, compose, arrange and mix songs.

A few excerpts:
"The Tracks view is possibly the single most powerful addition in 2024 and opens up a new way to edit and generate accompaniments. Combined with the new MultiPicker Library Window, it makes BIAB nearly perfect as an 'intelligent' composer/arranger program."

"MIDI SuperTracks partial generation showing six variations – each time the section is generated it can be instantly auditioned, re-generated or backed out to a previous generation – and you can do this with any track type. This is MAJOR! This takes musical experimentation and honing an arrangement to a new level, and faster than ever."

"Band in a Box continues to be an expansive musical tool-set for both novice and experienced musicians to experiment, compose, arrange and mix songs, as well as an extensive educational resource. It is huge, with hundreds of functions, more than any one person is likely to ever use. Yet, so is any DAW that I have used. BIAB can do some things that no DAW does, and this year BIAB has more DAW-like functions than ever."

Convenient Ways to Listen to Band-in-a-Box® Songs Created by Program Users!

The User Showcase Forum is an excellent place to share your Band-in-a-Box® songs and listen to songs other program users are creating!

There are other places you can listen to these songs too! Visit our User Showcase page to sort by genre, artist (forum name), song title, and date - each listing will direct you to the forum post for that song.

If you'd rather listen to these songs in one place, head to our Band-in-a-Box® Radio, where you'll have the option to select the genre playlist for your listening pleasure. This page has SoundCloud built in, so it won't redirect you. We've also added the link to the Artists SoundCloud page here, and a link to their forum post.

We hope you find some inspiration from this amazing collection of User Showcase Songs!

Congratulations to the 2023 User Showcase Award Winners!

We've just announced the 2023 User Showcase Award Winners!

There are 45 winners, each receiving a Band-in-a-Box 2024 UltraPAK! Read the official announcement to see if you've won.

Our User Showcase Forum receives more than 50 posts per day, with people sharing their Band-in-a-Box songs and providing feedback for other songs posted.

Thank you to everyone who has contributed!

Forum Statistics
Forums66
Topics81,579
Posts734,675
Members38,499
Most Online2,537
Jan 19th, 2020
Newest Members
Tusar Sarkar, RTW, wtsy365, DerFlex, xabialonso259@gmai
38,499 Registered Users
Top Posters(30 Days)
MarioD 200
DC Ron 108
dcuny 88
WaoBand 75
Today's Birthdays
AlberMaxSax, Lloyd Morris
Powered by UBB.threads™ PHP Forum Software 7.7.5