const laf = Content.createLocalLookAndFeel();
laf.loadImage("{PROJECT_FOLDER}vumeter.png", "VUMeter");
laf.registerFunction("drawMatrixPeakMeter", function(g, obj)
{
var a = obj.area;
var z_value = 0;
var frames = 128;
var zerpnt = 90;
for (i = 0; i < 2; i++)
{
var z = obj.peaks[i];
if (z <= 1.0)
z_value = Math.round((zerpnt - 1) * z);
else if (z > 1.0 && z <= 1.413)
z_value = Math.round((zerpnt - 1) + (frames - zerpnt) * (z - 1.0)/0.413);
else
z_value = frames - 1;
g.drawImage("VUMeter", [i * 150, 0, 128, a[3]], 0, 80 * z_value);
}
});
const var FloatingTile1 = Content.getComponent("FloatingTile4");
FloatingTile1.setLocalLookAndFeel(laf);
Posts
-
RE: linking slider to a simplegain, the other way around.posted in Scripting
-
RE: linking slider to a simplegain, the other way around.posted in Scripting
onst var SimpleGain = Synth.getEffect("SimpleGain1"); const var vumt = Content.getComponent("vumt"); const var VUTimer = Engine.createTimerObject(); VUTimer.setTimerCallback(function() { var peak = SimpleGain.getAttribute(SimpleGain.Gain); vumt.setAttribute(vumt.Value, peak); Console.print(peak); }); VUTimer.startTimer(80);its reading the gain values and printing the gain value on the console as i move the gain knob on teh simplegain module,
-
RE: linking slider to a simplegain, the other way around.posted in Scripting
@David-Healey i tried it, also took reference from a snippet, but the filmstrip is flickering ...
@ulrik its not reading .gain too..
-
linking slider to a simplegain, the other way around.posted in Scripting
i have a filmstrip of a vumeter on a slider, iam just tryin to effect the slider values with the value of the peak on a simplegain, iam using the getAttribute function ,but the console says function now found. i could have used a matrixpeakmeter with laf to run the filmstrip but this is just how i want to do it.
const var SimpleGain = Synth.getEffect("SimpleGain1"); const var vumt = Content.getComponent("vumt"); const var VUTimer = Engine.createTimerObject(); VUTimer.setTimerCallback(function() { var peak = SimpleGain.getAttribute(SimpleGain.Peaks); vumt.setValue(peak); }); VUTimer.startTimer(30); -
RE: ScriptNode - DC. Offsetposted in General Questions
@ustk said in ScriptNode - DC. Offset:
@Jeetender Hise HPFs don't go below 20Hz (unless I'm wrong, even if you set the parameter to 5Hz)
But I agree anywhere in the 5-10Hz range is better (the lower you go, the longer the delay response so it's not alway good to go below that, depends on your design)
So if you want to go below 20Hz, you need to wrap your own C++ custom filter (or Faust or other maybe?)well we can go below 20hz in any scriptnode eq. just make the knob sticky and drag the edges to se the range. and yes i used a 5hz hp and its ok doing the job
-
RE: ScriptNode - DC. Offsetposted in General Questions
@Sifres said in ScriptNode - DC. Offset:
@Jeetender yeah the stock one works just fine.
so a HP at 5hz it is.
-
RE: ScriptNode - DC. Offsetposted in General Questions
@ustk said in ScriptNode - DC. Offset:
@Jeetender Then your problem might be somewhere else. By definition the DC at the output of any HPF is
-inf.
It's right that it can bring artefacts in some cases that are essentially due to its response time, but it definitely kill DC.can a regular svf filter in scriptnode do it? or any other dedicated node ?
-
RE: Airwindows code into scriptfx nodesposted in ScriptNode
@HISEnberg it dosent compile, i was just trying to compile tube2 from airwindows. if i compile all the package they do compile, but dont work properly.. i just wanted the tube, but it gives an error. may be some files missing
> Create files > Sorting include dependencies > Copying third party files > Compiling dll plugin Re-saving file: C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\AutogeneratedProject.jucer Finished saving: Visual Studio 2026 Finished saving: Xcode (macOS) Finished saving: Linux Makefile Compiling 64bit airwindows ... MSBuild version 18.3.0-release-26070-10+3972042b7 for .NET Framework Main.cpp RNBO.cpp !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(7,1): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(34,6): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,9): error C2065: 'tab': undeclared identifier [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,13): error C2065: 'size': undeclared identifier [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,18): error C2065: 'preference': undeclared identifier [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,28): error C2059: syntax error: ':' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(35,30): error C2059: syntax error: 'constant' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(36,5): error C2059: syntax error: '}' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(36,5): error C2143: syntax error: missing ';' before '}' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(38,15): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(38,15): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(41,3): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(52,51): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(52,51): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(52,5111): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(245,35): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(246,25): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(256,14): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(257,31): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(261,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(262,74): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(264,45): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(265,62): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(278,76): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(278,76): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(278,168): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,60): error C2143: syntax error: missing ';' before '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,55): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,60): error C2059: syntax error: '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,62): error C2143: syntax error: missing ';' before '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,57): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') (compiling source file '../../Source/Main.cpp') C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(297,55): see declaration of 'focus' !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,62): error C2059: syntax error: '-' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,71): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(298,71): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(301,1): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(303,14): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(304,12): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(306,30): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(307,16): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(310,13): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(311,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(312,17): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(313,116): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(313,273): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(314,16): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(314,42): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(315,23): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(316,23): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(321,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(325,122): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(330,17): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(333,18): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(339,25): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(341,240): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(341,467): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(344,211): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(357,76): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(357,76): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(357,88): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(370,15): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(371,17): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(382,76): error C2143: syntax error: missing ';' before '{' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(382,76): error C2447: '{': missing function header (old-style formal list?) [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(382,118): error C2059: syntax error: '<' [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,56): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,127): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,184): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,292): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,449): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,863): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,911): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,960): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1004): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1069): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1407): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1448): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,1551): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3375): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3439): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3821): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3862): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,3965): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,4534): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,4596): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,4989): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5030): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5133): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5911): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,5974): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,6346): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,6387): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,6490): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7382): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7436): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7495): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7606): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7650): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,7718): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8042): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8083): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8186): error C2332: 'class': missing tag name [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') !C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\ThirdParty\Tube2.h(383,8186): error C1003: error count exceeds 100; stopping compilation [C:\Users\JSin\Documents\HISE Projects\airwindows\DspNetworks\Binaries\Builds\VisualStudio2026\airwindows_DynamicLibrary.vcxproj] (compiling source file '../../Source/Main.cpp') -
RE: Phase Invert?posted in General Questions
this did the job for me well, eventually, inverting the phase of left and right channel independently.
-
RE: ScriptNode - DC. Offsetposted in General Questions
@ustk ive tried the HPF at 5-10Hz.. doesn't seems to be working any specific filter module?
-
RE: ScriptNode - DC. Offsetposted in General Questions
@Christoph-Hart the sig2mod removed dc offset? how to remove dc offset
-
RE: Phase Invert?posted in General Questions
@Lindon can u share the script please to invert the L or R independently?
-
RE: Airwindows code into scriptfx nodesposted in ScriptNode
@HISEnberg where to put the main airwindows.h file.. it gives an error
-
RE: I need to install FAUSTposted in General Questions
@David-Healey ok i will try to compile again
-
RE: I need to install FAUSTposted in General Questions
@David-Healey ive seen ure bootcamp 2 times. its quite informative.. so i will not compile the new hise until everything is sorted out. anyways..
iam using snex shaper in the dspnetwork, the project compile and works good without the snex node, but as i put the snex node, it wants me to compile the network. when i compile the network, the global cables dont work and the pma module values aren't displayed in the UI. is there a work around that ??
-
RE: Airwindows code into scriptfx nodesposted in ScriptNode
@HISEnberg said in Airwindows code into scriptfx nodes:
@Jeetender I've been putting together a collection of external FX libraries for the community here, one of them is Airwindows. The documentation still needs some love but if you explore the folder structure it should become obvious.
Everything you need for the Airwindows integration is found in
DspNetworks/ThirdParty.All the headers in here are the HISE facing wrappers (what is going to show up in your HISE project). The bulk of the Airwindows library is found in
DspNetworks/ThirdParty/src. The main wrapperAirWindows.h is what allows the communication between the Airwindows source code and HISE.wow, thank you for ure suggestion i will definatly try it and come back ..
-
RE: I need to install FAUSTposted in General Questions
@David-Healey will the online updater do it? coz last time i tried to compile his from projucer and VS, it crashed and did nto compile, u told me to use to onlin e utility .. can the oline utility compile hise again for me with faust support.?
-
RE: Compilation errorposted in General Questions
@Sifres if we build hise from the online compiler then ?
