sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    1 second pop-up, timed message

    Scheduled Pinned Locked Moved Developers' Forum
    3 Posts 2 Posters 221 Views 2 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • onidarbeO Offline
      onidarbe
      last edited by

      I can't seem to find how I can give a quick confirmation, like displaying 1 second: "Hello world" without the need to press [OK] or [X]

      I thought I've found it, but it doesn't work:
      dlg = UI::WebDialog.new("test", false, "test", 300, 200, 50, 150, false) dlg.set_html("Hello world") dlg.show start_timer(1, false) { dlg.close }

      It does sometimes disappear but even when I don't use start_timer(1, false) { dlg.close } So that seems to be another bug?! 😞 Maybe only in SU 2013...

      1 Reply Last reply Reply Quote 0
      • Dan RathbunD Offline
        Dan Rathbun
        last edited by

        Try:

        
        module Onidarbe
        
          def self;;popup(message)
            #
            unless @dlg
              @dlg = UI;;WebDialog.new("Notice", false, "Onidarbe_Popup", 300, 200, 50, 150, false)
            end
            @dlg.set_html(message)
            if @dlg.visible?
              @dlg.bring_to_front
            else
              RUBY_PLATFORM =~ /darwin/i ? @dlg.show_modal ; @dlg.show
            end
            UI;;start_timer(1.0, false) { @dlg.close }
            #
          end # popup
        
        end
        
        

        Onidarbe::popup("Operation complete.")

        reasons:

        1. local vars in scripts get garbage collected soon after the script ends.
        2. all your code needs to be inside your own module
        3. you were attempting to call the start_timer module function without qualifying it by it's module. (It is not a global method.)
          πŸ’­

        I'm not here much anymore.

        1 Reply Last reply Reply Quote 0
        • onidarbeO Offline
          onidarbe
          last edited by

          Short and ride to the point πŸ˜„

          Thanks again Dan! Have a nice new year's eve...

          1 Reply Last reply Reply Quote 0
          • 1 / 1
          • First post
            Last post
          Buy SketchPlus
          Buy SUbD
          Buy WrapR
          Buy eBook
          Buy Modelur
          Buy Vertex Tools
          Buy SketchCuisine
          Buy FormFonts

          Advertisement