Acad proxy entity как редактировать
Перейти к содержимому

Acad proxy entity как редактировать

  • автор:

Как удалить/редактировать AutoCAD-Proxy-Entity при отсутствии Object Enabler?

Форумы CADUser → Программирование → ObjectARX → Как удалить/редактировать AutoCAD-Proxy-Entity при отсутствии Object Enabler?

Страницы 1

Чтобы отправить ответ, вы должны войти или зарегистрироваться

Сообщения 3

#1 Тема от Lidia 17 января 2006г. 15:00:18

Тема: Как удалить/редактировать AutoCAD-Proxy-Entity при отсутствии Object Enabler?

Окольные пути есть: в настройках отключить загрузку приложений, затем создать новый чертеж, открыть dwg c Proxy-объектами, выбрать все и скопировать в новый чертеж, сохранить и закрыть. Вернуть старые настройки AutoCAD
Но хотелось бы цивилизованным способом Proxy-объекты переместить/удалить/разбить, заменить текст, т.е. универсальный Enabler под AutoCAD 2005-2006!

#2 Ответ от kpblc 17 января 2006г. 15:15:12

Re: Как удалить/редактировать AutoCAD-Proxy-Entity при отсутствии Object Enabler?
;|============================================================================= * Универсальная функция разбития proxy-объектов. * Параметры вызова: * нет * Примеры вызова: (_kpblc-block-explode-proxy) =============================================================================|; (defun _kpblc-block-explode-proxy (/ selset item layer_list) (vl-load-com) (setq selset (ssget "_X" '((0 . "ACAD_PROXY_ENTITY")))) (vlax-for item (vla-get-layers (vla-get-activedocument (vlax-get-acad-object))) (if (= (vla-get-lock item) :vlax-true) (setq layer_list (append layer_list '(item))) ) ;_ end of if ) ;_ end of vlax-for (while (and selset (> (sslength selset) 0) ) ;_ end of and (setq item (ssname selset 0)) (ssdel item selset) (vla-explode (vlax-ename->vla-object item)) ) ;_ end of while (foreach item layer_list (vla-put-lock item :vlax-true) ) ;_ end of foreach ) ;_ end of defun ;|============================================================================= * Сервисная функция для вызова из ком.строки =============================================================================|; (defun c:xproxy (/ adoc) (vla-startundomark (vla-get-activedocument (vlax-get-acad-object))) (_kpblc-block-explode-proxy) (vla-endundomark (vla-get-activedocument (vlax-get-acad-object))) ) ;_ end of defun

#3 Ответ от kpblc 17 января 2006г. 15:24:05

Re: Как удалить/редактировать AutoCAD-Proxy-Entity при отсутствии Object Enabler?

Тьфу ты, несколько строк потерял. Вот так будет лучше:

;|============================================================================= * Универсальная функция разбития proxy-объектов. * Параметры вызова: * нет * Примеры вызова: (_kpblc-block-explode-proxy) =============================================================================|; (defun _kpblc-block-explode-proxy (/ selset item layer_list) (vl-load-com) (setq selset (ssget "_X" '((0 . "ACAD_PROXY_ENTITY")))) (vlax-for item (vla-get-layers (vla-get-activedocument (vlax-get-acad-object))) (if (= (vla-get-lock item) :vlax-true) (progn (setq layer_list (append layer_list '(item))) (vla-put-lock item :vlax-false) ) ;_ end of progn ) ;_ end of if ) ;_ end of vlax-for (while (and selset (> (sslength selset) 0) ) ;_ end of and (setq item (ssname selset 0)) (ssdel item selset) (vla-explode (vlax-ename->vla-object item)) ) ;_ end of while (foreach item layer_list (vla-put-lock item :vlax-true) ) ;_ end of foreach ) ;_ end of defun ;|============================================================================= * Сервисная функция для вызова из ком.строки =============================================================================|; (defun c:xproxy (/ adoc) (vla-startundomark (vla-get-activedocument (vlax-get-acad-object))) (_kpblc-block-explode-proxy) (vla-endundomark (vla-get-activedocument (vlax-get-acad-object))) ) ;_ end of defun

Сообщения 3

Тему читают: 1 гость

Страницы 1

Чтобы отправить ответ, вы должны войти или зарегистрироваться

Форумы CADUser → Программирование → ObjectARX → Как удалить/редактировать AutoCAD-Proxy-Entity при отсутствии Object Enabler?

Форум работает на PunBB , при поддержке Informer Technologies, Inc

С помощью какого доп. приложения для Аutocad 2010 можно редактировать объекты «ACAD PROXY ENTITY»?

