Welcome to %s forums

BrainModular Users Forum

Login Register

Search found 1292 matches

by woodslanding
01 Apr 2026, 20:15
Forum: Patching questions
Topic: how to get value for global array string
Replies: 3
Views: 28365

Re: how to get value for global array string

here I am needing it again.... a search only turns up the crickets from my first request ;D

Workaround in progress. maybe I'll check back next year....

If this exists, it should be added to the manual.
by woodslanding
11 Dec 2025, 01:26
Forum: Suggestions & improvements
Topic: INCLUDE function in scripts?
Replies: 1
Views: 3933

INCLUDE function in scripts?

I've been thinking of changing my debug methods in scripts to write to an external file, since the trace is unreadable with my eyesight, and the console is spammed by usine internal messages. Also I cannot get the filter to work, (no mention of it at all in the manual entry for the inspector) and th...
by woodslanding
01 Jun 2025, 19:23
Forum: Patching questions
Topic: Specify position of vst popup?
Replies: 1
Views: 20313

Specify position of vst popup?

The position gets remembered with the preset (which I'd rather it didn't) so it seems like Usine can control its position... (or maybe that's hidden in the vst chunk??) But there doesn't seem to be any place to specify or override it. I know it used to be possible to embed a vst window in a usine wi...
by woodslanding
31 May 2025, 18:42
Forum: Patching questions
Topic: Alternatives to 'has changed'?
Replies: 4
Views: 33155

Re: Alternatives to 'has changed'?

I was just thinking along these lines, oli! My values are text strings, and I was thinking I could add a character at the beginning or end, that gets stripped out later. If the character is different when the data comes from the UI vs. when it is read off disk, that will trigger the hasChanged, even...
by woodslanding
29 May 2025, 23:12
Forum: Patching questions
Topic: Midi out from script looks good, but doesn't show up on cable
Replies: 1
Views: 20479

Re: Midi out from script looks good, but doesn't show up on cable

fixed: const MIDI_TAGS = ['fs1-leslie','fs2-tapRec','fs3-sustain','fs4','mod','vol','ped2','exp']; const MIDI_CCS_IN = [28,27,26,25,1,7,11,12]; const MIDI_CCS_OUT = [28,27,64,25,1,7,11,12]; var midiIN : Tparameter; var ccMidiOUTs,ccValOUTs,ccINs : array [0..length(MIDI_TAGS) - 1] of Tparameter; // G...
by woodslanding
28 May 2025, 21:49
Forum: Patching questions
Topic: Midi out from script looks good, but doesn't show up on cable
Replies: 1
Views: 20479

Midi out from script looks good, but doesn't show up on cable

The midi seems well-formed enough to display correctly in the inspector for the script, but nothing comes out the midi output cables. The data outs work fine.... I feel like maybe an array isn't initialized somewhere? But I can't spot anything. THANKS! -e const MIDI_TAGS = ['fs1-leslie','fs2-tapRec'...
by woodslanding
27 May 2025, 20:15
Forum: General discussion
Topic: MIDI interface disconnected, can't reconnect
Replies: 0
Views: 34321

MIDI interface disconnected, can't reconnect

I have my midi footcontroller set up with a magnetic usb connector, to save wear and tear and setup time over 1000s of setups and teardowns. Sometimes I kick it by mistake, and knock the usb loose for a fraction of a second. I used to be able to get it working by: disabling the pedals in settings. u...
by woodslanding
27 May 2025, 19:49
Forum: Patching questions
Topic: Alternatives to 'has changed'?
Replies: 4
Views: 33155

Re: Alternatives to 'has changed'?

well, I've not tried using the SDK, but I'll keep that in mind.
by woodslanding
25 May 2025, 19:40
Forum: Patching questions
Topic: Suspend audio processing from script?
Replies: 5
Views: 35450

Re: Suspend audio processing from script?

Okay, I tried that. Took a while to circle back to this issue....

The rack has no audio inputs at all, and does no audio processing, but I still get audio dropout errors on it, if I use 'always calculated'.... even if global processing is turned off.

But it seems to work fine, so no big deal.
by woodslanding
25 May 2025, 05:52
Forum: Patching questions
Topic: how to get value for global array string
Replies: 3
Views: 28365

how to get value for global array string

my guess of GetGlobalArrayString doesn't work.

(I'm using usine from last october while I wait for the authorisation for the new version, so let me know if this has been added since....)

Thanks!

Edit: talking about via script, btw....
by woodslanding
24 May 2025, 18:33
Forum: Patching questions
Topic: Using Global Arrays
Replies: 6
Views: 24066

Re: Using Global Arrays

Thanks that is very helpful. All my GA's are in track 1, but so are most of the scripts!
by woodslanding
30 Apr 2025, 17:03
Forum: Patching questions
Topic: Using Global Arrays
Replies: 6
Views: 24066

Re: Using Global Arrays

Okay, if I mis-name the GA, it is properly created! Usine doesn't have a problem with the script trying to access a non-existent array. (Although it does throw an error, it is not an access violation). But if I try to access an existing array too early, it causes an access violation. I solved this b...
by woodslanding
30 Apr 2025, 16:22
Forum: Patching questions
Topic: Using Global Arrays
Replies: 6
Views: 24066

Re: Using Global Arrays

Okay, removing the lines referring to the GA from the scripts cured the problem.

So an actual patching question:

How can I let the script know when the GA is actually operational so I can read and write to it?
by woodslanding
30 Apr 2025, 16:16
Forum: Patching questions
Topic: Using Global Arrays
Replies: 6
Views: 24066

Re: Using Global Arrays

I may be in a catch-22 here. If I try to remove or rename the non-functioning GA, I get this error: [1408] Error : PROC:globalArrayRemoveClient ERROR:Access violation at address 0000000000523CEB in module 'Usine.exe'. Read of address FFFFFFFFFFFFFFFF Maybe this prevents the wkp from saving correctly...
by woodslanding
30 Apr 2025, 16:05
Forum: Patching questions
Topic: Using Global Arrays
Replies: 6
Views: 24066

Using Global Arrays

I am having a problem with global arrays. The most recent such array I used is not being recognized after restarting the app and loading the wkp. Before filing a bug report, I want to make sure there isn't something I'm forgetting about. Should the following situation be possible?? Can you create a ...
by woodslanding
21 Apr 2025, 21:38
Forum: Patching questions
Topic: multidimensional arrays in scripts?
Replies: 5
Views: 28183

Re: multidimensional arrays in scripts?

Thanks! I am still curious what particular brand of pascal Usine uses.... I found a workaround that keeps my code more readable: for i = 0 to max for j = 0 to max idx = //compute from i and j do stuff with array[idx] However, I am now wishing for dynamic arrays in my second dimension, where each arr...
by woodslanding
14 Apr 2025, 18:51
Forum: Suggestions & improvements
Topic: Show value of control in parameters window
Replies: 11
Views: 55500

Re: Show value of control in parameters window

okay, ctl-p, VERY HELPFUL!!!

I like constant for checking values also. THANKS!
by woodslanding
14 Apr 2025, 18:48
Forum: Patching questions
Topic: multidimensional arrays in scripts?
Replies: 5
Views: 28183

multidimensional arrays in scripts?

this syntax is from pascal forums:

var x: array [1..5, 1..9] of integer;

but usine complains about the comma.

Can we use multi-dimensional arrays? If so how?

And more broadly, what variant of pascal does usine actually employ??

THANKS!
-eric
by woodslanding
14 Apr 2025, 17:46
Forum: General discussion
Topic: Objects or cables?
Replies: 7
Views: 35176

Re: Objects or cables?

Thanks for the suggestions! I have been refactoring, and I am very happy to be able to address single parameters in a vst via objects, without sending around and rewriting the whole array. This alone has made a huge CPU difference. Before I was changing various params in various places, and merging ...
by woodslanding
02 Apr 2025, 05:21
Forum: Suggestions & improvements
Topic: Show value of control in parameters window
Replies: 11
Views: 55500

Re: Show value of control in parameters window

Just now saw this response.... did this happen? I'm not seeing it....

EDIT: I see, you have to pin it first. Is there a reason it's not in the main menu?

Anyway, thanks!
by woodslanding
02 Apr 2025, 01:03
Forum: General discussion
Topic: or Fun : 14 years ago Usine 5.80.020b
Replies: 4
Views: 47727

Re: or Fun : 14 years ago Usine 5.80.020b

Okay, here's some serious nostalgia.... 2008.. BEFORE USINE. Using Reaktor. Boy that was hard. reaktorControl.gif 2010... Spent a lot of time on skeumorphics! usineRigControl.jpg 2012... To hell with skeumorphics: Usine.jpg 2013... This is what the hardware looked like: DucktapeRig.jpg 2013... Softw...
by woodslanding
02 Apr 2025, 00:31
Forum: General discussion
Topic: Objects or cables?
Replies: 7
Views: 35176

Objects or cables?

I am trying to cut back on my CPU in a big way, to be able to run my setup on my old processor... saving and loading preset files from disk, and recall of wkp control values has made it possible to run with fewer channels, I am most of the way there. Since I am now addressing all my controls via obj...
by woodslanding
24 Dec 2024, 20:45
Forum: Patching questions
Topic: Suspend audio processing from script?
Replies: 5
Views: 35450

Re: Suspend audio processing from script?

I thought the script could not run with the main engine off. My scripts don't usually. But if you turn off processing from within the script, the rest of the script will still run??

I will try it.
by woodslanding
12 Dec 2024, 18:01
Forum: Patching questions
Topic: Suspend audio processing from script?
Replies: 5
Views: 35450

Re: Suspend audio processing from script?

Well, I moved everything to processIdle, and now I don't get errors.

However, it takes about 15 seconds for it to run, in an otherwise empty wkp. It seems odd to me that usine would use so much processor when there are no actual audio objects....

Thoughts?

cheers,
-e
BACKUP.wkp
(160.75 KiB) Downloaded 657 times
by woodslanding
12 Dec 2024, 17:55
Forum: Suggestions & improvements
Topic: vertical scrollbar in text areas
Replies: 1
Views: 23896

vertical scrollbar in text areas

I feel like I mentioned this before, but I didn't find it. My backup patch generates its own mini-trace, in a popup window, so I can see which files are backed up. Unfortunately the text area module does not have an option for a scrollbar, so the only way to view all the text is from the inspector f...
by woodslanding
12 Dec 2024, 17:04
Forum: Patching questions
Topic: Suspend audio processing from script?
Replies: 5
Views: 35450

Suspend audio processing from script?

I have a script that backs up my file tree of presets and patches, since I now have my wkp running on two different machines, and need to keep both instances synced. It works great. The only problem is that I get a huge string of audio dropout errors when I run it. And of course the script won't run...
by woodslanding
12 Dec 2024, 08:26
Forum: Patching questions
Topic: log vs exp question
Replies: 3
Views: 31638

Re: log vs exp question

Here's the script, if it's useful to anybody.... /////////////////////////////////////////////////////////// // TOUCH FADER // eric moon 2024 // Wire this up to a fader to get a feature where you can touch the fader at a // spot, and it will go to that value. // dragging works as usual. // set logIN...
by woodslanding
12 Dec 2024, 06:42
Forum: Patching questions
Topic: log vs exp question
Replies: 3
Views: 31638

Re: log vs exp question

well, some more experimenting. I tried mouse * mouse, and that was better. mouse^4 seems about right. Guess that will do!

cheers,
-e
by woodslanding
11 Dec 2024, 23:30
Forum: Patching questions
Topic: log vs exp question
Replies: 3
Views: 31638

log vs exp question

I've been trying to create script that adds touch functionality to a fader. So if you touch it without dragging, it goes immediately to the position of the touch. Eventually, I'd like to have it move to the value at a specific rate, but that comes later. It works fine so far, but then I realized tha...
by woodslanding
09 Dec 2024, 07:39
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Re: Any way to know when Enter key is pressed on text fader?

Here's the script, in case it's useful to someone. It only does capital letters so far. I'm not sure what to do about that--I am not checking the shift key, so I would expect all lower case letters. I will look into it more, but this will work okay for now. //////////////////////////////////////////...
by woodslanding
09 Dec 2024, 06:43
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Re: Any way to know when Enter key is pressed on text fader?

Went searching through the forums, and tracked down Chr(keynum) command. Working great! I'll post my patch when I get it a little more debugged.... would be nice to put that in the string part of the scripts page of the manual.
by woodslanding
09 Dec 2024, 02:48
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Re: Any way to know when Enter key is pressed on text fader?

I am working on a script that would turn a switch into a text fader, because the entry popup in a text fader is so small. I am running into a problem trying to convert keycodes to text. Is there a usine method for turning keycodes into strings or chars? I am not having luck tracking that down. I kno...
by woodslanding
08 Dec 2024, 17:38
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Re: Any way to know when Enter key is pressed on text fader?

Well, there is a problem with this. If I escape from the textfield, because I changed my mind, that leaves the mouse value hot, and if I press enter from some other textfield, or for any other reason, it fires, and sends the data. Trying to figure this out... Would sure be nice to have an 'is editin...
by woodslanding
08 Dec 2024, 07:04
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Re: Any way to know when Enter key is pressed on text fader?

Coming back to this years later.

This patch makes me unreasonably happy. A text fader that triggers on enter, even if the text is unchanged. So great!

Mouse in makes sure enter key doesn't have an effect unless the text is open for editing...

cheers!
EnterText.usine-subpatch
(16.35 KiB) Downloaded 715 times
by woodslanding
08 Dec 2024, 06:30
Forum: Suggestions & improvements
Topic: save wkp as
Replies: 2
Views: 25689

Re: save wkp as

I guess I should move this to patching forum, sorry.

This can work, except that I'm not sure how to know when the wkp is done saving.... is there a way to know this?

I guess for now, I can have a 'backup wkp' feature that just copies, renames and moves Autoload.
by woodslanding
07 Dec 2024, 21:03
Forum: Suggestions & improvements
Topic: save wkp as
Replies: 2
Views: 25689

save wkp as

Reading the manual it looks like this should be in the master panel, but it doesn't seem to be. Rename wkp would also work for my purposes. Okay, as usual, asking the question provides the answer. I think I can have a button that runs a script that: 1.saves the wkp (always called autoload) 2.copies ...
by woodslanding
07 Dec 2024, 20:51
Forum: Patching questions
Topic: Memory leaks in scripts
Replies: 1
Views: 28445

Re: Memory leaks in scripts

well I only found a couple of errors that I know of. One issue I think might be that when a script is initialized, there may not be values at all the inputs. I traced N, and found times when I expected a value, but usine didn't have one yet. Not sure that's an actual problem, but I put in checks any...
by woodslanding
04 Dec 2024, 20:40
Forum: Add-ons discussion
Topic: Matrix swapping
Replies: 1
Views: 25120

Re: Matrix swapping

okay already bug fixes. I think I fixed an init bug. Also, put a selected commatext out, because I needed that too. And in the wkp, there was jitter, so now the loop is only closed when the mouse is down.
MatrixSwapWithPipe.pat
v1.1 fixed init issue and jitter.
(33.65 KiB) Downloaded 712 times
by woodslanding
04 Dec 2024, 20:11
Forum: Add-ons discussion
Topic: Matrix swapping
Replies: 1
Views: 25120

Matrix swapping

It's not often I make something that I think might be useful for someone else. My wkp is not really modular at all! But here's something that might be useful to someone else. I like to read my matrices newspaper style in columns, rather than across by rows. I also have need to store a multi-selectio...
by woodslanding
04 Dec 2024, 18:48
Forum: Patching questions
Topic: Alternatives to 'has changed'?
Replies: 4
Views: 33155

Alternatives to 'has changed'?

I have a recurring type of small bug in my wkp. This happens when I set an object's value, and that value happens to be the same value it was before, so hasChanged doesn't see it... but the user has changed the next thing in line in the meantime, so now the two objects are out of sync. I'm contrasti...
by woodslanding
02 Dec 2024, 16:59
Forum: Patching questions
Topic: Memory leaks in scripts
Replies: 1
Views: 28445

Memory leaks in scripts

Well, I'm crazy excited because after 12(or more?) years of building my wkp in Usine, it is finally doing what I envisioned at the beginning. Thanks to Olivier et al for making this amazing software, thanks especially for Usine objects, and VST loadFromFileDirect which were both total game-changers ...
by woodslanding
23 Nov 2024, 22:24
Forum: Suggestions & improvements
Topic: Patch window navigation
Replies: 0
Views: 29383

Patch window navigation

Most of the time I have the IB window open. I would never need to open the racks window except to add devices, which happens every few years.... Otherwise, I only use the rack view for navigating between patch windows. I wish I could use keycommands to move around patches from within the patch windo...
by woodslanding
23 Nov 2024, 02:42
Forum: Patching questions
Topic: How to know when a new buss is ready to get data?
Replies: 2
Views: 27902

Re: How to know when a new buss is ready to get data?

here's what I came up with... it seems to work. I just keep sending the trigger to load until I get a loaded command back from the patch.
keepLoading.usine-subpatch
(14.75 KiB) Downloaded 657 times
by woodslanding
21 Nov 2024, 22:32
Forum: Patching questions
Topic: How to know when a new buss is ready to get data?
Replies: 2
Views: 27902

How to know when a new buss is ready to get data?

In my wkp, I use LOADPATCH to load a new patch that hosts a vst. Then I want send it a LOAD FROM FILE DIRECT command. Problem is, in my large workspace (it works fine in a smaller test bed) it seems like there is a delay before the busses get connected, so the LOAD FROM FILE command doesn't go throu...
by woodslanding
19 Nov 2024, 19:54
Forum: Suggestions & improvements
Topic: select and copy object path
Replies: 0
Views: 29440

select and copy object path

It's great that I can see the object path in the inspector for a control, thanks!

But it is frustrating that I can't see the WHOLE global path, and can't select or copy it, to use or to look at in a text editor....

EDIT: That said, usine Objects are GREAT!!!!
by woodslanding
13 Nov 2024, 23:22
Forum: Suggestions & improvements
Topic: Reload button in script editor
Replies: 0
Views: 28661

Reload button in script editor

The editor looks much improved, but I still prefer to do most editing in VSCode. If I save the file from vscode, I can just reload it into the script. But that means opening the fileselector and selecting the file every time. A reload button would sure help when you are going back and forth 100 time...
by woodslanding
12 Nov 2024, 18:59
Forum: Suggestions & improvements
Topic: Better Trace?
Replies: 2
Views: 22210

Better Trace?

The trace window has gotten worse not better in HH 6. I used to be able to open a more readable window by clicking, now it just copies to clipboard, which is even more awkward. Can we just get a trace window font size/color control? And maybe a filter? The low-contrast 6-point font is impossible for...
by woodslanding
07 Nov 2024, 16:46
Forum: Patching questions
Topic: trouble with callback on matrix input
Replies: 4
Views: 29131

Re: trouble with callback on matrix input

Well, I re-wrote the script so it doesn't need to send an Array out. I still don't understand why it's not working, but I guess I don't need to know, for now.
by woodslanding
02 Nov 2024, 19:54
Forum: Patching questions
Topic: trouble with callback on matrix input
Replies: 4
Views: 29131

Re: trouble with callback on matrix input

here's my test patch:
MatrixSwitchTestAgain.pat
(23.63 KiB) Downloaded 740 times
Again, if I change the value of the first cell, all arrayOUT values update correctly. But even though the callback method always gets called, it only works when the first arrayIN value changes.

Thanks
by woodslanding
02 Nov 2024, 19:39
Forum: Patching questions
Topic: trouble with callback on matrix input
Replies: 4
Views: 29131

trouble with callback on matrix input

I have a script that aims to display matrix data in columns. It works fine for the text of the cells, but I recently tried to use it to reorder the cells values, and I'm having trouble with the array ins and outs. Basically the output array only changes if the first item in the input array changes. ...
by woodslanding
31 Oct 2024, 02:30
Forum: Patching questions
Topic: Moving GUI to poly object
Replies: 4
Views: 29478

Re: Moving GUI to poly object

Okay, well, I have about 100 quick links in each channel, and they don't work in poly. Not sure how much CPU that saves, but it's going to be a lot of work to replace them, there are so many nested deep in subpatches. So maybe I'll backburner this for now. I guess many of them could get/send values ...
by woodslanding
30 Oct 2024, 22:30
Forum: Patching questions
Topic: Moving GUI to poly object
Replies: 4
Views: 29478

Re: Moving GUI to poly object

Thanks Oli.... yeah, that was the basic idea... currently each rack is ins-> InputProcessing->GUI->VstHosting->outputProcessing->outs. But the midi is just passed through the gui block, as it doesn't get directly modified there anyway. However, most of the busses are scope RACK, which will change. N...
by woodslanding
29 Oct 2024, 17:18
Forum: General discussion
Topic: Hollyhock Mac M2/M3 and last OS ?
Replies: 6
Views: 52142

Re: Hollyhock Mac M2/M3 and last OS ?

Thanks for all the info. I was just revisiting the mac idea. Senso's note about PC optimizations seems like a probable deal-breaker. Sylvain, my wkp is mostly all about VST hosting, so yes, I am at the mercy of VST mfgs. So in that sense, it may not matter as much? I also have started using UNIFY as...
by woodslanding
28 Oct 2024, 18:48
Forum: Patching questions
Topic: Moving GUI to poly object
Replies: 4
Views: 29478

Moving GUI to poly object

In previous versions of my wkp, I have tried using a single poly object for most of the interface, since my paradigm is a mixer with a set of functionally identical channels. The advantage is that if I make an architectural change to a channel, I can just reset polyphony and the whole UI is rebuilt ...
by woodslanding
23 Aug 2024, 21:12
Forum: Patching questions
Topic: Set color array value?
Replies: 1
Views: 32051

Set color array value?

Can't figure out how to do this.... there is a set value for GA color, but that is not working for me....
GA color question.png
EDIT: checked the manual, needed to create the GA module, working now.
by woodslanding
23 Aug 2024, 19:32
Forum: General discussion
Topic: Hollyhock Mac M2/M3 and last OS ?
Replies: 6
Views: 52142

Re: Hollyhock Mac M2/M3 and last OS ?

Anyone else have any experience? I'm thinking of trying to run my setup on a mac laptop... so far no laptop has been capable enough. I have a RYZEN 5900x desktop machine currently, and it is right at capacity running my wkp at 128/44.1. **Almost** never drops out. Any sense which mac would be requir...
by woodslanding
20 Oct 2023, 19:05
Forum: General discussion
Topic: Match tempo precisely with external DAW
Replies: 4
Views: 47412

Re: Match tempo precisely with external DAW

+1 for ableton link.

I've been hand-synching with tap tempo all my life, but I am doing a new project where sync would be really useful, and the rest of the band is using link....
by woodslanding
28 Feb 2023, 19:19
Forum: Suggestions & improvements
Topic: resize flagged windows
Replies: 1
Views: 32844

resize flagged windows

They come up as tall as my window, and often I only need to see the first line. And sometimes I need a lot of them open.... would be nice to be able to make them small. Also, it would be nice to have breadcrumbs in the flagged window for the situation where I am opening a bunch of windows for simila...
by woodslanding
27 Feb 2023, 04:26
Forum: Suggestions & improvements
Topic: Show value of control in parameters window
Replies: 11
Views: 55500

Re: Show value of control in parameters window

Could 'settings' be an option in 'where'? I could move it to settings to look at it, and move it back where it belongs when I'm done... That said, the workaround above with caption works. 'show in patch' in settings is a bigger deal, especially on the tiny monitor I use live. In fact, since my IB is...
by woodslanding
27 Feb 2023, 04:21
Forum: Suggestions & improvements
Topic: External text editor for scripts
Replies: 8
Views: 43631

Re: External text editor for scripts

senso wrote:
07 Jan 2023, 15:52
did you try the 'include' directive ?
{$include C:\Users\senso\Desktop\test.fastscript}
I had no clue.

That's great!!

Can you reference the application path, or does it have to be hard coded?
by woodslanding
01 Feb 2023, 06:13
Forum: Patching questions
Topic: control RME UFX from HH?
Replies: 10
Views: 42119

Re: control RME UFX from HH?

https://www.tobias-erichsen.de/software/loopmidi.html Well, RME's midi implementation isn't much better, as it too is based on Mackie Control. You have to send a midi message to put it in a particular mode, and then send a midi value to a slider. Depending on the mode, the same midi data can contro...
by woodslanding
01 Feb 2023, 06:09
Forum: Patching questions
Topic: control RME UFX from HH?
Replies: 10
Views: 42119

Re: control RME UFX from HH?

Here is a means of addressing the volumes of all inputs and outputs of total mix, for anyone who might need it. It's really amazing to me that a company as sharp as RME has such a ridiculous and kludgey implementation, that actually requires up to three messages to get a specific action done. But th...
by woodslanding
31 Jan 2023, 22:09
Forum: Patching questions
Topic: control RME UFX from HH?
Replies: 10
Views: 42119

Re: control RME UFX from HH?

okay, got some help here, https://forum.rme-audio.de/viewtopic.php?id=25417

Will have a utility patch together soon and will post it.
by woodslanding
31 Jan 2023, 21:10
Forum: Patching questions
Topic: control RME UFX from HH?
Replies: 10
Views: 42119

Re: control RME UFX from HH?

I know it's been a while, but I finally got to this, and it is is great, thanks! I cleaned it up some more. It's now a poly patch that has sliders for multiple channels' inputs. However I can't figure out the addresses for outputs. The tutorial from the manual pages says to enable osc messages in th...
by woodslanding
28 Jan 2023, 05:32
Forum: Suggestions & improvements
Topic: Option to save VST state without window position
Replies: 0
Views: 52763

Option to save VST state without window position

Is there a way to do this? I'd like to remember the settings of a VST in a preset, but it's annoying that it also moves the window to wherever it was when I saved it... I guess this might be useful sometimes, but it isn't to me.... But maybe it's just part of the data from the VST, and there's nothi...
by woodslanding
28 Jan 2023, 02:13
Forum: Patching questions
Topic: Cannot get saveToFile() to work in script.
Replies: 7
Views: 49054

Re: Cannot get saveToFile() to work in script.

It is working on my machine in the newest version, thanks! Both saveToFile() and loadFromFile() still don't work when I put them in processIdle() though.... and excecution stops at that line, so if I put a flag after the command it is never reached, and I get an endless loop. I'm hoping these text f...
by woodslanding
25 Jan 2023, 20:47
Forum: Patching questions
Topic: Cannot get saveToFile() to work in script.
Replies: 7
Views: 49054

Re: Cannot get saveToFile() to work in script.

Okay, here is a test wkp that highlights what is happening. All I have to do is add a subfolder to the path in, and the script fails. In this patch, you can press the save button and it saves. Change the selector from 0 to 1, and it adds a subfolder to the path. Now press save. The patch does not sa...
by woodslanding
25 Jan 2023, 19:08
Forum: Patching questions
Topic: Cannot get saveToFile() to work in script.
Replies: 7
Views: 49054

Re: Cannot get saveToFile() to work in script.

It only works when the instIN is an empty string! Getting there...
by woodslanding
25 Jan 2023, 18:47
Forum: Patching questions
Topic: Cannot get saveToFile() to work in script.
Replies: 7
Views: 49054

Re: Cannot get saveToFile() to work in script.

Okay, I will try to simplify when I get a chance, but the following script works fine in usine 221115 and does not work in the two most recent Usine versions. EDIT: never mind, there is something else going on. This does work in an empty wkp in the newest version. const DBUG_ON = TRUE; const CHAN = ...
by woodslanding
25 Jan 2023, 17:40
Forum: Patching questions
Topic: Cannot get saveToFile() to work in script.
Replies: 7
Views: 49054

Re: Cannot get saveToFile() to work in script.

yeah, I know. But I thought there might be something obvious in there to someone more experienced than I. And I wasn't particularly expecting to hear from the developer... I've gotten help with far more complex scripts than this on the Reaper forum, but of course never ever from the development team...
by woodslanding
25 Jan 2023, 05:26
Forum: Patching questions
Topic: Cannot get saveToFile() to work in script.
Replies: 7
Views: 49054

Cannot get saveToFile() to work in script.

The script saves and loads state for a set of controls into a text file, via object commands. It creates a list of tags, and a corresponding list of addresses for the controls in the patch. In this script, the line just before the saveToFile() line gets printed, but the method stops there, and the f...
by woodslanding
15 Jan 2023, 19:26
Forum: General discussion
Topic: Error: Primary Sound Capture Driver Not Found
Replies: 1
Views: 42762

Error: Primary Sound Capture Driver Not Found

Any Idea what to do about this error on startup?

I'm on the xmas 2022 version.

thanks,
=e
by woodslanding
14 Jan 2023, 18:45
Forum: General discussion
Topic: Serious looping module
Replies: 11
Views: 59699

Re: Serious looping module

Just bumping this. I'd love to have a good looper in HH. I'm holding off reworking the old one, (from HH2, maybe??) and hoping for some of these feature upgrades to the sampler module....
by woodslanding
12 Jan 2023, 19:19
Forum: General discussion
Topic: Usine Is Killing it!
Replies: 4
Views: 46093

Usine Is Killing it!

For a mostly-one-man-and-a-few-friends operation, Usine has become an amazing program. Well it was always amazing considering that fact, now it's just plain amazing period! It's so solid for me now-- even when doing heavy patching and scripting it's going days without a crash (save your work often w...
by woodslanding
12 Jan 2023, 18:47
Forum: Suggestions & improvements
Topic: Show value of control in parameters window
Replies: 11
Views: 55500

Re: Show value of control in parameters window

Wow, noticing now that even cables can be pinned, that is AWESOME!!!!

(would be nice to have 'show in patch' there too....)

Also, I see a 'breakpoint' switch here. Is this in the manual yet? I'll have to look.
by woodslanding
12 Jan 2023, 17:33
Forum: Suggestions & improvements
Topic: Show value of control in parameters window
Replies: 11
Views: 55500

Re: Show value of control in parameters window

I just discovered that you can pin multiple param windows. WOW, COOL! So helpful.... But now, a 'show in patch' button there would be even more useful, for navigating back and forth between patching windows.... EDIT: Very clever to use the caption value as a monitor. A trick I will use many times, I...
by woodslanding
10 Jan 2023, 22:35
Forum: Suggestions & improvements
Topic: Show value of control in parameters window
Replies: 11
Views: 55500

Show value of control in parameters window

Oftentimes I have a control in my large wkp that is not easy to find or display. It might be invisible, or nested deep in containers in the IB which isn't currently open. Or it might be right there in the control panel, but obscured by other windows. All I want to do is check its value. Is there a r...
by woodslanding
10 Jan 2023, 22:10
Forum: Suggestions & improvements
Topic: Improvements to console
Replies: 3
Views: 35101

Re: Improvements to console

Great!! I can certainly be patient ;)
by woodslanding
06 Jan 2023, 20:56
Forum: Suggestions & improvements
Topic: Improvements to console
Replies: 3
Views: 35101

Improvements to console

It would be nice to have a filter for console messages. But there are some other improvements I'd like to see. First off, the trace text is the hardest to see in the entire UI. I have to take off my glasses and get within an inch of the screen to tell a 5 from an 8. This is the only text in the UI t...
by woodslanding
05 Jan 2023, 20:33
Forum: Suggestions & improvements
Topic: Global Script methods?
Replies: 1
Views: 31297

Global Script methods?

I have a few methods I end up putting in almost every script. eventually.... Would be nice to be able to include some of my own methods in a script, without having to copy them every time. When I program Reaper via LUA, it's easy to do includes, so I created a utility file full of methods. not a hug...
by woodslanding
05 Jan 2023, 18:10
Forum: Suggestions & improvements
Topic: External text editor for scripts
Replies: 8
Views: 43631

Re: External text editor for scripts

That all sounds good. I'm not sure how the issue of Script not referring to a file on disk is a problem to allow reloading. A patch in my wkp is also not on disk, but it does implement a 'reload patch' function. How is that done? I'm just thinking the script could work the same way.... I guess maybe...
by woodslanding
05 Jan 2023, 17:48
Forum: Patching questions
Topic: Supress file not found errors
Replies: 2
Views: 33377

Re: Supress file not found errors

Thanks!!
by woodslanding
05 Jan 2023, 01:45
Forum: Patching questions
Topic: Supress file not found errors
Replies: 2
Views: 33377

Supress file not found errors

There used to be an option to suppress the constant stream of error messages when a file is not found in a script call. Is that gone? Or do I just not know where to look?

My attempts to find the problem are thwarted because my debugging messages get lost in the sea of errors.
by woodslanding
05 Jan 2023, 01:15
Forum: Suggestions & improvements
Topic: External text editor for scripts
Replies: 8
Views: 43631

Re: External text editor for scripts

I think just having a 'RELOAD SCRIPT' button in the editor would go a long ways. Then I can save changes from my editor and just press the 'reload' button. Of course this means that the script needs to keep track of its source file like patches do. BTW, is there a way to find out what file a patch r...
by woodslanding
04 Jan 2023, 20:02
Forum: Patching questions
Topic: String methods in script: how to get parent folder of file?
Replies: 2
Views: 33523

Re: String methods in script: how to get parent folder of file?

One tiny related bug? fr?

I note that when a file does not have an extension, ExtractFileExtension returns the entire filename, instead of an empty string. Not too hard to work around, but not what I would expect....
by woodslanding
04 Jan 2023, 18:20
Forum: Suggestions & improvements
Topic: Text wrap in text panel module?
Replies: 2
Views: 34492

Re: Text wrap in text panel module?

Bumping this. It would also be really nice in comment modules.
by woodslanding
04 Jan 2023, 18:19
Forum: Suggestions & improvements
Topic: External text editor for scripts
Replies: 8
Views: 43631

External text editor for scripts

I know that creating a good text editor is not a priority, and I have a huge list of requests for improving the existing editor to get it to the point where I would be comfortable using it for more than adding a missing semi-colon to the end of a line. Even that can be frustrating. Is there a space ...
by woodslanding
03 Jan 2023, 19:22
Forum: Patching questions
Topic: String methods in script: how to get parent folder of file?
Replies: 2
Views: 33523

String methods in script: how to get parent folder of file?

I'd like to get the parent path of a file. so HH/mystuff/myfile.txt would return HH/mystuff. I'm not finding much in the docs that's useful. I see a 'pos' command that could be used to find path delimiters, but not sure how to get the location of the last delimiter. Also no substring methods I can s...
by woodslanding
07 Dec 2022, 04:34
Forum: Suggestions & improvements
Topic: Align/edit/resize multiple items
Replies: 9
Views: 42914

Re: Align/edit/resize multiple items

Yes, I've requested that before, but it does seem challenging to implement. You would have to show a special version of the parameter editor containing only the parameters that all the objects had in common, (hopefully with a large indicator that you are changing the parameters of multiple objects.)...
by woodslanding
07 Dec 2022, 03:47
Forum: Patching questions
Topic: Query a popup's visibility?
Replies: 4
Views: 29933

Re: Query a popup's visibility?

Sorry, my bad. How did I miss that?

these lists are indeed getting huge. maybe they need a search function! :0
by woodslanding
07 Dec 2022, 01:50
Forum: Patching questions
Topic: get list of directory items via script
Replies: 3
Views: 31846

Re: get list of directory items via script

Thanks, Senso, that's great!

Can someone explain the meaning of 'const' in these definitions? I've never encountered it in arguments to a method before this release.

EDIT: of course, as soon as I hit send, I think of a possibility... does it mean you can't change its value in the method body??
by woodslanding
06 Dec 2022, 05:46
Forum: Patching questions
Topic: Query a popup's visibility?
Replies: 4
Views: 29933

Re: Query a popup's visibility?

I want to know if it's open or not. I know where it is, of course! I want to turn on certain features if the user is trying to edit them via the popup, so I want the visibility of the popup to be able to trigger something else. I guess it needs to be a FR. The popup just needs an output terminal: is...
by woodslanding
06 Dec 2022, 05:36
Forum: Suggestions & improvements
Topic: Hide selection rectangle in IB?
Replies: 4
Views: 31516

Re: Hide selection rectangle in IB?

I can't use expert settings with the beta version! When will I be able to access the full version of the beta?

I've been asking over and over again since the spring.
by woodslanding
06 Dec 2022, 02:49
Forum: Patching questions
Topic: get list of directory items via script
Replies: 3
Views: 31846

get list of directory items via script

Last time I checked this was not possible, but Olivier said he planned to implement it. Has this happened? Suddenly a bigger issue, because I cannot supress the endless trace of 'file not found' messages in the beta FREE version--the page with the option to suppress is unavailable. But there are rea...
by woodslanding
01 Dec 2022, 16:36
Forum: General discussion
Topic: Plot1 and Plot2?
Replies: 2
Views: 38733

Re: Plot1 and Plot2?

sweet, thanks!
by woodslanding
29 Nov 2022, 08:08
Forum: Suggestions & improvements
Topic: CLAP support
Replies: 9
Views: 45717

Re: CLAP support

Well, just had my first installer ask where to put the clap file. That's 1 out of 850 or so ;)
by woodslanding
29 Nov 2022, 08:04
Forum: Suggestions & improvements
Topic: What rack am I in?
Replies: 9
Views: 39069

Re: What rack am I in?

Love it!!!
by woodslanding
29 Nov 2022, 08:03
Forum: Suggestions & improvements
Topic: Hide selection rectangle in IB?
Replies: 4
Views: 31516

Hide selection rectangle in IB?

I'm stuck with the free version of the beta, and I really don't like the selection border in the IB. But I do like it in the rack area, so I can be sure I'm saving the correct patch. Would be nice to be able to turn it off in the IB only.

hooray for breadcrumbs!!!!
by woodslanding
29 Nov 2022, 07:36
Forum: Patching questions
Topic: Query a popup's visibility?
Replies: 4
Views: 29933

Query a popup's visibility?

I can check the 'where' on most containers, but not on the popup. Is there another way?

I can certainly go back to using generic containers for popups, as I used to back in HH3 days.... but wondering if there is an easier solution....
by woodslanding
29 Nov 2022, 01:18
Forum: Patching questions
Topic: Use of 'variant' with getObject
Replies: 5
Views: 33617

Re: Use of 'variant' with getObject

I do not know what was going wrong. It suddenly started working. Maybe a space in a control name or something??? Anyway, all good now. No need for variants, just getting the string I wanted. suddenly. inexplicably. ;)
by woodslanding
28 Nov 2022, 21:09
Forum: Patching questions
Topic: Use of 'variant' with getObject
Replies: 5
Views: 33617

Re: Use of 'variant' with getObject

I actually don't need to query the variant for its type, I know it's a string. I just can't figure out how to get its string value.

Edit: It is actually a string value. It's just always equal to '83'.

Edit: I managed to get a different string okay, (YAY!) so there's something else going on....
by woodslanding
28 Nov 2022, 20:00
Forum: Patching questions
Topic: Use of 'variant' with getObject
Replies: 5
Views: 33617

Re: Use of 'variant' with getObject

Can someone put that in a little more context? Like how to use it with getObject? I tried this: var st: string; var v: TVarType; v := getObject(address); st := varType(varString); that's not it. It gives an assignment error (which I would include here if it was possible to select text from the scrip...
by woodslanding
28 Nov 2022, 18:43
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

Fixed in the beta, but new issues, sent bug report.
by woodslanding
28 Nov 2022, 16:48
Forum: Suggestions & improvements
Topic: Need access to value of objects via alt-right-click title
Replies: 1
Views: 25475

Need access to value of objects via alt-right-click title

Currently, regardless of whether there is an alt-title on a module, you can only access it's primary value via its caption name in getObject(). In the case of controls that are dynamically named, i.e. by the vst parameter name associated with their value, you can only access them via the truncated/d...
by woodslanding
28 Nov 2022, 16:42
Forum: Suggestions & improvements
Topic: Startup screen should not top over other applications
Replies: 0
Views: 51317

Startup screen should not top over other applications

No other application I commonly use does this on startup.

As I was scanning vsts, the Startup screen perfectly covered all the login pages in my browser for 10 minutes...
by woodslanding
28 Nov 2022, 16:35
Forum: Suggestions & improvements
Topic: Still no window positions?
Replies: 0
Views: 51745

Still no window positions?

Downloaded the beta, and disappointed that window sizes and positions are still not remembered. Especially when some script error makes usine crash repeatedly, I feel like I'm spending half my time resizing and moving windows around so I can work again.
by woodslanding
28 Nov 2022, 07:58
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

Well, I got this mostly working, but the above is a real headache. If I query the control for its caption, I still need to add dashes (and truncate it?) in order to get the actual ID of the control. It did occur to me to just use the Alt-name of the control, but that gives me nothing. Also, my textf...
by woodslanding
27 Nov 2022, 23:57
Forum: Patching questions
Topic: Use of 'variant' with getObject
Replies: 5
Views: 33617

Use of 'variant' with getObject

I've not seen the type 'variant' before. Is there a way to query what type it is?? How do I know whether to treat it as a string or a value?
by woodslanding
27 Nov 2022, 23:07
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

So I am trying the usine objects, and running into a problem. When I have a control whose name is changed programatically, I create a custom name for it that will not change, using alt-click. Problem is, now in the local object name list, the simple value for the control shows up under the caption n...
by woodslanding
27 Nov 2022, 22:18
Forum: Patching questions
Topic: Losing presets after resetting poly
Replies: 2
Views: 25917

Re: Losing presets after resetting poly

thanks so much for the example .pat, that is really helpful. Looks like there is good support for loading and saving these to disk as well...
by woodslanding
27 Nov 2022, 08:26
Forum: General discussion
Topic: Plot1 and Plot2?
Replies: 2
Views: 38733

Plot1 and Plot2?

Wondering what they are, but more importantly, can I remove them from the title bar?? ;)

