-
Posts
336 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Articles
Marionette
Store
Everything posted by The Hamma
-
Often times I run a command and vectorworks takes an exorbitant amount of time to compute. This time I was trying to convert an exterior elevation to lines. It has been running for about an hour now with no progress. There needs to be a way to quit commands without loosing your work. Or just fix vectorworks so it doesn't take so long. I am sure if it used 100% of the CPU's it would be much quicker.
-
When using the move tool to create duplicates is great but often I forget that I have set the copy to on and increased the number of duplicates. It would be nice if there was one button to reset it to 1 and turn of the duplicate option.
-
Cabinet and Countertop Scripts
The Hamma replied to michaelk's topic in Resource Share - Vectorscript
Could the "BeginFloor" command be replaced with a simple extrude? If you ungroup the floor, it becomes a floor and a rectangle. At this time the floor can be rendered by setting the correct attributes. -
Cabinet and Countertop Scripts
The Hamma replied to michaelk's topic in Resource Share - Vectorscript
Love the script but I do have a question. Do you know why the countertop does not have the correct texture in VW 2019 -
This modification corrects the issue but it seems to me that if the points are read from HCenter as inches then they should be passed to RegularPolygon as inches. HCenter(h,Px,Py); RegularPolygon((Px*25.4),(Py*25.4),(9*25.4),6,1);
-
Yes, I did try adding the unit to the script but that does not work either. The size and the location of the created polygon are still 1/25.4 scaled.
-
I have attached a file with two scripts in progress. It is a script that I was developing to replace circles with hexagons. The first version doesn't work as expected. It creates the hexagons but they are 1/25.40157 sized and location from the origin. I modified the script to multiply the X,Y coordinates by 24.40157 and the size. This places the hexagons in their proper location and size. It seems that the script is converting the units to mm from inches. If I set the drawing units to mm the first script works Script Error.vwx
-
Oh, how much joy it is to see that your file was backed up just before Vectorworks begins to not respond and you can just kill VectorWorks instead of waiting for the 20-30 minutes for it to come back to life.
-
Not responding all of the time. I will not be sending Vectorworks any more money if they do not get this fixed soon.
-
New Baseboard plugin from Andrea Facchinello
The Hamma replied to Diego - Resuelvector's topic in Architecture
Have these been tested with VW 2019? -
Please add an overhead COILING door option to the door tool.
-
The 2018 version is just slow all around!! zooming in and out as well as rendering and rotating renderings. editing PIO's. etc.
-
Did you ever solve this issue, I have the same.
-
Does anyone know how to use this (FUNCTION SetDashStyleName)function? I would like to make a vectorscript that can change a dash style of a selected object to a predetermined dash style by name.
-
I would like a way to explode complex line types and also I would like a toggle option to be able to snap to objects in the complex line type.
-
Viewport Layer Dash Visibility Option
The Hamma posted a question in Wishlist - Feature and Content Requests
I wish that in addition to being able to turn viewport layers On/Off/Grey there was also an option to turn them "ON Dashed" or "Grey Dashed". I know I could do this if all my line types were attached to class options but this is not always feasible but it would be nice to make an entire viewport dashed lines. -
I wish there was a command to explode complex dash lines to a group.
-
Below is a script by Peter Vandewalle and it work fine as a command or from the script palette but if I run it as a tool the angle constraints don't kick in to the second object duplication. Does any one know why and how to fix it. I like this script vs the move by point tool because it makes a duplicate object at every point that I click. and I don't have to keep switching the move by point from retain objects to not retaining objects. Procedure CopyPt; {Peter Vandewalle, 14-03-2003} LABEL 99; VAR ObjHdle,NewHandle:HANDLE; xi,yi,xm,ym,xp,yp,X,Y:REAL; YesNo:BOOLEAN; SelNum:LONGINT; Procedure do_error(s:STRING;v:REAL); BEGIN AlrtDialog(Concat(S,' = ',Num2Str(5,V))); END; BEGIN Absolute; SelNum:=NumSObj(ActLayer); IF (SelNum=0) THEN BEGIN Message('Select object to copy:'); GetPt(X,Y); SetSelect(PickObject(X,Y)); END; Message('Click reference point'); GetPt(xi,yi); YesNo:=false; xp:=xi; yp:=yi; REPEAT Message('Click endpoint, double-click to exit'); GetPtl(xi,yi,xm,ym); IF ((xp=xm) AND (yp=ym)) THEN GOTO 99;{Check 4 double-click} Duplicate(xm-xp,ym-yp); xp:=xm; yp:=ym; UNTIL YesNo; 99:ClrMessage; DSelectAll; RedrawAll; ClrMessage; END; Run(CopyPt);
-
Is there anyway to call the "Move by Points" command from a vector script and set the parameters.
-
Convert 3D Poly to 2D poly in layer plane
The Hamma replied to The Hamma's topic in General Discussion
Thanks Kevin, your the man! -
I would like to know if there is a way to convert a 3d poly to a 2d poly in the layer plane so it moves in 3d the same way that a 3d poly does, not converted to the screen layer as a hidden line rendering of the 3d poly. If there is not a way I put out this challenge for some one to write a script that would do so.
-
This script runs from a script Palette but not as a menu item
The Hamma replied to The Hamma's topic in Vectorscript
Ok correction the resetObject does not work the class does change but the objects are not reset.