Forum Replies Created
-
AuthorPosts
-
David ShorterParticipant
no worries, try this
Attachments:
David ShorterParticipantsend me the list of text and the matching colours
david.shorter@internode.on.netDavid ShorterParticipantor like this
Attachments:
David ShorterParticipantHi Matt
Not sure about the rest of the script but I would set the var type as a PEN then you dont need a value list or you could have a value list which contains a selection of pen numbers.
Sent me your script if you like.
regard DDecember 28, 2018 at 11:29 in reply to: Why does my label offset itself from the insertion point? #4430David ShorterParticipantyou may need to do this
“If label_custom_arrow Then
add2 (label_position [2][1]+label_position [3][1]), (label_position [2][2]+label_position [3][2])
Else
add2 0,0
EndIf”
but without seeing your script its a bit difficult to tell
Hope this helpsDavid ShorterParticipantthats my point Barry (probably badly made) that if you move the origin then place the label it will not say 0,0, but the location the ‘moved’ false origin.
David ShorterParticipantIt works for me please make sure the origin is in its default location
hope this helpsDavid ShorterParticipantHi Matt
No attachment? or at least I cant see it
pls send to david.shorter@internode.on.netDavid ShorterParticipantits possible but I think you are approaching it the wrong way. Do you have any ARCHICAD files you could post to illustrate what you have done or what you are trying to do.
David ShorterParticipantNo its a one off I wrote to test the moveable hotspots when they were first introduced to test the various hotspot options.
David ShorterParticipantDo you mean something like this…
Attachments:
David ShorterParticipantHi Matt
Not sure what you are actually trying to do. What sort of object are you trying to create?
Probably it would be easier to create a property and achieve totals when you SCHEDULE.
Usually the ‘update’ occurs when you schedule.
Provide a bit more info and we will try and helpDavid ShorterParticipantThe simple answer is with difficulty. A window (or door) can only be placed in a WALL. So the only way to do this is by ‘calling’ the window using the objects script. BUT this will only work graphically because the result will not be neither an wall nor a window. It will be an object.
Why do you want to do this? what is your workflow?David ShorterParticipant“gs_rebate_width”
“gs_ds_w”
“ac_leaf_width”
“gs_leaf_thk”so basically I need to be able to link these door parameters to properties otherwise I cannot correctly define the egress width required for AUSTRALIAN doors
David ShorterParticipantI have a Label which pulls parameters from door objects to define the Australian Egress Width correctly.
The Egress Width shown in Door 22 does not comply with Australian Standards.
My Label uses….
!!!!!!!!!!!!!!!!Pull standard parameters from standard doors
n = REQUEST (“ASSOCLP_PARVALUE”, “gs_rebate_width”, index, type, flags, dim1, dim2, framerebate)
nn = REQUEST (“ASSOCLP_PARVALUE”, “gs_ds_w”, index, type, flags, dim1, dim2, framerebate2)
m = REQUEST (“ASSOCLP_PARVALUE”, “ac_leaf_width”, index, type, flags, dim1, dim2, leafwidth)
o = REQUEST (“ASSOCLP_PARVALUE”, “gs_leaf_thk”, index, type, flags, dim1, dim2, leafthk)!!!!!!!!!!!!!!!!transfer to Label parameters
parameters rebate =max(framerebate,framerebate2)
parameters gs_leafwidth=leafwidth
parameters gs_leafthk=leafthkWhich works fine for the label (at the moment)but I cant schedule the result as I cannot transfer these parameters to properties.
Any ideas anyone? -
AuthorPosts