SketchUcation Plugin Store

 

 

[Plugin] TT_Lib² (2.7.1) — 19 February 2013

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby thomthom » Mon Oct 18, 2010 11:10 am

SelectionToys does not use TT_Lib2 at all.

You need to ensure you have the correction version of TT_Lib (1.x) and that it's installed correctly.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby Pixero » Mon Oct 18, 2010 12:19 pm

Reinstalling the latest 1.x version helped.

By the way I'm tired of rearrangeing my toolbars once again. How does the save toolbar in SU8 work?
User avatar
Pixero
Premium Member
Premium Member
 
Posts: 1284
Joined: Wed Nov 14, 2007 2:58 pm
Location: Halmstad, Sweden
Name: Jan Sandström
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby thomthom » Mon Oct 18, 2010 12:30 pm

Pixero wrote:By the way I'm tired of rearrangeing my toolbars once again. How does the save toolbar in SU8 work?

Poorly.

View->Toolbars->Save Positions
View->Toolbars->Restore Positions

I've found it to not work so well when adding/removing plugins with toolbars...
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby Jim » Fri Oct 22, 2010 9:04 pm

Thom, have you generated docs for this lib? I appreciate that you are thinking in terms of re-use, and your code is clean and clear. Is this licensed so that other people can use it also?
Jim
Global Moderator
 
Posts: 4126
Joined: Mon Nov 12, 2007 10:13 pm
Location: NEOH
Name: Jim
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby thomthom » Fri Oct 22, 2010 9:25 pm

Jim wrote:Thom, have you generated docs for this lib? I appreciate that you are thinking in terms of re-use, and your code is clean and clear. Is this licensed so that other people can use it also?

I have some docs generated. But the comments are not complete. It's still taking shape and some things will be changed.
I'll try to make a note on the modules that are WIP and include more examples. If you have questions about particulars just let me know and I can push them up on the update list.

For the brave, here is the current output: http://www.thomthom.net/software/sketchup/tt_lib2/doc/ (for TT_Lib 2.5 mind you)

(Anyone knows how to modify YARDs templates so the constant lists will be more compact?)
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby Jim » Fri Oct 22, 2010 9:38 pm

Guess I could run yard myself... heh.
Jim
Global Moderator
 
Posts: 4126
Joined: Mon Nov 12, 2007 10:13 pm
Location: NEOH
Name: Jim
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby thomthom » Sun Nov 14, 2010 11:15 am

Just a preview of one of the GUI gizmos I'm working on.



Code to generate the windows:
Code: Select all
#-----------------------------------------------------------------------------
# Compatible: SketchUp 7 (PC)
#             (other versions untested)
#-----------------------------------------------------------------------------
#
# Thomas Thomassen
# thomas[at]thomthom[dot]net
#
#-----------------------------------------------------------------------------

require 'sketchup.rb'
require 'TT_Lib2/core.rb'

TT::Lib.compatible?('2.4.0', 'Inputbox Test')

#-----------------------------------------------------------------------------


