@driven said:
for a mac you can create a symbolic link the will show the skps in the 'Components Browser'
lnk_skps = %x(ln -s "#{Sketchup.find_support_file("Plugins") << "/your_folder/your_skps"}" "#{Sketchup.find_support_file('Components')}" 2>&1)
is there not a windows equivalent?
john
For Vista and higher:
mklink /D LinkName TargetPath
XP "supports" a similar feature called junction points, but I don't think it's available by default.
For XP:
links LinkName TargetPath
For Vista and higher:
mklink \J LinkName TargetPath