[Plugin] Text Tools
-
By request of a colleague of mine - he needed to do a search and replace on all Text entities in a model. He had found a plugin that did a search and replace and some more functions - but I only searched the selection or active entities.
This was a quick bash-up of a script to do the job.
Plugins -> Text Tools -> Search and Replace…
SketchUp Plugins | PluginStore | SketchUcation
SketchUp Plugin and Extension Store by SketchUcation provides free downloads of hundreds of SketchUp extensions and plugins
(sketchucation.com)
-
Didier Bur did a similar tool some time ago...
find_and_replace_text.rb
? In a selection or globally in model... -
@tig said:
Didier Bur did a similar tool some time ago...
find_and_replace_text.rb
? In a selection or globally in model...That might have been the script my colleague tried to use.., but it only searched active_entities.
-
active_entities
are the entities in the current edit of the model, group or definition, so that's equivalent tomodel.entities
if it's in the model. It didn't mine into definitions...That gets me thinking of another method - see below... simply filter the array of entities returned for text and change each bit of text to suit - works in the model, inside groups and components etc... useful for any methods where global change of some types of entities is needed - like layer and material manipulation when model is heavily grouped or componentized ?
=begin (c) TIG 2009 'all_entities.rb' adds a new Method to Sketchup's Model Class - "model.all_entities" - it returns an array of all entities in the model i.e. model.entities.to_a + definintion.entities [groups and components]... =end class Sketchup;;Model def all_entities model=Sketchup.active_model all_entities=model.entities.to_a model.definitions.each{|d|d.entities.each{|e|all_entities.push(e)}} return all_entities end#def end#class ###
-
We've got such a method in the SKX library.
That reminds me; I've been meaning to get a first release for SKX out for the stable methods we got.
Advertisement