module TT::Plugins::InputboxTest
 
  ### CONSTANTS ### --------------------------------------------------------
 
  VERSION = '1.0.0'
 
 
  ### MENU & TOOLBARS ### --------------------------------------------------
 
  unless file_loaded?( File.basename(__FILE__) )
    m = TT.menu('Plugins').add_submenu('TT::GUI')
    m.add_item('TT::GUI::Inputbox')     { self.test_inputbox }
    m.add_item('TT::Plugins::CleanUp')  { self.test_cleanup }
  end
 
 
  ### MAIN SCRIPT ### ------------------------------------------------------
 
  def self.test_inputbox
    options = {
      :title => 'TT::GUI::Inputbox',
      :pref_key => 'TT::GUI::Inputbox',
      :modal => true,
      :accept_label => 'Save',
      :cancel_label => 'Abort'
    }
    i = TT::GUI::Inputbox.new(options)
    i.add_control( {
      :label => 'Hello',
      :value => 'World',
      :description => 'Lorem ipsum <b>dolor</b> sit amet.',
    } )
    i.add_control( {
      :label => 'Checkbox1',
      :value => true
    } )
    i.add_control( {
      :label => 'Checkbox2',
      :value => false
    } )
    i.add_control( {
      :label => 'Integer',
      :value => 123
    } )
    i.add_control( {
      :label => 'Float',
      :value => 1.23
    } )
    i.add_control( {
      :label => 'Length',
      :value => 1.23.m
    } )
    ms = Sketchup.active_model.materials
    i.add_control( {
      :label => 'Dropdown List1',
      :value => (ms.current) ? ms.current.display_name : nil,
      :options => ms.map { |m| m.display_name },
      :description => 'Unordered ordered.'
    } )
    i.add_control( {
      :label => 'Dropdown List2',
      :value => (ms.current) ? ms.current.display_name : nil,
      :options => ms.map { |m| m.display_name },
      :order => 1,
      :natrual_order => true,
      :description => 'Naturally ordered.'
    } )
    i.add_control( {
      :label => 'List1',
      :value => (ms.current) ? ms.current.display_name : nil,
      :options => ms.map { |m| m.display_name },
      :order => -1,
      :natrual_order => true,
      :description => 'Naturally ordered reversed.',
      :size => 5
    } )
    i.add_control( {
      :label => 'List2',
      :value => ms.to_a[0..1].map { |m| m.display_name },
      :options => ms.map { |m| m.display_name },
      :order => -1,
      :natrual_order => true,
      :description => 'Multiple Selection.',
      :size => 5,
      :multiple => true
    } )
    i.add_control( {
      :label => 'Radioboxes1',
      :value => 'Hello World',
      :options => ['Hello World', 'Lorem Ipsum', 'Foo Bar'],
      :type => TT::GUI::Inputbox::CT_RADIOBOX
    } )
    i.add_control( {
      :label => 'Radioboxes2',
      :value => 'Monkeys',
      :options => ['Cheese', 'Monkeys'],
      :type => TT::GUI::Inputbox::CT_RADIOBOX
    } )
    i.prompt { |results|
      puts 'Results returned:'
      p results
      #puts i.get_html
    }
  end
 
 
    def self.test_cleanup
    options = {
      :title => 'TT::Plugins::CleanUp',
      :pref_key => 'TT::Plugins::CleanUp',
      :modal => true,
      :accept_label => 'CleanUp',
      :cancel_label => 'Cancel',
      :align => 0.3
    }
    i = TT::GUI::Inputbox.new(options)
    i.add_control( {
      :label => 'Scope',
      :value => 'Local',
      :options => ['Selected', 'Local', 'Model'],
      :type => TT::GUI::Inputbox::CT_RADIOBOX,
      :group => 'General'
    } )
    i.add_control( {
      :label => 'Validate Results',
      :value => true,
      :group => 'General'
    } )
    i.add_control( {
      :label => 'Merge Coplanar Faces',
      :value => true,
      :group => 'Coplanar Faces'
    } )
    i.add_control( {
      :label => 'Ignore Normals',
      :value => false,
      :group => 'Coplanar Faces'
    } )
    i.add_control( {
      :label => 'Ignore Materials',
      :value => false,
      :group => 'Coplanar Faces'
    } )
    i.add_control( {
      :label => 'Ignore UV',
      :value => true,
      :group => 'Coplanar Faces'
    } )
    i.add_control( {
      :label => 'Remove Duplicate Faces',
      :value => false,
      :group => 'Faces'
    } )
    i.add_control( {
      :label => 'Repair Split Edges',
      :value => true,
      :group => 'Edges'
    } )
    i.add_control( {
      :label => 'Remove Lonely Edges',
      :value => true,
      :group => 'Edges'
    } )
    i.add_control( {
      :label => 'Remove Edge Materials',
      :value => false,
      :group => 'Edges'
    } )
    i.add_control( {
      :label => 'Smooth Edges by Angle',
      :value => 0.0,
      :group => 'Edges'
    } )
    i.prompt { |results|
      puts 'Results returned:'
      p results
      #puts i.get_html
    }
  end
 
 
  ### DEBUG ### ------------------------------------------------------------
 
  def self.reload
    TT::Lib.reload
    load __FILE__
  end

