sketchucation logo sketchucation
    • Login
    1. Home
    2. wikii
    3. Topics
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info
    W
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 33
    • Posts 151
    • Groups 1

    Topics

    • W

      How to export img that every entity is shown by exact color

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Discussions
      8
      0 Votes
      8 Posts
      0 Views
      HornOxxH
      Hi All, maybe not exactly what is asked here but because colour accuracy is the topic here and this question is professionally very important for me as well. As a rule, and only where colour accuracy is priority #1 which happens quite often with me: In these cases I never export a pixel image out of SkUp but always a PDF (with or without lines). I import this PDF into Adobe Illustrator (or any similar tool), automatically select the relevant fill colours and then, within Adobe Illustrator, convert them to the exactly calibrated colours of our own specific Adobe colour profile. If necessary, I also combine this (still rather dull) PDFs within Adobe Illustrator with an ambient occlusion or shadow rendering of my model which I overlay multiplying there. I hope this method helps...
    • W

      How to reload a extension loader file?

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      5
      0 Votes
      5 Posts
      10k Views
      rami_lpmR
      I use this. def self.reload() Sketchup.send_action(CMD_RUBY_CONSOLE) load __FILE__ puts "reloaded #{__FILE__.to_s}\n" end
    • W

      Where are shortcuts stored in sketchup2018

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      7
      0 Votes
      7 Posts
      3k Views
      S
      I expect that SketchUp reads these json files as it starts and writes out revised copies as it quits. So, if you edit the file while SketchUp is already running, SketchUp will not see the changes and will overwrite with its in-memory version when it quits. You need to quit SketchUp before editing any preferences files.
    • W

      Differences bewteen HtmlDialog and WebDialog

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • W

      Where can I find webdialog's position and size in su 2018

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      3
      0 Votes
      3 Posts
      2k Views
      W
      @tig said: C:/Users/USERNAME/AppData/Local/SketchUp/SketchUp 2018/SketchUp/**PrivatePreferences.json** For example, for the "ExtensionStore" toolbar info, you need to find the entries using some grepping and parsing/splitting... for the toolbar "RubyWorkspace\\ToolbarsUser-Bar8"; { > "BarID"; 59661, > "BarName"; "ExtensionStore" > }, and from its BarID, its status later on "RubyWorkspace\\RubyToolBar-59661"; { > "Columns"; 0, > "DockBarId"; 0, > "Visible"; 1 > }, and for its main dialog details "WebDialog_SketchUcation ExtensionStore"; { > "Height"; 918, > "Left"; 11, > "Top"; 84, > "Width"; 862 > }, for this kind of entry note that another 'prefix' might apply for the newer HTML dialog type - test it.. Great! Many thanks! wikii
    • W

      [Plugin]SharpComp v1.0 2015-11-29

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      34
      0 Votes
      34 Posts
      11k Views
      Dave RD
      @rutpin said: The plugin doesn't work... Your profile says you are using SketchUp 2021 Free/Make. There is no such version, though. If you are using SketchUp 2021 Pro, it isn't terribly surprising that the plugin doesn't work. It hasn't been updated in more than 7 years. Ruby has changed at least once since then. BTW, please fix your profile with the correct SketchUp version.
    • W

      How to reload a skp as componet

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      3
      0 Votes
      3 Posts
      607 Views
      W
      @jim said: Hi wikii - this topic may be of interest: http://sketchucation.com/forums/viewtopic.php?f=180%26amp;t=60568 Thank you for your suggestion, Jim.
    • W

      How to get "Plugins" menu name in other language?

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      10
      0 Votes
      10 Posts
      3k Views
      TIGT
      It's also a bad idea to set shortcuts anyway [even if you could do it effectively !] - the user might be angry at you when you overwrite their own shortcuts with yours ! You can instruct the user of your tool how to add their own shortcuts, but don't force them - you are meant to be their friend, not their master. If you want the user to press certain keys to do certain things in your Tool, then you are pretty much limited to Ctrl, Alt, Shift and Tab, or say numbers 0-9 followed by other characters which can be parsed off from the user's typed text input - so "1:3" can be read in as a slope of "1 in 3", or "1left" gives "left" when leading numerals are stripped off... All other keys can potentially be already assigned to other tools and actions by the user, so pressing "L" for left is unlikely to work as that will likely invoke the "Line" tool - and it's including key-combos like Ctrl+Shift+V [typically for Edit>PasteInPlace]. So that's kind of use in your Tool is essentially a bad idea...
    • W

      Problem about ruby searching path in sketchup

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      9
      0 Votes
      9 Posts
      904 Views
      W
      @dan rathbun said: I've already written a patch, and TIG has updated it twice. See: Re: Sketucation plugin load error Thank you! I use the patch,but there is still different. when sketchup install in drive c,and start with shortcut in desktop Encoding.find("locale") #<Encoding;GBK> when sketchup install in drive c,puts the patch file in tools folder,then start sketchup with shortcut in desktop Encoding.find("locale") #<Encoding;ASCII-8BIT> This different will lead some error if filename uesed some Chinese character. The patch file is still missing something?
    • W

      SketchUp Bridge can't work in Sketchup2014

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      1
      0 Votes
      1 Posts
      249 Views
      No one has replied
    • W

      Question about "puts" "Kernel.puts" "Kernel::puts"

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      4
      0 Votes
      4 Posts
      677 Views
      Dan RathbunD
      Functionally, there is no difference. BUT.. technically, Kernel::puts(), is a COPY of the instance edition of puts() that got mixed into Object, and will get inherited by ALL other classes and modules. The Ruby Core Team wrote the Kernel module as both a Mixin and a Library module. They used the module_function() method, so that all the library instance methods (that get mixin in using include,) had module method copies made. These copies can only be called by qualifying them with the Kernel module name. [ruby:1c8jtequ]Kernel.module_eval "class<<self; method(:puts).inspect; end;" >> #<Method: Class(Kernel)#puts> Kernel.module_eval "method(:puts).inspect;" %(#000000)[>> #<Method: Kernel.puts>]
    • W

      Sketchup context menu items turn gray

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Bug Reporting sketchup
      2
      0 Votes
      2 Posts
      413 Views
      GaieusG
      Upgrade to the latest release: http://forums.sketchucation.com/viewtopic.php?f=15&t=45516
    • W

      How to unload a .so file?

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      18
      0 Votes
      18 Posts
      1k Views
      W
      @dan rathbun said: @wikii said: @dan rathbun said: How are you doing on the so file version situation ?? I ask the author of the plugin.He told me that plugin use degist.so from 1.8. Well they need to update the plugin, as SketchUp 8 on Win32 uses Ruby v1.8.6-p287 ... Thank you! He told me he will.
    • W

      Question about menu.add_item

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      12
      0 Votes
      12 Posts
      778 Views
      W
      I see. Thank you,Tig!
    • W

      [Question]large_icon or relative path

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      1
      0 Votes
      1 Posts
      229 Views
      No one has replied
    • W

      Question:small_icon = and large_icon= method of UI::Command

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      3
      0 Votes
      3 Posts
      289 Views
      J
      @tig said: I think it's because the path is taken relative to the path of the calling script's folder. Since script is in a folder that contains the images/... folder. then it is found OK... unless the script has been scrambled, in which case the relative path no longer works and you need to use the full path to the images.
    • W

      Shadow error

      Watching Ignoring Scheduled Pinned Locked Moved SketchUp Bug Reporting sketchup
      4
      0 Votes
      4 Posts
      1k Views
      R
      Its obviously not that easy to fix, then.
    • W

      [Need help]How to add several rb_files to a sub_menu

      Watching Ignoring Scheduled Pinned Locked Moved Developers' Forum
      3
      0 Votes
      3 Posts
      282 Views
      W
      Thank you! I tested it.As what you say ,when sketchup initialize , my rb files can add themself to the same submenu.
    • W

      [Plugin]Combin editor 0.08[2011.03.24] [TUTORIAL]

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      52
      0 Votes
      52 Posts
      54k Views
      P
      @khai said: thank you. this looks very useful indeed. How to install a .rbs file on Sketchup ?
    • W

      [Plugin] FollowMe and keep (v0.04 update 20090210)

      Watching Ignoring Scheduled Pinned Locked Moved Plugins
      223
      0 Votes
      223 Posts
      172k Views
      J
      Box, After having changed the position of the surface from horizontal to vertical, and changed the path from pointing downwards at an angle of about 42° to 0°, I also used the Scale tool to increase the size of the whole thing by 100; this appeared to make the FollowMeAndKeep Extension do what I wanted. Then I used the Scale tool to take me back to the original size; all was good. So, I have finally solved my problem and once again thank everyone for their help and suggestions. johnmtb
    • 1 / 1