antoine JULLIEN

Forum Replies Created

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • in reply to: GDL cinerender rendering #3395
    antoine JULLIEN
    Participant

    Hi, if now i want to rotate this image and put some reflection ?

    ok i found it for rotation : C4D_ChSize_angle = 90

    Tonio

    in reply to: GDL cinerender rendering #3352
    antoine JULLIEN
    Participant

    great !!!! many thank’s

    Tonio

    in reply to: Text variables longer than 250 characters (V18) #2871
    antoine JULLIEN
    Participant

    Hi thanks for your answer, but I can’t use it in a variable parameters.
    I need to add long description for my objects (more than 250 carac.).
    have you got other solution for long description in a variable parameters ?

    Tonio

    in reply to: Problem whith my program in interface page #1605
    antoine JULLIEN
    Participant

    thank’s a lot, i’ll try your solution ! i need to install archicad 19 , i’m in 18 !

    Tonio

    in reply to: Problem whith my program in interface page #1549
    antoine JULLIEN
    Participant

    my basic interface scrip work nice but is very long :

    i=0

    1:
    IF GerMaterial_1 > 1 THEN
    UI_OUTFIELD “Tissu Extérieur”,15, i ,200,20
    UI_INFIELD “GerMaterial_1”, 140,i,240,20
    else i=i
    goto 2

    2:
    IF GerMaterial_2 > 1 THEN
    UI_OUTFIELD “Tissu intérieur”,15,i+25 ,200,20
    UI_INFIELD “GerMaterial_2”, 140,i+25,240,20
    else i=i-25
    goto 3

    3:
    IF GerMaterial_3 > 1 THEN
    UI_OUTFIELD “Acoudoir”,15,i+50,200,20
    UI_INFIELD “GerMaterial_3”, 140,i+50,240,20
    else i=i-25
    goto 4

    4:
    IF GerMaterial_4 > 1 THEN
    UI_OUTFIELD “Passepoil”,15,i+75,200,20
    UI_INFIELD “GerMaterial_4”, 140,i+75,240,20
    else i=i-25
    goto 5

    5:
    IF GerMaterial_5 > 1 THEN
    UI_OUTFIELD “Tissu Cale reins”,15,i+100,200,20
    UI_INFIELD “GerMaterial_5”, 140,i+100,240,20
    else i=i-25
    goto 6

    6:
    IF GerMaterial_6 > 1 THEN
    UI_OUTFIELD “Tissu tétiere”,15,i+125,200,20
    UI_INFIELD “GerMaterial_6”, 140,i+125,240,20
    else i=i-25
    goto 7

    7:
    IF GerMaterial_7 > 1 THEN
    UI_OUTFIELD “Tissu assise”,15,i+150,200,20
    UI_INFIELD “GerMaterial_7”, 140,i+150,240,20
    else i=i-25
    goto 8

    8:
    IF GerMaterial_8 > 1 THEN
    UI_OUTFIELD “Bois horizontal”,15,i+175,200,20
    UI_INFIELD “GerMaterial_8”, 140,i+175,240,20
    else i=i-25
    goto 9

    9:
    IF GerMaterial_9 > 1 THEN
    UI_OUTFIELD “Bois vertical”,15,i+200,200,20
    UI_INFIELD “GerMaterial_9”, 140,i+200,240,20
    else i=i-25
    goto 10

    10:
    IF GerMaterial_10 > 1 THEN
    UI_OUTFIELD “Métal”,15,i+225,200,20
    UI_INFIELD “GerMaterial_10”, 140,i+225,240,20
    else i=i-25
    goto 11

    11:
    IF GerMaterial_11 > 1 THEN
    UI_OUTFIELD “Verre”,15,i+250,200,20
    UI_INFIELD “GerMaterial_11”, 140,i+250,240,20
    else i=i-25
    goto 12

    12:
    IF GerMaterial_11 > 1 THEN
    UI_OUTFIELD “Plateau”,15,i+275,200,20
    UI_INFIELD “GerMaterial_12”, 140,i+275,240,20
    else i=i-25
    goto 13

    13:
    IF GerMaterial_13 > 1 THEN
    UI_OUTFIELD “Pieds”,15,i+300,200,20
    UI_INFIELD “GerMaterial_13”, 140,i+300,240,20
    else i=i-25
    goto 14

    14:
    IF GerMaterial_14 > 1 THEN
    UI_OUTFIELD “Tissus rideaux”,15,i+325,200,20
    UI_INFIELD “GerMaterial_14”, 140,i+325,240,20
    else i=i-25
    goto 15

    15:
    IF GerMaterial_15 > 1 THEN
    UI_OUTFIELD “Boutons”,15,i+350,200,20
    UI_INFIELD “GerMaterial_15”, 140,i+350,240,20

    ENDIF

    Tonio

    in reply to: Problem whith my program in interface page #1547
    antoine JULLIEN
    Participant

    Hi, I did not succeed with your sample, if i understand this solution force me to describe list material in all my objects ?
    I want with my macro doing the list dynamicaly

    Attachments:

    Tonio

    in reply to: Problem whith my program in interface page #1541
    antoine JULLIEN
    Participant

    I am checking if my Shader variable is equal to 1 or is hidden, if that’s the case I do not want to display it

    Tonio

    in reply to: Problem whith my program in interface page #1540
    antoine JULLIEN
    Participant

    how i’ve you done it ? 🙂

    Yes i would like to lock it or better I hope it does not appear and be replaced by the following – it’s in a macro apply on many product…

    Tonio

    in reply to: Problem whith my program in interface page #1539
    antoine JULLIEN
    Participant

    Yes i would like to lock it or better I hope it does not appear and be replaced by the following – it’s in a macro apply on many product…

    Tonio

    in reply to: Problem whith my program in interface page #1538
    antoine JULLIEN
    Participant

    program update

    dim Titre[5]
    Titre[1] = “Tissu extérieur”
    Titre[2] = “Tissu intérieur”
    Titre[3] = “Accoudoir”
    Titre[4] = “Passepoil”
    Titre[5] = “Tissu Cale reins”

    dim Param[5]
    Param[1] = “GerMaterial_1”
    Param[2] = “GerMaterial_2”
    Param[3] = “GerMaterial_3”
    Param[4] = “GerMaterial_4”
    Param[5] = “GerMaterial_5”

    i=0
    WHILE i <= 4 DO
    i=i+1

    if Param[i] = “1” THEN
    hideparameter Param[i]
    lock Param[i]

    ELSE
    UI_OUTFIELD Titre[i] ,15,i*25 ,120,20
    UI_INFIELD Param[i] , 140,i*25,240,20

    ENDIF

    ENDWHILE

    Tonio

    in reply to: I need a coordinate object that are "schedule able" #1530
    antoine JULLIEN
    Participant

    why you didn’t use zone Tool for list your object ?

    Tonio

Viewing 11 posts - 1 through 11 (of 11 total)