IanniX

Toutes mes réponses sur les forums

15 sujets de 1,051 à 1,065 (sur un total de 6,694)
  • Auteur
    Messages
  • en réponse à : Kinect #3461
    JF
    Maître des clés

    Is the kinect 2 supported?

    en réponse à : Kinect #3462
    IanniX
    Maître des clés

    Not tested but pretty sure it’s not

    en réponse à : Math art #3463
    Jerome GB
    Maître des clés
    en réponse à : Math art #3464
    IanniX
    Maître des clés

    Whaa, ça envoie !

    en réponse à : Scripts #3465
    Johann
    Maître des clés

    Hello everyone,

    I have a problem to run a cursor going on again (using command direct:// setSpeedF 2 1) after it was earlier inactivated (direct:// setSpeedF 2 0), any solution in this case?

    Moreover I am looking for a programme solution to switching on a cursor by triggering a trigger, whereas the cursor will run for a certain time and will be off again.

    en réponse à : Vos projets #3466
    Johann
    Maître des clés

    I have several technical problems with IanniX (Mac, Maverick & the 64bit version):

    1. The programme does not save a project settings, e.g. I do want have some lines visible, as they are part of a background picture.

    2. I wonder if there is any way to upload more than one picture in a one project, I suppose that it is possible (by changing position of each in the code structure), however, the code programme does not save it.

    3. The resolution of object positioning is imprecise, so it does not work well with details.

    4. Grouping objects is pretty hard to manage, it very often (99% cases) happens, that I cannot clear the ID of group (field blank).

    5. As I mentioned in my previous post, it is impossible switch a cursor on, if the one was off previously.

    6. Finally, I cannot type any commands in code, which would be saved as a part of code.

    Please note, that this is not a form of critic or complain. I really appreciate the hard work of all these, who put their big effort to construct such a great idea.
    Much appreciate any help at this point,

    best wishes,

    Johann

    en réponse à : trigerring cursors #3467
    IanniX
    Maître des clés

    Hi,

    Not sure to understand the problem with your cursor… setSpeedF should work!

    en réponse à : trigerring cursors #3468
    Johann
    Maître des clés

    when I stop a cursor (direct:// setSpeedF 2 0), the object is being inactivated. When I try to switch the same one again (direct:// setSpeedF 2 1), it does not work at all, whereas the other objects work as they did before. The cursor reactivation does not work

    en réponse à : trigerring cursors #3469
    Johann
    Maître des clés

    please test it on OSX 10.9 (maverick)

    en réponse à : trigerring cursors #3470
    IanniX
    Maître des clés

    Please copy and paste this in a new score to test:

    run("add curve 1");
    run("setpos current -2 0 0");
    var points1 = [
    	{x: 0, y: 0, z: 0, c1x: 0, c1y: 0, c1z: 0, c2x: 0, c2y: 0, c2z: 0},
    	{x: 4, y: 2, z: 0, c1x: 0, c1y: 0, c1z: 0, c2x: 0, c2y: 0, c2z: 0},
    ];
    for(var i = 0 ; i < points1.length ; i++)
    	run("setpointat current " + i + " " + points1[i].x + " " + points1[i].y + " " + points1[i].z + " " + points1[i].c1x + " " + points1[i].c1y + " " + points1[i].c1z + " " + points1[i].c2x + " " + points1[i].c2y + " " + points1[i].c2z);
    run("add cursor 2");
    run("setcurve current lastCurve");
    run("setpos current -2 0 0");
    run("setspeedf current 1");
    run("setpattern current 0 0 1 -1");
    run("settime current 0");
    
    run("add curve 5");
    run("setpos current 0 0 0");
    var points5 = [
    	{x: 0, y: 0, z: 0, c1x: 0, c1y: 0, c1z: 0, c2x: 0, c2y: 0, c2z: 0},
    	{x: 3, y: 0, z: 0, c1x: 0, c1y: 0, c1z: 0, c2x: 0, c2y: 0, c2z: 0},
    ];
    for(var i = 0 ; i < points5.length ; i++)
    	run("setpointat current " + i + " " + points5[i].x + " " + points5[i].y + " " + points5[i].z + " " + points5[i].c1x + " " + points5[i].c1y + " " + points5[i].c1z + " " + points5[i].c2x + " " + points5[i].c2y + " " + points5[i].c2z);
    run("add cursor 6");
    run("setcurve current lastCurve");
    run("setpos current 0 0 0");
    run("setpattern current 0 0 1 -1");
    run("setcoloractive current _trigger_active");
    run("settime current 0");
    
    run("add trigger 3");
    run("setpos current 1 0 0");
    run("setmessage current 1, direct:// setSpeedF 2 1 , midi://midi_out/notef 1 trigger_value_y trigger_value_x trigger_duration , tcp:// trigger trigger_id trigger_group_id trigger_value_x trigger_value_y trigger_value_z trigger_xPos trigger_yPos trigger_zPos cursor_id ,");
    run("setcolor current 151 209 38 255");
    
    run("add trigger 4");
    run("setpos current 2 0 0");
    run("setmessage current 1, direct:// setSpeedF 2 0 , midi://midi_out/notef 1 trigger_value_y trigger_value_x trigger_duration , tcp:// trigger trigger_id trigger_group_id trigger_value_x trigger_value_y trigger_value_z trigger_xPos trigger_yPos trigger_zPos cursor_id ,");
    run("setcolor current 255 0 0 255");
    
    en réponse à : trigerring cursors #3471
    Johann
    Maître des clés

    yes,

    brilliant, this one works 🙂

    en réponse à : Scripts #3472
    Johann
    Maître des clés

    Hello,

    Is there any way to set a cursor, which once triggered by a trigger, would work during a time and then stopped (like a music note?).
    Is there a list of commands available somewhere, saying what different operations can be done with? Unfortunately, I am a basic programmer, who look for something different, than one can see in templates.

    thank you for any answer for this question,

    en réponse à : code problems #3473
    IanniX
    Maître des clés

    Hi,

    1. The programme does not save a project settings, e.g. I do want have some lines visible, as they are part of a background picture.

    Grid is not saved in the current version of IanniX. It’ll change on next release.

    2. I wonder if there is any way to upload more than one picture in a one project, I suppose that it is possible (by changing position of each in the code structure), however, the code programme does not save it.

    IanniX goal is to be a sequencer. For somes reasons, we add background image support but if you want to make visual effects/graphical effects, please use the Syphon output to another specialized software 🙂

    3. The resolution of object positioning is imprecise, so it does not work well with details.

    ?

    6. Finally, I cannot type any commands in code, which would be saved as a part of code.

    ?

    en réponse à : Scripts #3474
    Johann
    Maître des clés

    Iannix looses parts of graphics in 3D…. any ideas why?

    en réponse à : Feedback #3475
    studioda
    Maître des clés

    Est -il possible de possible de piloter du DMX(via l’interface enttec pro) sans passer par une application intermédiaire ?

15 sujets de 1,051 à 1,065 (sur un total de 6,694)

© IanniX Association

Qu'est-ce que IanniX ? | Téléchargement | Showcase | Forum | Recherche | À propos