You must have the custom linetype on all pc's for it to be visible, if sent to somewhere else you need to attach also or etransmit will do it all for you
Registered forum members do not see this ad.
I have created a custom linetype using shape for Plugmold like this _____ / / _____
Its works in my PC. But when others open it from their
PC it shows like this ____ . . . . . ___.
Is there a way to solve this problem?




You must have the custom linetype on all pc's for it to be visible, if sent to somewhere else you need to attach also or etransmit will do it all for you
A man who never made mistakes never made anything
A simple linetype definition (based only on description in a LIN file) will be contained in the drawings, so there are no issues when drawing is accessed on other computer. Seems that your definition is using an associated shape file, so that, as BIGAL also stated, must be shipped along DWG file.
Not sure if there is more of that linetype than you shown above, but wouldn't a simple definition help?
Code:*FOLIO_TEST,Folio test linetype _____ // _____ // _____ // _____ A,.7,-.15,["//",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.01],.1
Regards,
Mircea
AutoCAD's happy user equation: FILEDIA + PICKADD² + PICKFIRST = 3
I'm with Mircea on this. If you make a complex linetype (i.e. one which includes shapes) ... try everything you can to use some character/shape from the default SHX files installed with ACad. Otherwise you keep running into this situation where linetypes display differently on different PC's.
The eTransmit idea could solve this (for external parties), but inhouse you'd need to "share" your custom SHX with everyone (either a shared folder or copied to each PC). Even with eTransmit I've found many would simply open the ZIP and double click the DWG file to open it - this would not extract the SHX and thus the linetype would still not work properly. Unfortunately eTransmits are meant for external parties, so you can't say this is simply a training issue (i.e. enforce extract all from ZIP into folder before opening DWG).
So for both those reasons, you need to have an extremely strange shape to deal with if you need your own custom SHX. Note you can combine 2 or more shapes on top of each other to make up "strange" shapes instead of making a custom SHX. E.g. this uses the "O" and "X" characters from the Standard text style placed over each other to form an approximation of "⊗":Instead of using a UniCode font (e.g. The Arial Unicode is not installed by defaullt and if you include it in an eTransmit the TTF file is 22MB just for the one character you'll use - instead of the ANSI version which is always installed and only 778kB - I'm sure people will hate you if all your eTransmits are at least 22MB).Code:*OX_OVER,OX Overwritten line ---- OX ---- OX ---- OX ---- A,12.7,-5.08,["X",STANDARD,S=2.54,U=0.0,X=-2.54,Y=-1.27],0.0,["O",STANDARD,S=2.54,U=0.0,X=-2.70,Y=-1.27],-3.47
Knowledge is proportional to experience, but wisdom is inversely proportional to ego!
My little bit of "wisdom": Hind-sight is useless, unless used to improve the next forethought!
Sorry, the above should be changed to use Relative rotation instead of Upright rotation. Otherwise if the line goes from right-to-left the O and X do not align correctly. So the linetype should look like this instead (changes marked in red):Note values calculated for ISO in mm ... if you need it for Imperial in Inches divide each length and scale value by 25.4. (affected values marked in green)Code:*OX_OVER,OX Overwritten line ---- OX ---- OX ---- OX ---- A,12.7,-5.08,["X",STANDARD,S=2.54,R=0.0,X=-2.54,Y=-1.27],0.0,["O",STANDARD,S=2.54,R=0.0,X=-2.70,Y=-1.27],-3.47
Knowledge is proportional to experience, but wisdom is inversely proportional to ego!
My little bit of "wisdom": Hind-sight is useless, unless used to improve the next forethought!
Using "R" instead of "U" key will also ensure compatibility with older releases of AutoCAD where the last one isn't supported.
Regards,
Mircea
AutoCAD's happy user equation: FILEDIA + PICKADD² + PICKFIRST = 3


That's because other pc's don't have the shape that you used
"Memories fade but the scars still linger...."
When I etransmit the file , I see the shx file attached. But when I open the cad file in other pcs, the linetype that was assigned does not display.
A simple linetype definition (based only on description in a LIN file) will be contained in the drawings, so there are no issues when drawing is accessed on other computer. Seems that your definition is using an associated shape file, so that, as BIGAL also stated, must be shipped along DWG file.
Not sure if there is more of that linetype than you shown above, but wouldn't a simple definition help?
Code:
*FOLIO_TEST,Folio test linetype _____ // _____ // _____ // _____ A,.7,-.15,["//",STANDARD,S=.1,R=0.0,X=-0.1,Y=-.01],.1
Regards,
Mircea
If I use this code, when I etransmit will it be attached? Or will I have to seperately attach. Im confused!!
If you want to use that linetype definition you need to append the code above to your acad.lin or acadiso.lin file. After save the file call LINETYPE command and load it. Once loaded in a drawing it will be embedded inside it and therefore don't need to pay attention to ship along. Just try to use it in a drawing, save it and open it on other workstation.
By the way, below each post there is a "Quote" button that should be used to embed into your replay someone's message.
Regards,
Mircea
AutoCAD's happy user equation: FILEDIA + PICKADD² + PICKFIRST = 3
Registered forum members do not see this ad.
Thank you Mircea!
I have one more question, when I assign the linetype and when it loadsin the drawing with linetype scale 1 the shape ____ / / ____ is really big. How do I scale it down but keeping the linetype scale as 1?
Bookmarks