• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

visual replace is gone, what do you do?

  • Thread starter Thread starter stefanobruno
  • Start date Start date

stefanobruno

Guest
Good morning to all,
I open a new discussion instead of hooking up to my 3 years ago.
the question is more serious, the app is no longer available ( fortunately I have a copy kept in safe ).
said that, do you use anything else to satisfy this serious loss?
original_1.webp
 
Hi.
I don't know that app and what it does prove to describe the operation, maybe something
 
select an element present in the axieme and the app asks with which element, always present in the axieme, to replace it.
if the items to be replaced are more than one, you can choose between one or all. (this part does not always work well, but it is not an influential thing for me )
 
excuse the banality but what difference does the inventor substitute ask you the same if one or all?
 
I don't have to go to select a missing file in the dir of the pc, but I see the piece by which to replace the other.
 
Good morning to all,
I open a new discussion instead of hooking up to my 3 years ago.
the question is more serious, the app is no longer available ( fortunately I have a copy kept in safe ).
said that, do you use anything else to satisfy this serious loss?
View attachment 71888
buongiorno,
utilizzo questo ilogic:



ooccurrence_old = thisapplication.commandmanager.pick(selectionfilterenum.kassemblyoccurrencefilter, "seleziona il componente da sostituire:")

dim doc_old as document
dim curfilename_old as string

'get the selected item document occurrence name
doc_old = ooccurrence_old.definition.document
'get the path and file name of the selected item
curfilename_old = doc_old.fullfilename


ooccurrence_new = thisapplication.commandmanager.pick(selectionfilterenum.kassemblyoccurrencefilter, "seleziona il componente sostituto:")

dim doc_new as document
dim curfilename_new as string

'get the selected item document occurrence name
doc_new = ooccurrence_new.definition.document
'get the path and file name of the selected item
curfilename_new = doc_new.fullfilename


sub_tutto = inputradiobox("sostituisco tutto?", "si", "no", sub_tutto, title := "")

if sub_tutto = true then
'false is replace , true is replace all
component.replace(ooccurrence_old.name, curfilename_new, true)
else
component.replace(ooccurrence_old.name, curfilename_new, false)
end if
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top