Otherwise, the beta looks very nice!
by woodslanding
27 Nov 2022, 08:10
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

okay I see it in the beta. It looks like the scope of this is necessarily the WKP? And there is no way to set this programatically?? There's no inlet for it on the module, looks like. If so, this won't work in my case, as I have 15 identical GUIs, one for each channel, and don't want to change the n...
by woodslanding
27 Nov 2022, 07:21
Forum: Patching questions
Topic: Losing presets after resetting poly
Replies: 2
Views: 25917

Losing presets after resetting poly

Below are popups from two patches. They are identical, except that I reset poly on the textfields at the bottom on the right side popup. The only change is that I turned off show in/outlet for a control that didn't require it. Poly stayed the same, no controls were moved, rewired or renamed. But aft...
by woodslanding
25 Nov 2022, 07:03
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Re: Any way to know when Enter key is pressed on text fader?

I thought I had the solution. It seemed like the problem was that the key out never changed...
enterKey2.png
But this still has the problem that I cannot change the value of text 2, even when 'pass' is off. The pass output shows [-1], but the value still won't change.
by woodslanding
25 Nov 2022, 06:52
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Re: Any way to know when Enter key is pressed on text fader?

Okay, this seems to work pretty well... enterKey.png (for some reason, the 'key' output on the keyboard module is always zero.) The problem here, which I never know how to solve, is that if I put a PIC module before the text 2 fader, then change the text 2 fader value, and want to update it back to ...
by woodslanding
25 Nov 2022, 06:33
Forum: Patching questions
Topic: Any way to know when Enter key is pressed on text fader?
Replies: 9
Views: 41642

