Make unique, a manually placed component

For the 4th time, will you please read this sticky post and apply it when posting code here in the forum !

… so that your code is properly lexed like:

  mod = Sketchup.active_model
  path = Sketchup.find_support_file("MyComponent.skp", "Plugins/plugin folder/subfolder/")
  component = mod.import(path)

(Notice that I changed the constant reference "Component" to the local variable reference "component" !)

Also, it is better forum code etiquette if readers do not need to scroll horizontally to read your code. So please wrap argument lists in method calls like:

  mod = Sketchup.active_model
  path = Sketchup.find_support_file(
    "MyComponent.skp", "Plugins/plugin folder/subfolder/"
  )
  component = mod.import(path)