end # module

#-----------------------------------------------------------------------------

file_loaded( File.basename(__FILE__) )

#-----------------------------------------------------------------------------


Also thinking of adding more wrappers to create windows entirely from Ruby - buttons, lists, dropdowns etc...
Please, register (free) to access all the attachments on the forums.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby Jim » Sun Nov 14, 2010 3:33 pm

thomthom wrote:Also thinking of adding more wrappers to create windows entirely from Ruby - buttons, lists, dropdowns etc...


This approach will win. :thumb:
Jim
Global Moderator
 
Posts: 4126
Joined: Mon Nov 12, 2007 10:13 pm
Location: NEOH
Name: Jim
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin] TT_Lib2 (2.4.0) — 22 September 2010

Postby thomthom » Sun Nov 14, 2010 4:04 pm

When I made Vertex Tools I had a similar system for the toolbar system. A set of classes that acted as wrappers for the controls. The main classes where Container and Control - they would have most of the code. From there it was easier to create sub-classes like toolbars and buttons. I then had a very nice abstract layer where I created a toolbar class - where I added Button objects.
Complex systems though - but I hope to have a base system by the new year.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.0) — 05 February 2011

Postby jeffschaid01 » Sat Feb 05, 2011 9:41 pm

Hello,
I'm having a problem with the program crashing at 49% when exporting as a vrml. I've imported my bmp image, sized, indexed points and generated the mesh. Any suggestions?

Thanks,
Jeff
jeffschaid01
 
Posts: 10
Joined: Sat Feb 05, 2011 8:09 pm
Name: Jeff

Re: [Plugin] TT_Lib2 (2.5.0) — 05 February 2011

Postby thomthom » Sun Feb 06, 2011 11:01 am

jeffschaid01 wrote:Hello,
I'm having a problem with the program crashing at 49% when exporting as a vrml. I've imported my bmp image, sized, indexed points and generated the mesh. Any suggestions?

Thanks,
Jeff

Are you referring to Bitmap to Mesh?
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.0) — 05 February 2011

Postby Gaieus » Sun Feb 06, 2011 4:46 pm

Yes, he is.
Gai...
User avatar
Gaieus
Administrator
 
Posts: 27604
Joined: Sat Oct 20, 2007 8:24 am
Location: Pécs, Hungary
Name: Csaba Pozsárkó
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: historical reconstruction
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.0) — 05 February 2011

Postby thomthom » Mon Feb 07, 2011 7:33 pm

Version 2.5.1
  • Fixes Webdialog issues with IE7
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.2) — 10 February 2011

Postby thomthom » Thu Feb 10, 2011 10:04 am

Version 2.5.2
Important bugfix!
  • Fixed bug in the method that repair broken edges.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.3) — 10 February 2011

Postby thomthom » Thu Feb 10, 2011 2:23 pm

Version 2.5.3
Important bugfix!
  • Fixed again repair broken edges.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.3) — 10 February 2011

Postby Gaieus » Thu Feb 10, 2011 4:05 pm

TT, I got this message while overwriting the old library (meaning that the file I marked is write-protected). When I wanted to overwrite anyway, it wanted a password so I could not.

Is it an issue if I do not update that particular file?
Please, register (free) to access all the attachments on the forums.
Gai...
User avatar
Gaieus
Administrator
 
Posts: 27604
Joined: Sat Oct 20, 2007 8:24 am
Location: Pécs, Hungary
Name: Csaba Pozsárkó
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: historical reconstruction
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.3) — 10 February 2011

Postby thomthom » Thu Feb 10, 2011 4:17 pm

Gaieus wrote:TT, I got this message while overwriting the old library (meaning that the file I marked is write-protected)

It's not write protected on my computer. Nor in the zip file.