Any way to know when Enter key is pressed on text fader?

Sometimes PIC module isn't perfect. For regular faders, I can check mousedown. But the mouse is not down when I'm typing into a text fader. The important thing is when I press Enter, and I'd like to use that as a trigger....

Thoughts?

Thanks!!!!
by woodslanding
25 Nov 2022, 06:09
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

I'm not seeing a field for this on the remote page....

Is it only in the beta?
by woodslanding
24 Nov 2022, 05:44
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

Edit: removed old question I figured out the answer to... So it looks like there is one disadvantage vs. IML. The IML code for a control doesn't change if I move it from one sub-patch to another, as long as it's in the parent patch. Either way, I can just address it by its title. But with objects, t...
by woodslanding
24 Nov 2022, 05:14
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

Yikes, this looks amazing! Thanks!
by woodslanding
18 Nov 2022, 16:49
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Re: Script for Getting IML from controls

I tried this: function getIMLString(control: string) : string; var text: string; begin SendUsineMsg('SET_TARGET_PATCH','PARENT_PATCH'); SendUsineMsg('GET_STRING_VALUE', control, '1', text); debug('got IML from ' + control + ': ' + text); result := text; end But I get an error: 'don't know which over...
by woodslanding
18 Nov 2022, 15:55
Forum: Patching questions
Topic: Script for Getting IML from controls
Replies: 12
Views: 39891

