Forum Replies Created
-
AuthorPosts
-
antoine JULLIENParticipant
Hi, if now i want to rotate this image and put some reflection ?
ok i found it for rotation : C4D_ChSize_angle = 90
Tonio
antoine JULLIENParticipantgreat !!!! many thank’s
Tonio
antoine JULLIENParticipantHi 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 ?Attachments:
Tonio
antoine JULLIENParticipantthank’s a lot, i’ll try your solution ! i need to install archicad 19 , i’m in 18 !
Tonio
antoine JULLIENParticipantmy 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 22:
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 33:
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 44:
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 55:
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 66:
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 77:
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 88:
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 99:
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 1010:
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 1111:
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 1212:
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 1313:
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 1414:
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 1515:
IF GerMaterial_15 > 1 THEN
UI_OUTFIELD “Boutons”,15,i+350,200,20
UI_INFIELD “GerMaterial_15”, 140,i+350,240,20ENDIF
Tonio
antoine JULLIENParticipantHi, 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 dynamicalyAttachments:
Tonio
antoine JULLIENParticipantI 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
Attachments:
Tonio
antoine JULLIENParticipanthow 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
antoine JULLIENParticipantYes 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
antoine JULLIENParticipantprogram 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+1if 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,20ENDIF
ENDWHILE
Tonio
antoine JULLIENParticipantwhy you didn’t use zone Tool for list your object ?
Tonio
-
AuthorPosts