Gaieus wrote:When I wanted to overwrite anyway, it wanted a password so I could not.

I have no idea what this can be. I've never seen Windows ask for that. Are you using some third party applications to manage files?
What did you use to extract the files? Did you extract directly over the files?
What if you delete, then extract?
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.3) — 10 February 2011

Postby Gaieus » Thu Feb 10, 2011 4:34 pm

It's simply Win XP "extract (or open?) all files" when I enter the zip archive (yes, I was simply overwriting the existing install). Here is the dialog that asks for the password:

pw.png

I then tried to delete the file but it said omething was using it. It was obviously SU as when I closed it, I could delete it and install the library correctly. This made me think however so I tried to reinstall it (now as it had been installed the file again) and with the SU window closed, it allowed me to.

So maybe a line in the front post to "close SU before installing" would be useful (people need to restart SU anyway).
Please, register (free) to access all the attachments on the forums.
Gai...
User avatar
Gaieus
Administrator
 
Posts: 27604
Joined: Sat Oct 20, 2007 8:24 am
Location: Pécs, Hungary
Name: Csaba Pozsárkó
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: historical reconstruction
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.3) — 10 February 2011

Postby Dave R » Fri Feb 11, 2011 12:13 am

Csaba, I got a similar message about that .so file when I extracted the ZIP file to the Plugins folder. SketchUp was open. So I closed SketchUp and tried again. It worked fine then. I wonder if that file is write protected when SU is open and the file is in use.
Inspecting mirrors is a job I could easily see myself doing.
User avatar
Dave R
Global Moderator
 
Posts: 8972
Joined: Tue Nov 13, 2007 11:52 pm
Location: SE Minnesota
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: woodworking
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.3) — 10 February 2011

Postby thomthom » Fri Feb 11, 2011 8:31 am

Dave R wrote:It worked fine then. I wonder if that file is write protected when SU is open and the file is in use.

I sounds like SketchUp keeps a lock on the file when it's loaded. Probably because it's binary code instead of interpreted Ruby.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.3) — 10 February 2011

Postby rasstappen » Mon May 30, 2011 3:33 pm

Sweet thanks-

Rasstappen
rasstappen
 
Posts: 1
Joined: Mon May 30, 2011 2:58 pm

Re: [Plugin] TT_Lib2 (2.5.4) — 17 June 2011

Postby thomthom » Fri Jun 17, 2011 6:52 pm

Version 2.5.4
This update requires that you also update:
  • Edge Tools ( 2.0.3 )
  • Plan Tools ( 1.2.2 )
  • CleanUp ( 3.1.4 )
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.4) — 17 June 2011

Postby Rich O Brien » Fri Jun 17, 2011 7:01 pm

Will TT_Lib ever be superseded by this? I know there are plugins that still require TT_Lib but it'd be nice to have all yours captured under TT_Lib2
:::Blog:::

I'm a Trimbler now!
User avatar
Rich O Brien
Administrator
 
Posts: 8270
Joined: Fri Oct 31, 2008 9:05 am
Location: Limerick, Ireland
Name: Rich O'Brien
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: engineering and mechanical design
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.4) — 17 June 2011

Postby thomthom » Fri Jun 17, 2011 7:03 pm

Selection Toys is the only one that requires TT_Lib version 1.
Until Selection Toys is rewritten, into version 3, TT_Lib can not be made obsolete.

The other plugins use TT_Lib 2 however.
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Great But...

Postby bitslapped » Thu Jun 23, 2011 4:19 am

I do love this plugin and use it a lot in complex models.

What I would love is for the 'smooth angle' feature to have an 'ignore materials' checkbox, so that coplanar faces of different materials do not merge.
E.g I have an organic surface with paths, lawn and garden beds on it. It would be great if the plugin smoothed the surface but left the edges between surface finishes.

Thanks ThomThom, love your work.
bitslapped
 
Posts: 7
Joined: Tue Oct 14, 2008 11:26 pm

Re: Great But...