Script for Getting IML from controls

Currently I'm using sends and dedicated inputs on my script, to get control values. But it occurs to me my wkp would be a lot cleaner if I just got the control values via IML, especially since I've already named all the controls. But I'm not clear what the syntax would be for that.... Is there an ex...
by woodslanding
18 Nov 2022, 08:00
Forum: Patching questions
Topic: IML working for text fader, but not button
Replies: 3
Views: 29024

Re: IML working for text fader, but not button

okay, I put a countdown in and it seems to be working. Thanks anyway...

Always helpful to figure out how to explain your problem to someone else!!
by woodslanding
18 Nov 2022, 07:00
Forum: Patching questions
Topic: IML working for text fader, but not button
Replies: 3
Views: 29024

Re: IML working for text fader, but not button

okay, I remembered the trace within a trace, and the IML does seem to be going through: process msg SET_TARGET_PATCH PARENT_PATCH SET_VAR patch 4928425519550224534 = D:\WINDOWS_MOON\Desktop\HH 5\gui.pat process msg SET_STRING_VALUE INST 1 Reaktor Set String Value INST 1 Reaktor process msg SET_TARGE...
by woodslanding
18 Nov 2022, 06:35
Forum: Patching questions
Topic: IML working for text fader, but not button
Replies: 3
Views: 29024

IML working for text fader, but not button