Подскажите пожалуйста, если кто знает) ) По работе нужно редактировать чертежи, содержащие объекты «ACAD PROXY ENTITY», но я сними ничего не могу делать — ни копировать, ни редактировать, что то получается расчленить. Очень много лишнего времени теряется (( С помощью какой программки или аддона можно их редактировать, не расчленяя и не удаляя? Заранее спасибо большое за ответ)!

Дополнен 11 лет назад
Устанавливала СПДС, все равно не видит ((
Лучший ответ

Попробуй установить аддон СПДС GraphiCS.
В настройках Автокада на вкладке Открытие-Сохранение посмотри. Там есть что-то типа «Заместители для сторонних объектов». Попробуй включить ее.

Остальные ответы

SPDS могёт это делать. А вообще, если автор в чертеж насовал такие объекты (причем, сделанные при помощи неизвестной программы) , то это гемор еще тот.

ЗЫ
Если их получается взорвать, то это не самый печальный случай.

EXPLODEALLPROXY

Попробуй:
1. Взорвать
2. Правка — Копировать вид
3. Вставить
Возможно, что-то получится.
У меня сработало.

Acad proxy entity как редактировать

Proxy Entities, Proxy Objects, How to, Workaround, Unable to edit

Written by Levi Miguel
Updated over a week ago

Usually experienced when working with files either created elsewhere, or by someone else, adding to the natural difference in CAD Standards in the drawings, occasionally you might face scenarios on which you come across problems/unexpected behaviors.

One of these scenarios is when you are provided with drawings containing Proxy Entities/Objects.

Proxy Entities/Objects
Problems with Proxy Entities/Objects usually manifest when you select geometry in your drawing, in order to edit it, and “apparently”, you have selected a Block. You try to Edit the block, or after a few failed attempts, you try to Explode it and / or Delete it, and these operations also fail.

Identifying Proxy Entities/Objects
Select the problematic entities, and verify in the Properties Palette if indeed they are Proxy entities/objects. If this is the case, it’s likely that they were created using product specific functionality: They are fully functional in the native application where they were created,but substituted for a custom object when the functionality/command in the application that created the custom object is not available in other host applications. Later, when the application is available, the proxy object is replaced by the custom object. These proxy entities have significantly reduced capabilities compared to their corresponding custom objects. For example, operations such as erasing and moving an object, or changing object properties, may or may not be possible on a proxy object, depending on the application that created it.

The software developer of the application (where the entity/object was created) might provide add-ins (Object Enablers), that allow the visualization of the information in other of their vertical products (or very limited editing/manipulation options), but obviously this doesn’t solve the problem, or it’s even applicable if you are using an application from a different developer. To summarize, this is not a failure of the application or any functionality, but a limitation imposed/consequence of the chosen workflow/drawing organisation used. Note that although sharing the capacity of handling the same file format(s), every application has version/product specific features that might not be supported by other software, even if from the same developer.

The Workaround
For this type of issue,ideally you can ask the user that provided the drawing/file to return to the original file (and application), and

Save the file in an“older” DWG or DXF version. This usually “simplifies” the information/geometry to a level, that enables/allows editing in other applications.

When/if it’s not the case, ask that the problematic geometry (that was created using product specific features), is Exploded prior to export the file.Often the structure of this information uses Nested Blocks, so you might need to explode the geometry more than once.

Refer to the Help files of the file’s native application for information on Commands/Options for using drawings in different versions and applications. You might find specific commands and/or command variables that might be helpful. As this type of behavior is fairly common when migration files between different software packages, and experienced even in other developer’s vertical products, you can easily find information on the issue, performing a quick search on Google, or CAD User’s Groups.

If returning to the native application is not possible, we would recommend that file was recreated, replacing the problematic geometry by ARES native geometry/objects.

For some types of geometry, you may be able to use the _MAKEFLATSNAPSHOT command, instead of tracing the geometry.

Note: Although supporting the same file formats (e.g. DWG, DXF), applications from different software developers (and often vertical products of the same developer) have product specific or proprietary functionalities. Although useful in that environment/platform, if your workflow implies using files in different applications, the use of different Export or Save options might be recommended. Reducing or simplifying the drawing complexity, in order to make it more “neutral” is a first step in order to avoid issues, when using files in different platforms/applications.

как редактировать acad proxy entity

Работающий Рroxy — сервер расположен близко к Вам. Он находиться гораздо ближе чем масса сайтов, нужных вам. К примеру, если вы работаете с европейскими и американскими сайтами, то нужно использовать российский Рroxy. Если вам нужны российские сайт – то лучше всего в этом случае вам подойдет, рroxy-сервер, который находиться в родном городе.

Рroxy-сервер обладает сильным каналом связи (выделенная сеть или оптоволокно). Также он имеет большой пул, т.е максимальную скорость обмена с Intenet-ом.

Ускорение объясняет то, что между вашим компьютером и Рroxy-сервером существует настолько максимальн ая скорость передачи данных, насколько это возможно при вашем оборудовании.

САМЫЙ СВЕЖИЙ СПИСОК РАБОЧИХ PROXY

ЖМИ

Также стоит знать, что при использовании модема скорость обмена данными будет равняться максимально допустимой конкретно линии связи.

032

Рroxy-сервер всегда пользуется самой высокой скоростью, (которая допустима из-за сильного канала) с сайтами. Это происходит потому, что при обмене данными по сети общая скорость обмена не может быть больше минимальной скорость обмена между промежуточными компьютерами. Т.е. скорость связи с отечественными серверами будет точно такая же как и иностранными.

Уточним, что эта скорость будет идентична скорости обмена данными между вашим компьютером и Рroxy-сервером.

Тэги: proxy share , proxy lubuntu , tunnel proxy , база proxy , ftp proxy , proxy 3а , proxy heaven , бесплатные прокси free proxy , nph proxy , net proxy , turbo proxy com , nginx proxy set header , portable proxy switcher pro , error code 502 proxy error , как поднять proxy сервер , скачать кс by proxy , proxy soft

САМЫЙ СВЕЖИЙ СПИСОК РАБОЧИХ PROXY

ЖМИ

Работающие proxy:

182.253.48.196:80
139.194.47.63:8080
139.194.47.63:8080
186.88.196.59:8080
212.200.115.140:8080
103.249.240.220:8080
190.147.34.134:8080
103.249.240.220:8080
188.255.232.54:6666
183.223.173.12:8123
186.90.24.172:8080
190.147.34.134:8080
212.200.115.140:8080
01.93.21.147:2222
188.255.232.54:6666
186.88.196.59:8080
01.93.21.147:2222
103.249.240.220:8080
190.147.34.134:8080
182.253.48.196:80
139.194.47.63:8080
186.88.196.59:8080
01.93.21.147:2222
01.93.21.147:2222
183.223.173.12:8123
ещё прокси …

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *