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

    Posts

    Recent Best Controversial
    • RE: Ruby Console access from C extension

      I used OutputDebugString and DbgView to view the messages and never had a problem compared with random crashes in Ruby world due stack overwriting.

      you can also create a singleton wrapper if you want to log from Ruby world without going to the slow ruby console.

      posted in Developers' Forum
      tbdT
      tbd
    • RE: GIF generator
      • ImageMagick
      • Preview.app + tweaking speed+loop
      • Gifsicle
      posted in Corner Bar
      tbdT
      tbd
    • RE: Happy Birthday, Gaieus...

      happy birthday Csaba from Italy !

      posted in Corner Bar
      tbdT
      tbd
    • RE: WebDialogs using Chrome : any interest ?

      anyone tried Google Chrome Frame ? there is a non-admin install released lately - http://blog.chromium.org/2011/06/introducing-non-admin-chrome-frame.html

      posted in Developers' Forum
      tbdT
      tbd
    • RE: How to Connect Ruby to MySQL

      Dynamic Color Reference works perfectly as it uses plain javascript.
      Examples that use TDC will not work as .ocx is windows only.

      posted in Developers' Forum
      tbdT
      tbd
    • RE: [help] with accommodation near Rome 1-10.sep

      thanks Charly, but I found only in Rome and not near sea. will keep looking.

      Chris yeah, my wife is dragging me out of the computer πŸ˜‰

      posted in Corner Bar
      tbdT
      tbd
    • [help] with accommodation near Rome 1-10.sep

      can anybody help us (2 adults + 1 children) in finding accommodation near Rome for 1-10.sep ? due last minute decision we didn't find any decent place to follow our requirements (booked out or too expensive):

      • near sea/beach close to Fiumicino airport (max 100km)
      • budget 800eur / 9 nights
      • good food experience near by
      posted in Corner Bar
      tbdT
      tbd
    • RE: UK Riots

      looting.jpg

      posted in Corner Bar
      tbdT
      tbd
    • RE: Google +

      i am in and
      http://i3.photobucket.com/albums/y75/DodgeGirl941/Smilies/tumbleweed.gif

      posted in Corner Bar
      tbdT
      tbd
    • RE: Google +

      see now on http://live.twit.tv/ how it works

      posted in Corner Bar
      tbdT
      tbd
    • RE: Realtime shadows test

      "Ruby scripters are heroes of the community" John Bacus at #is-eud2011 (Italy) - nuff said.

      posted in Extensions & Applications Discussions
      tbdT
      tbd
    • RE: Realtime shadows test

      I hacked the video and put my avatar in two places πŸ˜‰

      nice work Adam, you should have had started with the shadow slider first - looks great !

      posted in Extensions & Applications Discussions
      tbdT
      tbd
    • RE: Google +

      looks like you are already in. how is it compared to Facebook ?

      posted in Corner Bar
      tbdT
      tbd
    • RE: Download files with a SketchUp plugin

      ishboo: pull request sent. also added my 1.8.7 bundle in /build

      thomthom compiling is like a black box where you throw a bunch of files and expect another bunch of files. you need to know the parameters used (mostly how to include headers and libs and output formats) from the help files. also wikipedia entry on compilers is a good start for an overview.

      also use a file monitor [procmon(Win) and opensnoop(OSX)] when things go wrong - it saved me a lot of time when files were not found (looking in wrong directories) or wrong files were used.

      posted in Developers' Forum
      tbdT
      tbd
    • RE: Download files with a SketchUp plugin

      here is what I did to make it work:

      1. remove the x64 version from makefile - you can check with otool -hv file_downloader.bundle -> cputype I386

      2. link to the correct libruby.1.dylib (1.8.7 in my case as I upgraded Sketchup Ruby framework) - check with otool -L file_downloader.bundle -> current version 1.8.7

      posted in Developers' Forum
      tbdT
      tbd
    • RE: Download files with a SketchUp plugin

      removed the x64 version and now it crashes with EXC_BAD_ACCESS in Init_file_downloader. will keep you updated on debug progress.

      posted in Developers' Forum
      tbdT
      tbd
    • RE: Javascript MAC innerHTML

      I tested your code in my safari 5.0.5 and firefox 4.01 and it fails because it sets an attribute instead of using the property to set the value of the node.

      table:

      <table><tr><td id="mycell">Data</td></tr></table>
      

      code:

      
      cell = document.getElementById("mycell")
      
      cell.setAttribute("innerHTML","XXX")
      > <td id=​"1" innerhtml=​"XXX">​Data​</td>​
      
      cell.innerHTML = "YYY"
      > changes the cell content
      
      
      posted in Developers' Forum
      tbdT
      tbd
    • RE: Javascript MAC innerHTML

      because you set an attribute instead of using a property(method) ->
      <div id="project_configuration_label" innerhtml="Project Configuration">

      js=('document.getElementById("project_configuration_label").innerHTML = ' + db("Project Configuration"))
      @dlg.execute_script(js)
      
      posted in Developers' Forum
      tbdT
      tbd
    • RE: Notepad++ and SketchUp Bridge in SU8

      Heven7_floor: define doesn't work. what do you expect and what is the outcome ?

      posted in Developers' Forum
      tbdT
      tbd
    • RE: View.invalidate vs view.refresh

      @unknownuser said:

      Right - so if I make a wrapper that will refresh after a given max interval - otherwise invalidate - that would be an ok method?

      by using that you dont address the problem because you dont take in account system draw. but it can be used as workaround.

      WM_PAINT is Windows specific, I didn't delved deeper in OSX internals yet. the main idea is - do not update the whole window if you just modified a small part of it - how we will implement that without Sketchup help, we will see πŸ˜‰

      posted in Developers' Forum
      tbdT
      tbd
    • 1 / 1