This code works on the text fader, for control = 'MYTEXTFADER' and data = 'name': SendUsineMsg('SET_TARGET_PATCH','PARENT_PATCH'); SendUsineMsg('SET_STRING_VALUE',control,'1',data); but this code does not seem to be changing the value of a button, for control = 'MYBUTTON' and data = '1': SendUsineMs...
by woodslanding
16 Nov 2022, 22:11
Forum: Patching questions
Topic: IML in Poly?
Replies: 2
Views: 24954

Addressing controls in Poly objects via IML

Sorry my title wasn't more precise...

RE: Addressing controls in Poly subpatches via IML

Thoughts, anyone?
by woodslanding
04 Nov 2022, 16:15
Forum: Suggestions & improvements
Topic: Search for Button Groups?
Replies: 0
Views: 57571

Search for Button Groups?

I avoid using button groups wherever possible, because I'm afraid of the consequences of using an existing button group number in a complex workspace. So it would be great to be able to search for button groups in the search box. Even better would be to be able to name button groups, rather than jus...
by woodslanding
03 Nov 2022, 18:23
Forum: Patching questions
Topic: IML in Poly?
Replies: 2
Views: 24954

Re: IML in Poly?

I re-read through the templates docs, and then I tried: 1. Re-naming an object in a specific voice. But no IML is created in the console. 2. Drag and Drop to a specific voice. But the IML does not seem to include any indication of which voice it was dropped into. It does look like maybe I can set po...
by woodslanding
03 Nov 2022, 05:19
Forum: Patching questions
Topic: Load Patch behaving strangely.
Replies: 4
Views: 29407

Re: Load Patch behaving strangely.

To be clear, the issue seems to be that if you send load_patch a load command before it has finished a previous load, it goes into an unstable state.
by woodslanding
03 Nov 2022, 05:17
Forum: Patching questions
Topic: IML in Poly?
Replies: 2
Views: 24954

IML in Poly?

Is there a syntax for setting the value of controls inside a poly sub-patch via IML? Of course, they all have the same name, so there would have to be additional syntax for the voice number...
by woodslanding
31 Oct 2022, 18:14
Forum: Suggestions & improvements
Topic: What rack am I in?
Replies: 9
Views: 39069

Re: What rack am I in?

And along the same lines.... when I use the search function, I get the rather unhelpful [order=nnnnn] indicator. The channel and slot would be much more helpful information. I'll also note that the search window stays on top of other applications, so I had to close it to finish writing this post: 20...
by woodslanding
29 Oct 2022, 23:41
Forum: Suggestions & improvements
Topic: What rack am I in?
Replies: 9
Views: 39069

Re: What rack am I in?

While I'm at navigation in the patching window.... It would be nice to be able to use the stock browser window commands, alt-left and alt-right to navigate the patching window's < and >. I'll also note that when navigating this way, the above clues to location would be even more helpful, especially ...
by woodslanding
29 Oct 2022, 23:37
Forum: Suggestions & improvements
Topic: What rack am I in?
Replies: 9
Views: 39069

What rack am I in?

I have a lot of deliberately identical patches across multiple racks. It would be nice if the patch editing window showed which rack (and maybe slot) I was editing. For now, I'm often not sure which patch I edited, and need to select a patch, drill down to the subpatch, and see if the edit is there....
by woodslanding
22 Oct 2022, 08:57
Forum: Patching questions
Topic: Load Patch behaving strangely.
Replies: 4
Views: 29407

Re: Load Patch behaving strangely.

Well, good grief, that was simple. It did not like the 'has changed' module on the output of the commatext module. I just took it out, and it loads just fine.

case closed. carry on. thanks anyway ;)
by woodslanding
22 Oct 2022, 08:36
Forum: Patching questions
Topic: Load Patch behaving strangely.
Replies: 4
Views: 29407

Load Patch behaving strangely.

]I am trying to implement global patch saving for my setup, which is challenging, as it requires loading a particular patch from memory via script, and then loading a patch for it from memory. I have the mechanism figured out, but I hit a snag. For some reason, when the LOAD trigger is sent via a di...
by woodslanding
15 Oct 2022, 07:12
Forum: Patching questions
Topic: use of string.endswith
Replies: 2
Views: 26358

Re: use of string.endswith

This is the problem when I go back to Pascal, after programming in anything else for a while... :/

THANKS!
by woodslanding
08 Oct 2022, 22:51
Forum: General discussion
Topic: Serious problem with modal windows in VST-plugins
Replies: 15
Views: 56613

Re: Serious problem with modal windows in VST-plugins

well, except I can't run my wkp under the beta ;)
by woodslanding
08 Oct 2022, 08:29
Forum: General discussion
Topic: Serious problem with modal windows in VST-plugins
Replies: 15
Views: 56613

Re: Serious problem with modal windows in VST-plugins

I tried to download the wrapper, but windows says the zip file is invalid...
by woodslanding
08 Oct 2022, 08:22
Forum: General discussion
Topic: Anyone using HH on an Apple M1 machine?
Replies: 2
Views: 35108

Re: Anyone using HH on an Apple M1 machine?

That's a bummer. I have a feeling there is still no laptop that can run my setup. My 5900 desktop machine is doing very well, but I don't have much headroom at 64 samples.... don't know if there is a laptop out yet that could match it. Don't want to go back to higher latency just for portability. I ...
by woodslanding
08 Oct 2022, 08:12
Forum: Patching questions
Topic: use of string.endswith
Replies: 2
Views: 26358

use of string.endswith

This method is not working for me. Maybe I misunderstand the syntax? Here is my method: procedure findFileAndLoad; var filenames : TStringList; var nsfile,targetName : string; var i:integer; begin if targetNameIN.length > 0 then begin //get commatext for file list input filenames.setCommatext(fileli...
by woodslanding
09 Sep 2022, 16:48
Forum: Patching questions
Topic: VST gui's taking a long time to open
Replies: 5
Views: 27918

Re: VST gui's taking a long time to open

It looks like I fixed it by reinstalling the offending plugins. Should have thought of that earlier....
by woodslanding
09 Sep 2022, 16:47
Forum: Patching questions
Topic: VSTs loading in a garbage state
Replies: 2
Views: 23265

Re: VSTs loading in a garbage state

well, it has now happened with BIOME, which is a completely different developer to Reaktor, Gtr Rig, or Kontakt. In BIOME's case it's actually been a good source of new random presets. Not so with the others, which make sustained 0 db noises that sometimes shut down my audio interface. I tried putti...
by woodslanding
01 Sep 2022, 20:11
Forum: Patching questions
Topic: VST gui's taking a long time to open
Replies: 5
Views: 27918

Re: VST gui's taking a long time to open

BTW, I am using the most recent non-beta, under windows 10 server.

I looked in the log to try to see where the holdup is, but the timing in the log is only accurate to the minute.
by woodslanding
01 Sep 2022, 16:12
Forum: Patching questions
Topic: VSTs loading in a garbage state
Replies: 2
Views: 23265

VSTs loading in a garbage state

In my wkp, both Kontakt and Guitar Rig are loading up in some sort of invalid state that leads to loud unpleasant noises on startup. In the case of Guitar Rig, it's immediate and constant. In the case of Kontakt, it is only when I play a note. In both cases, the output is extremely loud. It seems to...
by woodslanding
01 Sep 2022, 15:40
Forum: Patching questions
Topic: VST gui's taking a long time to open
Replies: 5
Views: 27918

VST gui's taking a long time to open

Seems like I can trace it back to a windows update.... but does anybody have any idea why this would be happening, or what to do about it??

All VSTs are taking much more time than they used to, but some large Kontakt ensembles can take a full minute to show the GUI...

Thoughts?
by woodslanding
29 Jul 2022, 05:43
Forum: General discussion
Topic: Anyone using HH on an Apple M1 machine?
Replies: 2
Views: 35108

Anyone using HH on an Apple M1 machine?

Just curious if anyone here has made the jump. The price of the new Mini is tempting me.... not looking forward to porting, of course.
by woodslanding
26 Jul 2022, 23:21
Forum: Suggestions & improvements
Topic: CLAP support
Replies: 9
Views: 45717

Re: CLAP support

I'm seeing pretty good uptake on this, so maybe there's something to it. Fingers crossed!
by woodslanding
17 Jun 2022, 09:22
Forum: Suggestions & improvements
Topic: CLAP support
Replies: 9
Views: 45717

Re: CLAP support

It would be really nice if it took off, and plug-in support could be open source.

That said, until the big players buy in, it's not so useful....
by woodslanding
13 Apr 2022, 16:49
Forum: General discussion
Topic: Serious problem with modal windows in VST-plugins
Replies: 15
Views: 56613

Re: Serious problem with modal windows in VST-plugins

If this has been fixed, I definitely need to update! Is this fixed in the main branch, or only in the beta? There are times when all I can do is force quit usine to get out of this! Sometimes I can get an alt command key to work on the window, but other times not. Obviously only a problem in fullscr...
by woodslanding
30 Oct 2021, 21:59
Forum: Suggestions & improvements
Topic: Make HH as a VSTi with a twist
Replies: 10
Views: 58897

Re: Make HH as a VSTi with a twist

I do use unify within HH, works fine.

Running HH as a vst would be awesome, although it would take a powerful computer if your wkp is very big...

Usine used to back in the day, but I'm not sure there are plans to do it again.

Could you use Rewire to similar effect?
by woodslanding
30 Oct 2021, 21:56
Forum: General discussion
Topic: Anyone tried HH with Linux?
Replies: 2
Views: 4068

Re: Anyone tried HH with Linux?

well, it doesn't appear linux is supported by my RME UFX interface, so I probably don't care ;)
by woodslanding
28 Oct 2021, 01:14
Forum: General discussion
Topic: Anyone tried HH with Linux?
Replies: 2
Views: 4068

Anyone tried HH with Linux?

Every few years, after a particularly annoying windows update, or what have you, I wonder about moving to Linux. Seems like the majority of plug-ins I use will work with WINE these days. Has anyone tried runnning HH under Linux? I know there's a Mac version now, not sure that helps.... Thoughts? che...
by woodslanding
07 Oct 2021, 19:19
Forum: Suggestions & improvements
Topic: Preset manager preset name input
Replies: 13
Views: 41087

Re: Preset manager preset name input

--The preset manager will be rewritten in the next major release, with many new features.--

Backward compatibility, or bulk conversion option, I hope!! I have over 750 HH preset files now, and more every day! ;)
by woodslanding
07 Oct 2021, 19:15
Forum: Patching questions
Topic: control RME UFX from HH?
Replies: 10
Views: 42119

Re: control RME UFX from HH?

OSC, huh? Wow, I am really not up to speed on that! If you could post those patches, that would be awesome.

Otherwise I'll look into it...

-- and now I do recall using a virtual driver when I had this working under the old Usine.
by woodslanding
07 Oct 2021, 19:13
Forum: General discussion
Topic: Thinking of new Ryzen build for HH5
Replies: 7
Views: 10494

Re: Thinking of new Ryzen build for HH5

Yeah, RME drivers all the way for me. I'm getting 15 racks at 64 with no problems so far, and I haven't really optimized windows or the CPU yet. I did read that at the moment, windows 11 will compromise latency on Ryzen processors, so best to wait to upgrade. But I hope nobody here is thinking of ju...
by woodslanding
01 Oct 2021, 21:13
Forum: Patching questions
Topic: control RME UFX from HH?
Replies: 10
Views: 42119

control RME UFX from HH?

Is there a way for Usine to appear as a midi source to other apps? (in this case totalmix)
I can control levels in TM from my physical midi interfaces, but can't figure out how to control it straight from Usine. Is this possible?

