Tek Mesaj Görüntüle
Eski 08-10-2005, 18:28   #10
asteria
 
Kayıt Tarihi: 04-08-2004
Mesaj: 1.610
asteria is on a distinguished road

Merhaba,

'Break-at-point' komutunun tekrarlanamaması ile yaşanmış sorunları pek çok kişi 'mouse'un sağ tuşunu kullanarak aşabilmiş....Ancak Taurus_NE bunun sorununu çözemediğini belirtmiş. Bu durumda nasıl bir çözüm daha önerebileceğimi bilemiyorum.

Ancak Autodesk 'break' komutunun 'break-at-point' komutuna dönüştürülerek kullanıldığı durumlarda makronun hatalar yarattığını tespit etmiş ve sayfasında bir kaç metod yayınlamış. Bunun probleminizin tam cevabı olması olasılığını bilemiyorum, yine de bir göz atabilirsiniz.

Autodesk 'snaps'in aktif olduğu durumlarda 'break' komutunun hatalar verdiğini tespit edip 'snaps' i 'break' işlemleri esnasında devre dışı bırakan bir makro hazırlamış.

Daha önce de belirttiğim gibi probleminizi tam hedef almış bir çözüm gibi görünmese de incelemek ve makroyu kullanmak belki bazı diğer hataları ortadan kaldırabilir...

Link:http://usa.autodesk.com/adsk/servlet...linkID=2475323

Sayfadan alıntı:
-------------------------------------------------------------------------

Skip Main Content and go to Footer Contents.Break macro does not function correctly
Published date: 2003-03-07
ID: TS73758

Applies to:
AutoCAD® 2004
AutoCAD® 2002


Issue

When you use the BREAK command with the Break at Point button from the toolbar or with the @ symbol used as the second point, the results are not as you expected.


Solution


This problem occurs when the Break at Point command is executed with object snaps activated.

Use one of the following methods to work around this problem:

Method #1
Manually turn off object snaps before you use the BREAK command.

Method #2
Replace the macro in the Break at Point toolbar button with the following text:

^C^C(setq os (getvar "osmode"))(setvar "osmode" 0)(command "_break" pause "f" pause "@")(setvar "osmode" os)(princ)

This macro will turn off object snaps, start the BREAK command, and reset the object snaps when the BREAK command is terminated.

asteria offline   Alıntı Yaparak Yanıtla