View Single Post
Old 08-25-2018, 01:27 PM   #370
mschnell
Human being with feelings
 
mschnell's Avatar
 
Join Date: Jun 2013
Location: Krefeld, Germany
Posts: 14,686
Default

Rather obviously @slider is only called when a slider is modified from outside the JSFX code.

You might try to do a function that contains what you want to do in @slider and do something like

Code:
@init 
  function do_slider() (
    parameter1 = slider1;
  );

@slider
  do_slider();

@gfx
  slider1 != gfxslider ? (
    slider1 = gfxslider;
    do_slider();
  );
mschnell is online now   Reply With Quote