thanks!
by woodslanding
30 Sep 2021, 06:59
Forum: Suggestions & improvements
Topic: fader behavior option
Replies: 6
Views: 29114

Re: fader behavior option

Well, I checked it out, and I guess I will not use it. First of all, it still requires a drag to change values and second, it's a separate mode that has to be switched on or off. My fader goes to value when pressed like a button (on mouseup, of course) and changes value relatively when dragged. Ther...
by woodslanding
29 Sep 2021, 19:40
Forum: Patching questions
Topic: script command to get list of files in folder....
Replies: 3
Views: 5872

Re: script command to get list of files in folder....

let me know when you do, so I can try it out....
by woodslanding
29 Sep 2021, 19:38
Forum: Suggestions & improvements
Topic: fader behavior option
Replies: 6
Views: 29114

Re: fader behavior option

well, alright then, I will check it out!
by woodslanding
29 Sep 2021, 19:34
Forum: General discussion
Topic: favor background processes or applications?
Replies: 1
Views: 3367

favor background processes or applications?

Wondering which way I should set windows.... I know it used to be background services, but I'm wondering if that has changed.

Using Windows 10 server edition 2022 if that matters.
by woodslanding
16 Sep 2021, 01:29
Forum: General discussion
Topic: Thinking of new Ryzen build for HH5
Replies: 7
Views: 10494

Re: Thinking of new Ryzen build for HH5

Well yes I think I am actually using hollyhock correctly to get pretty good use of threads. I have each VST in its own rack, and all communication between them is via sends. I was having some clicks with modulation events but I was able to move some stuff to process idle, and it's actually working w...
by woodslanding
15 Sep 2021, 08:30
Forum: General discussion
Topic: Thinking of new Ryzen build for HH5
Replies: 7
Views: 10494

Re: Thinking of new Ryzen build for HH5

The intel stuff is going to be way too hot for me to run for a long time yet.... I'm worried about cooling 105w, never mind 165 or 180. And I do want to do something now. Zen3 seems to be working really well at very low latencies. I do have all my inter-rack connections as busses, so that's good. Se...
by woodslanding
15 Sep 2021, 08:19
Forum: Patching questions
Topic: why can't I change these fader values?
Replies: 6
Views: 8196

Re: why can't I change these fader values?

Nothing, it all worked fine when I started with a new fader. The text runs all along the bottom now. I think in the conversion from V4 values for H and W got confused. Looks like the text is limited in width to the fader's height.
by woodslanding
15 Sep 2021, 01:03
Forum: Suggestions & improvements
Topic: fader behavior option
Replies: 6
Views: 29114

Re: fader behavior option

would need to be an -option- for sure...not a good default behavior.... but it did seem to be reliable for me in my implementation. And with a slow curve, you would have a chance to recover from a mis-touch. One note: I have been noticing that my faders sometimes jump to max value and back to my fin...
by woodslanding
15 Sep 2021, 00:54
Forum: Patching questions
Topic: Keep synth or reverb tail after preset change
Replies: 8
Views: 13846

Re: Keep synth or reverb tail after preset change

Thanks for this, joffo. The env follower solution seems ideal to me. Probably takes more CPU, so I'll have to wait for my new computer to implement it. But it will hopefully solve the problem of not hearing tails when disabling a patch (and then hearing them when I re-enable it!) Oh wow, looking fur...
by woodslanding
15 Sep 2021, 00:49
Forum: General discussion
Topic: HH5 Freezes loading patch
Replies: 19
Views: 32948

Re: HH5 Freezes loading patch

Ariajazz wrote:
11 Sep 2021, 15:31

I could not be able to send a bug report. It seems that the page has been close. "contact & support" page does not open, 404 error appears instead.
Look on the forum in the bug report subforum. There's a simple email address to send the report.
by woodslanding
15 Sep 2021, 00:46
Forum: General discussion
Topic: Resource-less packaging of hh5
Replies: 6
Views: 11944

Re: Resource-less packaging of hh5

+1 I have been asking for this for a while. With Usine's incredibly frequent release schedule (not complaining!) and three computers using it to one degree or another, (and files going back and forth) trying to keep up with updates is a struggle. Would really like to see a FF type model, where if yo...
by woodslanding
15 Sep 2021, 00:41
Forum: General discussion
Topic: Has the website been tested with Firefox?
Replies: 7
Views: 9233

Re: Has the website been tested with Firefox?

My hopeful YES was correct!

Guess it was an old cookie that was confusing it. Not entirely surprising it was on every one of my computers....

problem solved!
by woodslanding
15 Sep 2021, 00:39
Forum: General discussion
Topic: Has the website been tested with Firefox?
Replies: 7
Views: 9233

Re: Has the website been tested with Firefox?

Read up a little more, and deleted my cookies.... will this work??

YES!
by woodslanding
14 Sep 2021, 19:02
Forum: General discussion
Topic: Has the website been tested with Firefox?
Replies: 7
Views: 9233

Has the website been tested with Firefox?

Because on all three of my computers, (including the live performance computer that has only been on a few dozen websites ever) I cannot post to this forum from firefox, I just get an error message. I keep all three updated with the latest versions. Luckily I have chrome on my laptop, so that's what...
by woodslanding
14 Sep 2021, 18:57
Forum: Suggestions & improvements
Topic: Making unusual connections to modules
Replies: 5
Views: 27292

Re: Making unusual connections to modules

I guess the advantage of the menu is that:
1. Larger items are easier to drag to
2. Long list is organized into pages
3. It already has scrollbars

But indeed, may not be worth the trouble for the small convenience ;)
by woodslanding
14 Sep 2021, 18:53
Forum: General discussion
Topic: Thinking of new Ryzen build for HH5
Replies: 7
Views: 10494

Thinking of new Ryzen build for HH5

I've become spoiled by running at 64 samples now under HH5, but a lot of my resource intensive Kontakt libraries won't play at the lower blocksize. And I'm wanting to add features again, as the program has become very stable for me... Thinking to get a Ryzen, and wondering how Usine does with variou...
by woodslanding
07 Sep 2021, 05:36
Forum: Patching questions
Topic: script command to get list of files in folder....
Replies: 3
Views: 5872

script command to get list of files in folder....

I have my presets on disk in folders by instrument, and then subfolders for banks, and I'm organizing them as time goes by. Soon I'd like to start using master presets... but it's very likely a preset might have moved from the folder it was in when the global preset was saved. So I'd like to write a...
by woodslanding
07 Sep 2021, 05:28
Forum: Patching questions
Topic: Moving presets to disk
Replies: 4
Views: 6419

Re: Moving presets to disk

Okay, I wrote a script to do the conversion... but it concerns me that someday I might make some kind of edit to a patch, and then it won't load its old presets any more?

I guess if that happens, I'll just have to do another conversion.
by woodslanding
07 Sep 2021, 05:24
Forum: Patching questions
Topic: recommended way to store array data
Replies: 2
Views: 4155

Re: recommended way to store array data

Perfect, thanks!
by woodslanding
05 Sep 2021, 02:23
Forum: Suggestions & improvements
Topic: Making unusual connections to modules
Replies: 5
Views: 27292

Making unusual connections to modules

I have been doing a lot of patching to modules' unusual connections, such as background color and cursor color, and have found it very awkward to do so. The module must be first opened up. Then dragged upward, often 2 or 3 times, while looking for the appropriate item. Then the cable can be attached...
by woodslanding
01 Sep 2021, 00:39
Forum: Patching questions
Topic: why can't I change these fader values?
Replies: 6
Views: 8196

Re: why can't I change these fader values?

seems like this is an artifact of the v4 conversion. Started with a new fader, and it's fine.
by woodslanding
01 Sep 2021, 00:39
Forum: Suggestions & improvements
Topic: Small UI issues
Replies: 0
Views: 46309

Small UI issues

1. I like the onscreen keyboard. I guess it's not new, but I haven't used it before, I've used the windows keyboard, but that's awkward because I have to leave full screen mode to get at it. But I'm wishing for the option not to show it on textfields in the menu. I find the menu completely unusable ...
by woodslanding
31 Aug 2021, 22:53
Forum: Patching questions
Topic: why can't I change these fader values?
Replies: 6
Views: 8196

Re: why can't I change these fader values?

Got it, thanks.... One more thing. Trying to get the caption to take up the whole bottom half of a horizontal fader. Is there a way to do this? Every setting seems to allow only part of the area to be used.... regardless of left right or center alignment, the caption never moves out of the lower rig...
by woodslanding
31 Aug 2021, 19:41
Forum: Patching questions
Topic: recommended way to store array data
Replies: 2
Views: 4155

recommended way to store array data

I discovered the hard way that if I simply type values into an array get set module output, they are not remembered on restart. If I basically just want an array of constants, what is the most straightforward way to patch this? I'd rather not have a whole bunch of constant modules, but I could do th...
by woodslanding
31 Aug 2021, 19:35
Forum: Suggestions & improvements
Topic: fader behavior option
Replies: 6
Views: 29114

fader behavior option