Postby thomthom » Thu Jun 23, 2011 8:16 am

bitslapped wrote:I do love this plugin and use it a lot in complex models.

I assume you are referring to the CleanUp plugin? (This is the TT_Lib thread...)

bitslapped wrote:What I would love is for the 'smooth angle' feature to have an 'ignore materials' checkbox, so that coplanar faces of different materials do not merge.

That would make it smooth the edge.

bitslapped wrote:E.g I have an organic surface with paths, lawn and garden beds on it. It would be great if the plugin smoothed the surface but left the edges between surface finishes.

It's a good idea. I'll write it up for The List!
Thomas Thomassen — SketchUp Monkey & Coding addict
List of my plugins and link to the CookieWare fund
User avatar
thomthom
Global Moderator
 
Posts: 17545
Joined: Tue Nov 13, 2007 12:47 pm
Location: Trondheim, Norway
Name: thomthom
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: architecture
Level of SketchUp: Advanced

Re: [Plugin] TT_Lib2 (2.5.4) — 17 June 2011

Postby bitslapped » Fri Jun 24, 2011 12:28 am

Sorry, yes I was talking about Cleanup3.

Thanks for considering ThomThom, and yeah the 'ignore materials' was just using your existing terminology to add the feature.
Ideally it would be something like a "maintain material edges" checkbox.

Cheers mate, look forward to it :)
bitslapped
 
Posts: 7
Joined: Tue Oct 14, 2008 11:26 pm

Re: [Plugin] TT_Lib2 (2.5.4) — 17 June 2011

Postby Roger » Thu Jul 14, 2011 5:37 pm

ThomThom I am running 8 Pro and am trying to install "solid inspector." I have TT_Lib2 installed in the plugins folder and "tt_solid_inspector" installed in the "plug ins" folder.

When I start 8 I can not find any indciation of the programs existence. Any ieas of where I can begin looking for the problem?

Thanks.
Roger
 
Posts: 1344
Joined: Tue Nov 13, 2007 11:02 pm
Location: Arizona Mexico Border
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

Re: [Plugin] TT_Lib2 (2.5.4) — 17 June 2011

Postby kyyu » Thu Jul 14, 2011 6:24 pm

Roger wrote:ThomThom I am running 8 Pro and am trying to install "solid inspector." I have TT_Lib2 installed in the plugins folder and "tt_solid_inspector" installed in the "plug ins" folder.

When I start 8 I can not find any indciation of the programs existence. Any ieas of where I can begin looking for the problem?

Thanks.

It saids the following, in the description. Did you check there?
Access
Tools > Solid Inspector
kyyu
 
Posts: 150
Joined: Mon Jan 25, 2010 12:32 pm
Location: Maryland, USA
Name: Kwok Yu

Re: [Plugin] TT_Lib2 (2.5.4) — 17 June 2011

Postby Roger » Thu Jul 14, 2011 6:54 pm

kyyu wrote:
Roger wrote:ThomThom I am running 8 Pro and am trying to install "solid inspector." I have TT_Lib2 installed in the plugins folder and "tt_solid_inspector" installed in the "plug ins" folder.

When I start 8 I can not find any indciation of the programs existence. Any ieas of where I can begin looking for the problem?

Thanks.

It saids the following, in the description. Did you check there?
Access
Tools > Solid Inspector

I had to do a complete system restart before it appeared. Thanks Kwok
Roger
 
Posts: 1344
Joined: Tue Nov 13, 2007 11:02 pm
Location: Arizona Mexico Border
Operating system: Windows
SketchUp version: 8
License type: Pro
SketchUp use: other
Level of SketchUp: Intermediate

SketchUcation One-Liner Adverts

by Ad Machine » 5 minutes ago

Need SketchUp Books, Models, Styles or Textures? Check out our One Stop Shop for SketchUp.

Premium Members get 20% discount!

Ad Machine
Robot
 
Posts: 2012

Next

Return to Plugins

Who is online

Users browsing this forum: jeffgo, mra, OSN58 and 4 guests