Search found 12 matches

by ortseam
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.
by ortseam
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 ...
by ortseam
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 ...
by ortseam
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 ...
by ortseam
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 ...
by ortseam
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 ...
by ortseam
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 ...
by ortseam
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.
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!
by ortseam
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 ...
by ortseam
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.