In my failed attempt to move my workspace to reaper, I had occasion to develop my own gui widgets, using the excellent scythe toolkit for reaper. (Long story short, all the gui stuff worked great, but reaper's real time capability was completely insufficient!) I set up my faders so that they worked ...
by woodslanding
30 Aug 2021, 07:10
Forum: Patching questions
Topic: why can't I change these fader values?
Replies: 6
Views: 8196

Re: why can't I change these fader values?

Interesting saga, but it's working now. Suddenly, I saw the presets for normal faders (not legacy) show up in the view menu. So I took a snapshot of another similar fader, and applied it to the ones in this patch. Now they operate correctly.... so some odd fader conversion issue. I do notice that so...
by woodslanding
30 Aug 2021, 07:06
Forum: Suggestions & improvements
Topic: Missing in V5, maybe?
Replies: 2
Views: 21602

Re: Missing in V5, maybe?

found the hide/show poly order control under the view menu....
by woodslanding
30 Aug 2021, 03:41
Forum: Patching questions
Topic: patch to change all views
Replies: 1
Views: 3526

patch to change all views

In the V3, I had a switch to change all of these views, as I almost always change them together: Fullscreen Show IB Hide Menu In that version they were toggles, which meant that if I did change just one of them, the settings got out of sync. Now it seems like they are switches, but I cannot get all ...
by woodslanding
30 Aug 2021, 03:24
Forum: Suggestions & improvements
Topic: Missing in V5, maybe?
Replies: 2
Views: 21602

Missing in V5, maybe?

Or maybe a new way to do things?? Or the feature just moved somewhere else? Load patch on startup. --At least it's not where it used to be. Array Editor --is there any better way than editing output value using semicolons? Awkward for large arrays.... Don't show Poly number in caption --Buttons and ...
by woodslanding
30 Aug 2021, 03:09
Forum: Patching questions
Topic: why can't I change these fader values?
Replies: 6
Views: 8196

why can't I change these fader values?

As soon as I set poly on this fader bank, the faders stop working. I even copied the fader from another working fader, and as soon as I set poly it stopped working.

Maybe a bug, but maybe user error? This used to work fine under V4.
faderIssue.pat
(208.54 KiB) Downloaded 263 times
by woodslanding
24 Aug 2021, 07:02
Forum: Suggestions & improvements
Topic: Script editor refresh someday?
Replies: 0
Views: 48459

Script editor refresh someday?

This is so far and away the ugliest part of what has become a very elegant program. I have gotten to the point where I copy and paste into vscode even when all I need to do is add a semi-colon to the end of a line. The kerning is so weird it often looks like there's a space in the middle of a word. ...
by woodslanding
24 Aug 2021, 06:40
Forum: Suggestions & improvements
Topic: Text wrap in text panel module?
Replies: 2
Views: 34492

Text wrap in text panel module?

sometimes I like to use the text panel to view text, not just program with it. So it would be nice to have the option to wrap the lines, so you could see it all....

Assuming I didn't just miss the setting for it ;)
by woodslanding
24 Aug 2021, 05:06
Forum: Patching questions
Topic: Moving presets to disk
Replies: 4
Views: 6419

Re: Moving presets to disk

okay, this has been working really well, and the controls on the new PM make it very easy to wire up! I've rearchitected my WKP to use the new method, and it loads in 20 seconds rather than 4 minutes! It also uses half the memory. But I am having a problem with Keyscape. It won't load presets create...
by woodslanding
16 Aug 2021, 21:30
Forum: Suggestions & improvements
Topic: Control Reset and Rescan MIDI devices from WKP?
Replies: 2
Views: 21166

Re: Control Reset and Rescan MIDI devices from WKP?

Also, I often forget to plug in my pedal controller, or power up the Roli Seaboards (which do not turn on when they see power, unfortunately) and that requires a Rescan. Ironically, I am most likely to forget when I have a very short time to setup, i.e on poorly planned festival shows! Would be nice...
by woodslanding
16 Aug 2021, 21:26
Forum: Suggestions & improvements
Topic: Control Reset and Rescan MIDI devices from WKP?
Replies: 2
Views: 21166

Control Reset and Rescan MIDI devices from WKP?

It's probably a bad connection somewhere internally, but occasionally my KX8 controller seizes up in performance, usually after an especially loud large chord. I used to think it required restarting Usine, but recently learned that a simple Reset MIDI Devices command will work. So I'd like to add th...
by woodslanding
16 Aug 2021, 21:19
Forum: Patching questions
Topic: Moving presets to disk
Replies: 4
Views: 6419

Moving presets to disk

As promised, HH5 supports saving and loading presets to disk. Olivier has suggested that the instability I've encountered in my WKP is likely due to the huge number of presets in the WKP. Presets for VSTs such as Kontakt and Reaktor can be truly huge, and my WKP is over a gigabyte as a result. This ...
by woodslanding
16 Aug 2021, 21:08
Forum: General discussion
Topic: HH5 WOW!
Replies: 1
Views: 3725

HH5 WOW!

Okay, every time I read the new features for a major release, I ask myself: features, smeatures, how long will it take before I can run my setup under the new version? Usine1->2. 6 months (at 10-12 hrs a week.) Usine2->3 2 months Usine3->4 1 week Usine4->5 15 minutes All I can say, is WOW, Usine HAS...
by woodslanding
14 Oct 2020, 05:21
Forum: Suggestions & improvements
Topic: Protected memory for scripts
Replies: 3
Views: 12681

Re: Protected memory for scripts

As I mentioned, the trace showed a couple of errors, which I was able to track down... but that was it.... and I still have instability. How did you know about my array bounds issues originally??? maybe I could send you the current wkp and see if those errors still show up to you... maybe there is s...
by woodslanding
11 Oct 2020, 16:24
Forum: Patching questions
Topic: Help tracking down unprotected memory issues in scripts
Replies: 1
Views: 8781

Help tracking down unprotected memory issues in scripts

Okay, I've gone through and updated all my wkp scripts for the new syntax. There were not as many as I thought, about 25, many quite simple. In the process, I have looked for possible issues with arrays being out of bounds, and haven't found anything yet. Found a few tstringlists that didn't get des...
by woodslanding
07 Oct 2020, 06:13
Forum: Patching questions
Topic: Not seeing my scripts in object list
Replies: 2
Views: 5416

Not seeing my scripts in object list

Hmmm, maybe they have to use the new constructors?? No that didn't do it. Is this another manual tease from the V5?? Looks like many objects are showing up, but I'm not seeing anything deeper than the first subpatch layer either. My thought was to write a script to deliver me a list of all my script...
by woodslanding
07 Oct 2020, 01:27
Forum: Suggestions & improvements
Topic: Protected memory for scripts
Replies: 3
Views: 12681

Protected memory for scripts

I realize I buried this request in another post about something else. Here it is. The newest v4 runs my wkp, and has pointed up a few existing script array out of bounds errors errors in the trace (THANK YOU!!) but still, I don't have to edit much before some script or other starts addressing wrong,...
by woodslanding
07 Oct 2020, 01:21
Forum: Suggestions & improvements
Topic: Example Scripts--need update
Replies: 1
Views: 10529

Example Scripts--need update

Sure could use more example scripts. And looks like the existing ones have not been updated to the V2 syntax....

I'm sure everybody knows that already ;) But a good selection of examples built-in seems like a really good idea.
by woodslanding
06 Oct 2020, 22:12
Forum: Patching questions
Topic: Script not working in the V4
Replies: 10
Views: 15487

Re: Script not working in the V4

one question: there is a lot of new syntax. Will using this syntax improve speed, or is it just for readability and ease of writing?
by woodslanding
06 Oct 2020, 22:03
Forum: Patching questions
Topic: Script not working in the V4
Replies: 10
Views: 15487

Re: Script not working in the V4

Thanks for the tip. I'll go check out the scripting manual. If Olivier wants to look for this bug, that's fine, but I fixed the issue easily, so no big deal...

cheers!
-eric
by woodslanding
05 Oct 2020, 05:30
Forum: Patching questions
Topic: Script not working in the V4
Replies: 10
Views: 15487

Re: Script not working in the V4

Well, this took a while, but I'm back to trying to get things working in the V4. Here's the patch in question (Have to re-fix these bugs as part of the update process, so I'm back here trying to remember what I did 8 months ago ;)) It's the script called 'instNameFromIndex'. Under hh3, it cables cor...
by woodslanding
09 Mar 2020, 04:48
Forum: Patching questions
Topic: Script Sadness and Loss
Replies: 1
Views: 4352

Script Sadness and Loss

Well, my workspace continues to be unstable under V4 :( Obviously one or more of the dozens of scripts in my WKP is writing into application memory due to bad array indexing, or something like that. I've been through many of them many times looking for errors, but I'm obviously bad at finding them. ...
by woodslanding
07 Mar 2020, 22:36
Forum: Patching questions
Topic: Making Kontakt 6 presets work with Kontakt 5??
Replies: 3
Views: 6638

Re: Making Kontakt 6 presets work with Kontakt 5??

So here is the subpatch that is not loading patches for Kontakt. This is all Kontakt 5, and works fine in HH3.... Can anyone spot a problem with this, before I ask Olivier about it? As I mentioned, this sometimes works when loaded as part of a patch into HH4, but has not been working when the wkp is...
by woodslanding
06 Mar 2020, 07:02
Forum: Patching questions
Topic: Making Kontakt 6 presets work with Kontakt 5??
Replies: 3
Views: 6638

Re: Making Kontakt 6 presets work with Kontakt 5??

Well, I found my K5 backups, and turns out that wasn't the (only?) problem. For some reason, neither instance of my large Kontakt patch will do patch changes. This is a patch that has 16 32-patch PMs. (I have several other Kontakt instruments that have fewer PMs, and they work fine!) The status popu...
by woodslanding
05 Mar 2020, 19:57
Forum: Patching questions
Topic: Making Kontakt 6 presets work with Kontakt 5??
Replies: 3
Views: 6638

Making Kontakt 6 presets work with Kontakt 5??

I have many hundreds of Kontakt presets set up in my wkp, for recall by name. In a mistaken housekeeping move, I recently did a batch resave, not realizing I was doing it from Kontakt 6. So many of the patches won't open . Now I went into the patch and replaced Kontakt 5.dll with Kontakt.dll. Now no...
by woodslanding
05 Mar 2020, 19:46
Forum: Patching questions
Topic: Array script not working in V4
Replies: 4
Views: 7653

Re: Array script not working in V4

Okay, I have found out that this type of line: var sats: array[1..MAX] of single; Is no longer supported. I made variable length arrays and set their length in the init. BUT, I am still getting nothing from the get and set commatext methods for TStringList. Has that method changed??? [edit: nevee mi...
by woodslanding
05 Mar 2020, 16:55
Forum: Patching questions
Topic: Array script not working in V4
Replies: 4
Views: 7653

Re: Array script not working in V4

Anybody? I can't get any effects to work in my WKP without this script. Works fine in V3.... I've been through the code, it all looks like it should work, and it did before.
by woodslanding
18 Feb 2020, 16:56
Forum: Patching questions
Topic: Script not working in the V4
Replies: 10
Views: 15487

Re: Script not working in the V4

I'll see if I can replicate it on a smaller scale than my 1 gig wkp ;)
by woodslanding
18 Feb 2020, 09:44
Forum: Suggestions & improvements
Topic: Small HH4 niggles and suggestions
Replies: 4
Views: 7102

Re: Small HH4 niggles and suggestions

A note on the fullscreen issue: I have a single button which is cabled to three master functions: IB mode Show Menu Fullscreen mode I have been finding that it seems to matter the order I attach the cables, in order to get all three to work. I finally managed it, but I had instances of both Fullscre...
by woodslanding
18 Feb 2020, 09:34
Forum: Patching questions
Topic: Script not working in the V4
Replies: 10
Views: 15487

Re: Script not working in the V4

Sure enough, HH4 cabled to the wrong node. Instead of cabling to the input called index, it treated the OUTPUT called index as an input, and cabled to that. Of course it didn't work. This is an old bug, (which I thought was dead) but evidently an even older script. I have taken to adding IN and OUT ...
by woodslanding
18 Feb 2020, 09:28
Forum: Patching questions
Topic: Array script not working in V4
Replies: 4
Views: 7653

Array script not working in V4

This worked fine in v3. It also opened fine in v4. But after saving as v4, it doesn't work. Any thoughts? It is supposed to sort through the list of channels, and output a list of channel numbers and names that are fx channels. But, although there are four non-zero values for fxStatusIN, there is no...
by woodslanding
17 Feb 2020, 05:54
Forum: Suggestions & improvements
Topic: Small HH4 niggles and suggestions
Replies: 4
Views: 7102

Re: Small HH4 niggles and suggestions

Perhaps just make the audio and video data for the demos a separate file??? Every time I download a new version, I just go in and delete them to save space....
by woodslanding
15 Jan 2020, 16:38
Forum: Patching questions
Topic: Script not working in the V4
Replies: 10
Views: 15487

Re: Script not working in the V4

okay, isolated the script and made a test patch, and it works fine in HH4. Maybe it just didn't load properly as part of the wkp. I'll do more tests....
by woodslanding
13 Jan 2020, 01:05
Forum: Add-ons discussion
Topic: ParamMux module new version 2
Replies: 4
Views: 31654

Re: ParamMux module new version 2

Wow, that is crazy useful. Thanks!!!
by woodslanding
13 Jan 2020, 00:59
Forum: Suggestions & improvements
Topic: more control of VST window
Replies: 7
Views: 9692

Re: more control of VST window

Interesting. I wonder how Reaper does it....
by woodslanding
13 Jan 2020, 00:57
Forum: Patching questions
Topic: Script not working in the V4
Replies: 10
Views: 15487

Script not working in the V4

Edit: I pasted the code twice here, but it's not that way in the module (just checked....) I guess I'll log this as a bug... //////////////////////////////////////////// This worked fine in V3, but not in version 4. It's supposed to scan a directory and return an item number and a name in text. The ...
by woodslanding
10 Jan 2020, 04:20
Forum: Patching questions
Topic: Basic array question
Replies: 15
Views: 16604

Re: Basic array question

If arrays sent using data busses are sent at 'data rate', what rate are they sent at when you use an array send? Is one faster than the other? more CPU efficient?
by woodslanding
10 Jan 2020, 04:17
Forum: Patching questions
Topic: convert presets from V3 PM
Replies: 4
Views: 7073

Re: convert presets from V3 PM

Yeah, they do work fine, so probably not worth worrying about. And maybe there's still a limit to the number of presets in the new version? I do wish that the preset manager was more full-featured. I.e., you could rename presets programatically, reorder them, and tie them to specific indices, even i...
by woodslanding
09 Jan 2020, 23:58
Forum: Suggestions & improvements
Topic: Small HH4 niggles and suggestions
Replies: 4
Views: 7102

Small HH4 niggles and suggestions

First off, I'm delighted with HH4. It seems quicker and more efficient, and looks better, while setting a new high for backward compatibility. Maybe Usine is growing up ;) A few things I've noticed so far: on my monitor, it's very hard to read the names of the midi devices. It's light grey lettering...
by woodslanding
09 Jan 2020, 22:47
Forum: Suggestions & improvements
Topic: Plugin module current patch name
Replies: 6
Views: 8812

Re: Plugin module current patch name

I will have to look into this.... but my workaround is working really well, so maybe not. Just out of curiosity, does the new PM have a program limit?? I couldn't find anything about it in the docs.
by woodslanding
09 Jan 2020, 22:45
Forum: Suggestions & improvements
Topic: resize the browser window
Replies: 2
Views: 5039

Re: resize the browser window

+1 A lot of wasted space there....
by woodslanding
09 Jan 2020, 22:43
Forum: Suggestions & improvements
Topic: more control of VST window
Replies: 7
Views: 9692

Re: more control of VST window

another option, which I enabled in Reaper, is to have only one FX window open at a time. So opening a new one closes the old one.... don't know if that's any easier to implement, or if it would solve the OP's problem.....
by woodslanding
09 Jan 2020, 22:40
Forum: Suggestions & improvements
Topic: Preset manager preset name input
Replies: 13
Views: 41087

Re: Preset manager preset name input

+1, I have been asking for this for years.... My workaround is to keep all preset names in a listbox, and all the actual presets are named 'no name'.

But since they have names, it would be nice to actually use them.
by woodslanding
09 Jan 2020, 09:41
Forum: Patching questions
Topic: convert presets from V3 PM
Replies: 4
Views: 7073

convert presets from V3 PM

Wondering if there is a way to move my preset data out of the old Patch Manager into the new one.... I'm using a script to write and read from many different PMs in a given patch to give up to 512 presets. I'd like to migrate to the new PM, but I don't want to reload and resave many hundreds of pres...
by woodslanding
29 Jul 2018, 06:50
Forum: Patching questions
Topic: midi cc mapping curve
Replies: 3
Views: 5077

If this doesn't work for you (it gave me a bunch of stuck notes when using multi-channel sources) try this script: ////////////////////////// // transpose midi example ///////////////////////// // parameters declaration var input : Tparameter; var output : Tparameter; var velocitiesIN : TParameter; ...
by woodslanding
07 Mar 2018, 06:36
Forum: Patching questions
Topic: control button in record window, and also: what are bindings?
Replies: 8
Views: 10708

No--- other way around. Usine looked in MY folder for ITS icon! This happened as shown in the screenshot without importing the wkp to another computer. Although when I did open it on the other computer, my icon showed up in the usine panel, AND usine's icon showed up on my switch! no big deal anyway...
by woodslanding
06 Mar 2018, 17:29
Forum: Suggestions & improvements
Topic: keep pngs during copy paste
Replies: 5
Views: 6974

yes, that still works....
by woodslanding
06 Mar 2018, 17:27
Forum: Patching questions
Topic: control button in record window, and also: what are bindings?
Replies: 8
Views: 10708

nay-seven wrote:for your bus issue, you have to know Usine don't use internal buses this way, so names can't interfere.
Ummm.... so do you know what's happening here, then?
by woodslanding
06 Mar 2018, 17:23
Forum: Patching questions
Topic: control button in record window, and also: what are bindings?
Replies: 8
Views: 10708

Sure. I'm curious what it does on your machine. When I opened this wkp on my other machine, it also put the usine settings icon on MY button, which did not happen when I created the button on my laptop.... http://www.sensomusic.com/forums/uploads.php?file=SettingsIconIssue.zip It was easy to fix, I ...
by woodslanding
06 Mar 2018, 07:14
Forum: Suggestions & improvements
Topic: keep pngs during copy paste
Replies: 5
Views: 6974

It's frustrating when I want to move a control, and the png for it is not found. Then I have to go searching around in my files to locate it. A few times I haven't been able to find it, and have had to re-create the control, esp. if it's been several years..... A small thing, but it seems like you s...
by woodslanding
06 Mar 2018, 03:00
Forum: Patching questions
Topic: control button in record window, and also: what are bindings?
Replies: 8
Views: 10708

Okay, this is a bit of a problem. Just changed the icon for a button called 'Settings', and it also changed the leftmost icon in the details panel.....

I think we need a list of names to avoid using in our patches!!!
by woodslanding
05 Mar 2018, 08:00
Forum: Patching questions
Topic: control button in record window, and also: what are bindings?
Replies: 8
Views: 10708

Hmmmm. Slight complication.... when I set up this bind (from a buss named GLOBAL RECORD) it ALSO sent a signal to an internal BUSS of mine called 'REC', thus turning on my loop recorder as well. Apparently that is the text string that Usine uses for this button or something like that? I'm not sure I...
by woodslanding
05 Mar 2018, 07:49
Forum: Patching questions
Topic: control button in record window, and also: what are bindings?
Replies: 8
Views: 10708

Ahh. solved.

Needed to search on binds! Also, the settings remote panel help page did not load completely!

Using a binding worked perfectly, feature request averted!

cheers,
-e
by woodslanding
05 Mar 2018, 07:37
Forum: Patching questions
Topic: control button in record window, and also: what are bindings?
Replies: 8
Views: 10708

There's a control in master which will open the record window, just like from the toolbar.... But what I'd really like is the ability to just control the record button in that window via my own button in the IB. Maybe there is a way to control the button? but I haven't found it..... Now I see I can ...
by woodslanding
05 Mar 2018, 07:24
Forum: Suggestions & improvements
Topic: renamed: HH Sample Content as separate download?
Replies: 4
Views: 6500

Since my previous topic was not correctly named.....

Seems like a logical move that would cut down on download bandwidth for Senso, and speed up downloading and installing of new versions, in light of HH's rapid release schedule.

cheers,
-e
by woodslanding
28 Feb 2018, 18:50
Forum: Suggestions & improvements
Topic: Avoid file conversion with every upgrade???
Replies: 4
Views: 6104

oog! better clear some old installs out....

but it's going to be time for a larger one sooner than later ;)
by woodslanding
28 Feb 2018, 06:44
Forum: Suggestions & improvements
Topic: Avoid file conversion with every upgrade???
Replies: 4
Views: 6104

Yeah, my live rig chews through it in about 15 seconds, no prob there, with m.2 nvme on the pcie buss.

But memory is tight on the ssd, so I realize I should delete all those files from non-current versions. Gotta figure out where they are though.
by woodslanding
27 Feb 2018, 23:11
Forum: Suggestions & improvements
Topic: Avoid file conversion with every upgrade???
Replies: 4
Views: 6104

On my poor little laptop, it takes about 15 minutes to convert all those files that I have never used, and don't even know how to ;) And at present I guess I have a dozen or more copies of each of them on my drive. With HH's agressive (to put it mildly) release schedule, I'm wondering if the sample ...
by woodslanding
27 Feb 2018, 22:21
Forum: Add-ons discussion
Topic: Multi-vst parameter mapper with Learn
Replies: 2
Views: 30238

I also posted one of these without learn but with LFOs. in the original thread....

You can have both, but you must turn off LFOs when learning.

I suppose that could be done programmatically. Maybe I'll upload an improved version.
by woodslanding
27 Feb 2018, 22:15
Forum: Suggestions & improvements
Topic: Better support for VSTs not found
Replies: 6
Views: 9912

But any time you open a patch, can't HH determine which ins and outputs were originally cabled to on the vst?

... if the idea is just to have a meaningful view of existing cabling.

But yeah, maybe not worth the trouble.
by woodslanding
27 Feb 2018, 06:44
Forum: Add-ons discussion
Topic: Simple Logic-style channel Inspector
Replies: 3
Views: 32179

I think I figured out where the stray values may have been coming from.

There is a for loop in the script that has a wrong endpoint. I will try to upload a fix soon.
by woodslanding
23 Feb 2018, 17:17
Forum: Add-ons discussion
Topic: Multi-vst parameter mapper with Learn
Replies: 2
Views: 30238

Like my last upload, this is based on gurulogic's parameter control idea, where parameters are kept in a local loop, and manipulated externally. To use, first wire up your vsts as shown. Then open one of the vsts (as there is no mousedown for a vst, it is crucial that only one vst is open, so the ma...
by woodslanding
23 Feb 2018, 16:44
Forum: Add-ons discussion
Topic: Simple Logic-style channel Inspector
Replies: 3
Views: 32179

I have used inspectors (ala Logic) in my workspaces since Usine V4, they are indispensible to me, as my wkps always have a bunch of similar channels, and insufficient screen space to edit all parameters from the channels themselves. There are two big issues that come up. First, when the inspector is...
by woodslanding
13 Feb 2018, 08:58
Forum: Suggestions & improvements
Topic: Items text font scale in listButtons object....
Replies: 3
Views: 8732

Same feature in the combobox would also be welcome..... can't replace them with a matrix, without a popup too....
by woodslanding
13 Feb 2018, 08:22
Forum: Suggestions & improvements
Topic: Items text font scale in listButtons object....
Replies: 3
Views: 8732

If I make my list buttons tall enough to select with a touch screen, the text size is HUGE AND SUPER BOLD and then every item nds to be abrv or thrs not engh rm for it, unls you mke the lst REEEAAALLLYYY WWWWWIIIIIIIIDDDDDEEEE TTTTOOOOOOOOO If I had this feature, I wouldn't have to use matrixes for ...
by woodslanding
13 Feb 2018, 00:24
Forum: Suggestions & improvements
Topic: Better support for VSTs not found
Replies: 6
Views: 9912

Since we know every vst will have: Audio ins and outs Midi ins and outs Parameters and Param Names in and out etc. Can we have a 'not found' vst that shows meaningful connections for ins an outs? I do a lot of work on wkps on my laptop, which does not have most of my vsts installed. It would be nice...
by woodslanding
12 Feb 2018, 05:28
Forum: Patching questions
Topic: Patching VSTs that output midi
Replies: 5
Views: 6265

I think you will need to use the cabling on the module itself. You can wire it direct to someplace, or send it via midi buss..... Changing the midi messages to vst parameter values requires some conversion. I just looked through the modules in the browser, however, and did not see a basic midi->para...
by woodslanding
10 Feb 2018, 17:40
Forum: Patching questions
Topic: Bi-Directional Parameters Manipulation for Plugins
Replies: 43
Views: 55344

Okay, here's a wkp all wired up and working (although you will have to sub your vsts in....) http://www.sensomusic.com/forums/uploads.php?file=LFOMapperTest.wkp Seems to work effectively for both vsts. I can't believe this actually works! Thank you Gurulogic for the great starting point for this. ch...
by woodslanding
10 Feb 2018, 09:10
Forum: Patching questions
Topic: Bi-Directional Parameters Manipulation for Plugins
Replies: 43
Views: 55344

alright, I should have gone to bed, but I thought it wouldn't be too hard to get the multi-vst version working, and for once I was right!! Cut out the poly object in the lower right and paste it wherever you want. You only need one of these, set the poly to 64, and you'll have all you need. What rem...