If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
Search found 12 matches
- Wed Jan 08, 2014 9:12 pm
- Forum: General
- Topic: Is there a way to draw not scaled font?
- Replies: 4
- Views: 10660
Re: Is there a way to draw not scaled font?
SORRY! I've posted wrong information. The font doesn't scaling. It was my mistake. The topic may be removed.
- Wed Jan 08, 2014 3:33 pm
- Forum: General
- Topic: Is there a way to draw not scaled font?
- Replies: 4
- Views: 10660
Re: Is there a way to draw not scaled font?
Thanks for the link but I've not yet found the solution there.
dont know what exactly you mean
I'll try to explain in other words:
Windows has the setting: Control Panel > Display > Set Custom Text Size (DPI)
This setting affects the text drawn by Ruby module in FS. I'd like the text to be the ...
dont know what exactly you mean
I'll try to explain in other words:
Windows has the setting: Control Panel > Display > Set Custom Text Size (DPI)
This setting affects the text drawn by Ruby module in FS. I'd like the text to be the ...
- Wed Jan 08, 2014 10:43 am
- Forum: General
- Topic: Is there a way to draw not scaled font?
- Replies: 4
- Views: 10660
Is there a way to draw not scaled font?
Hi!
One simple question.
When I set font size in Ruby module like this:
font=Font.new "Arial Narrow",1.5,"normal"
and next use this font in:
v.drawString string, font,sf,[0,4,4,2],b
the font gets scaled by Windows display font size setting (if it is other then 100%).
Is there a way to make font ...
One simple question.
When I set font size in Ruby module like this:
font=Font.new "Arial Narrow",1.5,"normal"
and next use this font in:
v.drawString string, font,sf,[0,4,4,2],b
the font gets scaled by Windows display font size setting (if it is other then 100%).
Is there a way to make font ...
- Tue Jan 07, 2014 11:04 am
- Forum: General
- Topic: Global Ruby variables are shared through all VST instances?!
- Replies: 11
- Views: 25049
Re: Global Ruby variables are shared through all VST instanc
but does this mean that we cannot use classes? or do we have to be careful how to write classes?
Using classes generally shouldn't cause any problems. Several instances of the same VST plug will define the same class in the same way several times in their common "ruby space" that wouldn't change ...
Using classes generally shouldn't cause any problems. Several instances of the same VST plug will define the same class in the same way several times in their common "ruby space" that wouldn't change ...
- Tue Jan 07, 2014 12:05 am
- Forum: General
- Topic: Global Ruby variables are shared through all VST instances?!
- Replies: 11
- Views: 25049
Re: Global Ruby variables are shared through all VST instanc
Thanks for the .fsm. Yes, this schematic does what I want. Maybe with the use of Ruby it could be done even more simple. But the solution still would be more complex then when using global vars, because in any case you must set inputs, outputs and wires which would result in rather entangled ...
- Mon Jan 06, 2014 10:08 pm
- Forum: General
- Topic: Global Ruby variables are shared through all VST instances?!
- Replies: 11
- Views: 25049
Re: Global Ruby variables are shared through all VST instanc
i normally make one module called globals and send them with wireless links so i can call them whereever i want in my app,
Thanks for an idea but I'd like to have a possibility to easily synchronize different GUI parts realized in separate Ruby components (such as EQ parameter button and ...
Thanks for an idea but I'd like to have a possibility to easily synchronize different GUI parts realized in separate Ruby components (such as EQ parameter button and ...
- Mon Jan 06, 2014 9:15 pm
- Forum: General
- Topic: Global Ruby variables are shared through all VST instances?!
- Replies: 11
- Views: 25049
Global Ruby variables are shared through all VST instances?!
Hi!
Found one more unpleasant thing with VSTs using Ruby code. Seems that any global Ruby variable (the one that begins with '$' sign) is shared among ALL instances of VST plug that use it, which are loaded in DAW. So the same parameters of all instances become synchronized. If this can not be ...
Found one more unpleasant thing with VSTs using Ruby code. Seems that any global Ruby variable (the one that begins with '$' sign) is shared among ALL instances of VST plug that use it, which are loaded in DAW. So the same parameters of all instances become synchronized. If this can not be ...
- Sat Jan 04, 2014 1:43 pm
- Forum: General
- Topic: createEdit doesn't work in inactive VST plugin?
- Replies: 13
- Views: 26081
Re: createEdit doesn't work in inactive VST plugin?
trogluddite Thanks a lot for your explanation! Everything is clear for me now.
That would be very good! Thanks!
ortseam wrote:I'll pass this info on to the guys at DSPr to add to their 'to do' list!
That would be very good! Thanks!
- Sat Jan 04, 2014 11:06 am
- Forum: General
- Topic: createEdit doesn't work in inactive VST plugin?
- Replies: 13
- Views: 26081
Re: createEdit doesn't work in inactive VST plugin?
which DAW are you using? because on my machines with renoise 3 the editboxes are working (tested in the morning) cubase should work too, but i can test it in the evening because i`m @ work atm..
REAPER. It has an option not to run VST effects when stopped. So to be clear I should say: not DAW run ...
REAPER. It has an option not to run VST effects when stopped. So to be clear I should say: not DAW run ...
- Sat Jan 04, 2014 10:38 am
- Forum: General
- Topic: createEdit doesn't work in inactive VST plugin?
- Replies: 13
- Views: 26081
Re: createEdit doesn't work in inactive VST plugin?
Nubeat7 wrote:doesnt it update the values when changing it in stopped mode?
It even doesn't call the editing field where you print the figures. BUT when you move the knob the number changes accordingly.