CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > CAD Software > Autodesk Software (Autocad, Inventor etc)


Autodesk Software (Autocad, Inventor etc) Discuss Autodesk Software (Autocad, Inventor etc) software here.


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 04-07-2005, 05:58 AM
 
Join Date: May 2004
Location: Australia
Posts: 541
skippy is on a distinguished road
copying in Autocad

Here's my dumb question of the week. In Autocad I want to copy an object from one layer to another within the same drawing. "Help" and my manual tell me how to copy on the same layer, to other drawings or programs BUT I can't seem to find how to copy to another layer which I'm sure has got to be the simplest thing to do. Thanks in advance
Skippy
Reply With Quote

  #2   Ban this user!
Old 04-07-2005, 06:29 AM
 
Join Date: Nov 2004
Location: scotland
Posts: 320
MIKE JEFFERS is on a distinguished road

skippy (cobber)
is the part you want to copy polylined? it dosen't need to be but might be easier if it is.
if so just copy it were it is (try this in a new drawing using one object line/square etc and two layers)
then hilight the item-don't window it -transfer to other layer-(click layer drop down -click layer you want-make it a different colour) switch off other part layer, and thats you mate 2 parts -2 layers
if its a complicated part copy to another area in the drawing -change layer- then move it back to origonal position, this may cause problems in small cam systems
ace bieng one that springs to mind causing eroneous toolpaths.

whats the weather like?
mike
Reply With Quote

  #3   Ban this user!
Old 04-07-2005, 06:33 AM
wjbzone's Avatar  
Join Date: Apr 2003
Location: United States
Posts: 396
wjbzone is on a distinguished road

Skippy,
You have to copy then change property of the selection to the layer you want.

I use this lisp function (CPP) to copy a selection into the current layer:


**********
;CPP.LSP - COPIES SELECTION AND CHANGES
; PROPERTY TO CURRENT LAYER.
;previous selection is then the copied selection.

(defun *error* (msg)
(COMMAND "OSMODE" OLDOS)
(princ "error: ")
(princ msg)
(princ)
)

(DEFUN C:CPP ()
(SETQ s1 (getvar "cmdecho"))
(SETVAR "CMDECHO" 0)
(SETQ CL (GETVAR "CLAYER"))
(SETQ OLDOS (GETVAR "OSMODE"))
(COMMAND "OSMODE" "0")
(SETQ X (SSGET))
(COMMAND "COPY" X "" "0,0" "")
(COMMAND "CHPROP" X "" "LA" CL "")
(COMMAND "OSMODE" OLDOS)
(SETVAR "CMDECHO" S1))
***************
BILL
Reply With Quote

  #4   Ban this user!
Old 04-07-2005, 07:05 AM
 
Join Date: Jul 2004
Location: Spring Hill, Florida
Posts: 142
BigDaddyG is on a distinguished road

Skippy,
Window what you want to copy, then use copy Icon, type 0,0,0 and "Enter". Now the entire windowed area is copied on top of itself. Next use Properties Icon, then "P" - "Enter" for Previous, and change layer.
Hope this helps.
Glen
Reply With Quote

  #5   Ban this user!
Old 04-07-2005, 07:39 AM
 
Join Date: May 2004
Location: Australia
Posts: 541
skippy is on a distinguished road

I haven't tried any of the above yet but I'm sure one of them will suit my needs so thanks guys! In fact, now that I think about it Mike's suggestion to "copy to another area in the drawing -change layer- then move it back to origonal position" will suit my needs perfectly. I knew it would be simple but was having a brain block.
Skippy
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 04-07-2005, 04:27 PM
 
Join Date: May 2004
Location: Australia
Posts: 541
skippy is on a distinguished road

Mike, sorry I didn't see your "how's the weather" comment. I went to the beach last Tuesday for only two hours (midday) and I'm still red from it. The locals go brown, I go red! Being an Aussie I'm normally fairly careful about these things. Just checked out Glenrothes in Mapquest and I'd imagine it's still a bit cool there.
Can I push my luck with you guys for one more AutoCad question? What's the opposite of the explode function? I have an extrusion shape I'm working on made up of different lines and arcs and I want to do an outline (2mm offset to the outside) of the external shape. I need Autocad to see it as one entity in order for it to be able to do an outline of the whole shape. How do I do it? Thanks in advance.
Skippy
Reply With Quote

  #7  
Old 04-07-2005, 08:06 PM
ger21's Avatar
Community Moderator
 
Join Date: Mar 2003
Location: Shelby Twp, MI....USA
Posts: 20,441
ger21 is on a distinguished road
Buy me a Beer?

PEDIT. run the command, and select one of the lines. If it asks if you want to convert to a polyline, choose yes. (just hit enter, I think) type J for join, and select everything you want joined together.
__________________
Gerry

Mach3 2010 Screenset
http://home.comcast.net/~cncwoodworker/2010.html

(Note: The opinions expressed in this post are my own and are not necessarily those of CNCzone and its management)
Reply With Quote

  #8   Ban this user!
Old 04-08-2005, 02:38 AM
 
Join Date: May 2004
Location: Australia
Posts: 541
skippy is on a distinguished road

Thanks Gerry!
Skippy
Reply With Quote

  #9   Ban this user!
Old 04-11-2005, 08:55 AM
Jkier's Avatar  
Join Date: Jul 2003
Location: South Jersey
Posts: 28
Jkier is on a distinguished road

Originally Posted by ger21
PEDIT. run the command, and select one of the lines. If it asks if you want to convert to a polyline, choose yes. (just hit enter, I think) type J for join, and select everything you want joined together.
Another option is to use the "multiple" option in PEDIT.
This allows you to select all the objects you'd like to join at once and gives you the option of a "fuzz" distance.
"fuzz" distance allows you to specify a distance between two polylines that it will automatically join.
Its great for people who don't use the snaps.
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
AutoCAD offsets and copying skippy Autodesk Software (Autocad, Inventor etc) 14 05-19-2005 01:12 PM
Autocad user has newbie SW/CNC questions cadesignr Solidworks 7 02-11-2005 01:19 PM
AutoCad 2000 DXF Question Holmes_ca Autodesk Software (Autocad, Inventor etc) 8 01-19-2005 05:50 PM
Edgecam with Autocad dwg for Lathe wjbzone General CAM Discussion 4 01-05-2005 11:54 AM
AutoCad 2000 Missing .dll file E-Stop Autodesk Software (Autocad, Inventor etc) 12 05-30-2003 11:43 AM




All times are GMT -5. The time now is 11:43 AM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361