sketchucation logo sketchucation
    • Login
    🛣️ Road Profile Builder | Generate roads, curbs and pavements easily Download

    Prompt windows too small

    Scheduled Pinned Locked Moved Plugins
    19 Posts 6 Posters 1.1k Views 6 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.
    • gillesG Offline
      gilles
      last edited by

      With lots of plugins using prompt windows I have this issue: I can't read the all text so I have to guess.
      In this example "Créer des" (create) create what: faces, lines, group.....
      So is this something relative with the plugin or with my OS?
      Is there a way to fix it?


      fenetre.png

      " c'est curieux chez les marins ce besoin de faire des phrases "

      1 Reply Last reply Reply Quote 0
      • Chris FullmerC Offline
        Chris Fullmer
        last edited by

        I don't think I've ever seen that on Windows XP or Vista.

        Lately you've been tan, suspicious for the winter.
        All my Plugins I've written

        1 Reply Last reply Reply Quote 0
        • mitcorbM Offline
          mitcorb
          last edited by

          That appears to be an OS issue, or a setting not usually accessed if it is truncating the command in the interface. Could it be that the tool dialogue needs adjustment?

          I take the slow, deliberate approach in my aimless wandering.

          1 Reply Last reply Reply Quote 0
          • Didier BurD Offline
            Didier Bur
            last edited by

            @Gilles:
            C'est certainement un problème d'OS, je n'ai jamais vu ça sur XP,Vista,ou 7. 😲

            It's surely an OS problem, because I never saw that on XP, Vista or 7.

            DB

            1 Reply Last reply Reply Quote 0
            • jeff hammondJ Offline
              jeff hammond
              last edited by

              i think the problem is with Safari ..or a combination of coders that know the ins/outs of windows making dialogs for mac using typical IE standards..
              i remember fredo having all sorts of problems trying to get his dialogs to look right on mac.. there are a few other plugins i use which display some sort of weirdness like this and i've just learned to deal with it.. but if i use a plugin written by a mac 🤓 then everything is always proper..

              in cases like this (a generous gesture by didier - i.e. free plugin) i think you just have to experiment/figure out how to use it on mac.. otherwise, maybe ship/loan him a mbp for a couple of weeks and a few 12 packs.. that oughta get things sorted out 😄

              dotdotdot

              1 Reply Last reply Reply Quote 0
              • gillesG Offline
                gilles
                last edited by

                Thanks for trying to help. I wasn't complaining, in fact I had already this problem with OSX 4 and with SU7 and older versions.
                It's just annoying, I though I could just change some lines in Ruby and tada!

                " c'est curieux chez les marins ce besoin de faire des phrases "

                1 Reply Last reply Reply Quote 0
                • jeff hammondJ Offline
                  jeff hammond
                  last edited by

                  @gilles said:

                  Thanks for trying to help. I wasn't complaining, in fact I had already this problem with OSX 4 and with SU7 and older versions.
                  It's just annoying, I though I could just change some lines in Ruby and tada!

                  you probably can.. it's just that most of these coder are windows experts so they can't easily tell you what lines to change..
                  i think adamB wrote light up on a mac and there are a couple of other mac coders that pop in from time to time but for the most part, these guys know how to do their thing on windows while picking up bits and pieces here and there to make sure their plugins work on mac.. but that doesn't mean the plugins are optimized for mac.

                  i'm not going to learn the stuff though! maybe you will? 😄

                  dotdotdot

                  1 Reply Last reply Reply Quote 0
                  • gillesG Offline
                    gilles
                    last edited by

                    @unknownuser said:

                    i'm not going to learn the stuff though! maybe you will?

                    I have tried ( a little) but it is really not for me.
                    May be I should make a request to mac coders.

                    " c'est curieux chez les marins ce besoin de faire des phrases "

                    1 Reply Last reply Reply Quote 0
                    • Didier BurD Offline
                      Didier Bur
                      last edited by

                      @unknownuser said:

                      i think the problem is with Safari
                      😮
                      I don't think so. This is not a WebDialog, but the usual inputbox Ruby method. No options or parameters in this method related to the OS.
                      I'm a bit confused, this is the first time a mac user reports this behavior of the dialog, while a bunch of them are using the plugin since a year or so...

                      DB

                      1 Reply Last reply Reply Quote 0
                      • D Offline
                        driven
                        last edited by

                        This particular one is Google fixable, it happens because the Input Boxes are a set width, not like the Web Dialogs that can be author/user adjusted. it even happens with the example on the API
                        Name, Age, Gender,Address???who+knows

                        
                         # With four params, it shows a drop down box for prompts that have 
                         # pipe-delimited lists of options. In this case, the Gender prompt
                         # is a drop down instead of a text box.
                         prompts = ["What is your Name?", "What is your Age?", "Gender"]
                         defaults = ["Enter name", "", "Male"]
                         list = ["", "", "Male|Female"]
                         input = UI.inputbox prompts, defaults, list, "Tell me about yourself."
                        

                        The Nib doesn't auto resize, so the only work around is to not exceed the 12 characters including space.
                        e.g.edited 'input box'

                         # With four params, it shows a drop down box for prompts that have 
                         # pipe-delimited lists of options. In this case, the Gender prompt
                         # is a drop down instead of a text box.
                         prompts = ["Full Name?", "Age?", "Gender"]
                         defaults = ["Enter name", "in years", "Male"]
                         list = ["", "", "Male|Female"]
                         input = UI.inputbox prompts, defaults, list, "Tell me about yourself."
                        

                        have I bored you enough, yet

                        john

                        learn from the mistakes of others, you may not live long enough to make them all yourself...

                        1 Reply Last reply Reply Quote 0
                        • gillesG Offline
                          gilles
                          last edited by

                          Dear Didier, don't be confuse I show one of your plugins but there are other from other coders with the same issue.
                          So I don't know where to dig.
                          It is not that important.
                          I use and try lots of plugins to work and I'm grateful to you all making such efforts.
                          " à cheval donné,on ne regarde pas les dents." 👍

                          " c'est curieux chez les marins ce besoin de faire des phrases "

                          1 Reply Last reply Reply Quote 0
                          • jeff hammondJ Offline
                            jeff hammond
                            last edited by

                            thanks for the lesson john..
                            and didier for pointing out that this isn't a web dialog 😳

                            i think i might change my sig to:
                            if i ever type anything about ruby, please ignore it 😄

                            dotdotdot

                            1 Reply Last reply Reply Quote 0
                            • D Offline
                              driven
                              last edited by

                              @gilles said:

                              I though I could just change some lines in Ruby and tada!

                              I should have clarified that I just changed the words found at prompts = ["", "", ""]

                              that's all you need to do in the scripts... john

                              learn from the mistakes of others, you may not live long enough to make them all yourself...

                              1 Reply Last reply Reply Quote 0
                              • gillesG Offline
                                gilles
                                last edited by

                                @ driven, thanks for clarification, I'll try this.
                                When you know why it's half of the problem to be solved.
                                As we say here " s'il n'y a pa de solution c'est qu'il n'y a pas de problème".
                                " If there is no solution , there is no problem."

                                " c'est curieux chez les marins ce besoin de faire des phrases "

                                1 Reply Last reply Reply Quote 0
                                • D Offline
                                  driven
                                  last edited by

                                  @gilles said:

                                  " s'il n'y a pa de solution c'est qu'il n'y a pas de problème".
                                  " If there is no solution , there is no problem."

                                  Say that in 12 characters... cheers

                                  learn from the mistakes of others, you may not live long enough to make them all yourself...

                                  1 Reply Last reply Reply Quote 0
                                  • gillesG Offline
                                    gilles
                                    last edited by

                                    👍

                                    " c'est curieux chez les marins ce besoin de faire des phrases "

                                    1 Reply Last reply Reply Quote 0
                                    • gillesG Offline
                                      gilles
                                      last edited by

                                      In this case, no chance to change anything the file is scrambled.

                                      " c'est curieux chez les marins ce besoin de faire des phrases "

                                      1 Reply Last reply Reply Quote 0
                                      • Didier BurD Offline
                                        Didier Bur
                                        last edited by

                                        The solution would be that I recode it for Mac 🎉
                                        I've often used a trick to give prompts more "place" in the dialog, for instance:
                                        prompt=["What is your family name:"] becomes prompt=["What is your family name:..............."] (.=space)
                                        Inserting spaces in the values dropdown list items should do the trick, too.

                                        @gilles: Here is the modified RBS (I guess you have the french version 😉 )
                                        If it works OK on Mac I'll publish a Mac version.

                                        -> dézippes dans ton sous-dossier "Projection" et écrase le fichier "fr_projection.rbs" précédent. Relances SU et croise les doigts... Tiens-moi au courant.


                                        fr_projection_gilles.zip

                                        DB

                                        1 Reply Last reply Reply Quote 0
                                        • gillesG Offline
                                          gilles
                                          last edited by

                                          It works fine.

                                          Thank you Didier. 👍

                                          Edit: same issue with lines to tubes. 😳

                                          " c'est curieux chez les marins ce besoin de faire des phrases "

                                          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