We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2017-07-07 02:03 PM
HOTSPOT -mirror_width/2, 0.024, 1.1,HSID+1, mirror_width, 1+128 !base HSID = HSID+1 HOTSPOT -1, 0, 0, HSID+1, mirror_width, 3 !reference HSID = HSID+1 HOTSPOT mirror_width/2, 0.024, 1.1 ,HSID+1, mirror_width, 2 !moveableI can't get the hotspot to move accurately with the dimension shown in the picture. I know that it's because it is using -mirror_width/2 which is changing but I do not know an alternative option which is what I'm after.
2017-07-07 02:59 PM
HOTSPOT -mirror_width/2, 0.024, 1.1, HSID, mirror_width, 1+128: HSID = HSID+1 !base HOTSPOT mirror_width/2, 0.024, 1.1 ,HSID, mirror_width, 2: HSID = HSID+1 !moveable HOTSPOT 1, 0.024, 1.1, HSID, mirror_width, 3: HSID = HSID+1 !reference
2017-07-07 03:15 PM
Erich wrote:It sadly behaves the same way as my original. Thanks for the reply.
I don't currently have ArchiCad open to confirm, but I would try this:
HOTSPOT -mirror_width/2, 0.024, 1.1, HSID, mirror_width, 1+128: HSID = HSID+1 !base HOTSPOT mirror_width/2, 0.024, 1.1 ,HSID, mirror_width, 2: HSID = HSID+1 !moveable HOTSPOT 1, 0.024, 1.1, HSID, mirror_width, 3: HSID = HSID+1 !reference
2017-07-08 07:00 PM
2017-07-08 07:01 PM
2017-07-10 03:53 AM
Hmooslechner wrote:You should be able to delete your last post so long as nobody else has replied to it - the delete "X" is next to the 'Edit' button.
sorry for the mass of copied texts - something happend during klicking on the apply-Button. How can i delete this?
2017-07-10 09:06 AM
2017-07-10 10:55 AM
Pertti wrote:This part is fine if you just want to stretch the mirror with the hotspot.
Parameters script: parameters mirror_width=mirror_widthper2*2
if GLOB_MODPAR_NAME = "mirror_widthper2" then mirror_width = mirror_widthper2*2 PARAMETERS mirror_width = mirror_width endif if GLOB_MODPAR_NAME = "mirror_width" then mirror_widthper2 = mirror_width*0.5 PARAMETERS mirror_widthper2 = mirror_widthper2 endifThis way whether you adjust the half width or the full width one will adjust the other.