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

    [SOLVED] display errors in plugins Sketchup make 2015

    Scheduled Pinned Locked Moved Plugins
    22 Posts 3 Posters 2.2k Views 3 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.
    • D Offline
      driven
      last edited by

      @deaneau said:

      ...it is not a plugin problem...

      so, do you see the same [missing css] with any other plugin?

      for example Extensions Warehouse, 3d Warehouse, SCF...

      if these show their css, then this is most likely a LightUp css path issue...

      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
      • TIGT Offline
        TIG Moderator
        last edited by

        Thinks... 😮

        Completely off the wall...

        What is returned with this typed/pasted in the Ruby Console ?

        Sketchup.find_support_file('Plugins')

        I am thinking there might be an accent in your Windows User-name...
        That might cause issues ??

        TIG

        1 Reply Last reply Reply Quote 0
        • deaneauD Offline
          deaneau
          last edited by

          @ TIG
          Sketchup.find_support_file('Plugins')
          C:/Users/d/AppData/Roaming/SketchUp/SketchUp 2015/SketchUp/Plugins

          here an other plugin withe same problem

          Profile Builder 2_2015.03.16_19h03m00s_001_01459.jpg

          MADE, BORN AND LIVING IN BERLIN
          Big Thank You to all Programmers
          Some German words are so long that they have a perspective. M.Twain

          1 Reply Last reply Reply Quote 0
          • TIGT Offline
            TIG Moderator
            last edited by

            OK.
            So now I think it's something in your IE11 Internet Options settings ?
            Preventing a custom "css" file from being used ?
            If you access sketchucation.com with IE is the appearance compromised ?

            Any other ideas, anyone ?

            TIG

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

              @tig said:

              Any other ideas, anyone ?

              I just had a look on mac using Web Inspector, and LightUp uses a 'relative' link to the css file...

              it is beside the html [no sub folder] so the fact that the html loads implies IE is blocking relative links...

              can you 'view source' on the webDialog on a PC?

              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
              • deaneauD Offline
                deaneau
                last edited by

                yes and if i open the html from the plugins the display will be good

                here an example in sketchup and in IE

                _2015.03.16_19h28m37s_002_01460.jpg

                MADE, BORN AND LIVING IN BERLIN
                Big Thank You to all Programmers
                Some German words are so long that they have a perspective. M.Twain

                1 Reply Last reply Reply Quote 0
                • deaneauD Offline
                  deaneau
                  last edited by

                  yes i can view html in the plugin dialog

                  MADE, BORN AND LIVING IN BERLIN
                  Big Thank You to all Programmers
                  Some German words are so long that they have a perspective. M.Twain

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

                    in the header section it should show the path to the css, and possibly the reason for not loading?

                    if you copy paste the header [into a code block] from one of the failing ones it might give some clues...

                    does 'show source' display the errors? [it does on a mac]

                    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
                    • deaneauD Offline
                      deaneau
                      last edited by

                      here the html code of the header

                      <head>
                      <meta charset="UTF-8">
                      
                      <link type="text/css" rel="StyleSheet" href="profileBuilder.css"/>
                      <script type="text/javascript" src="js/wz_jsgraphics.js"></script>
                      <link type="text/css" rel="StyleSheet" href="js/jquery-ui.css"/>
                      <script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
                      <script type="text/javascript" src="js/jquery-ui.js"></script>
                      <script type="text/javascript" src="js/pb.js"></script>
                      
                      <title>ProfileBuilder</title>
                      
                      <style>
                      
                      #placementPoint {width;100%;margin-top;0px;}
                      #profilerow {padding;0px;margin;0px;}
                      #Canvas {}
                      #lockAspect {border;1px solid transparent;}
                      #lockAspect;hover {border;1px solid gray;}
                      .overflow {height; 200px;}
                      #primaryPropertiesTable {width;100%;padding-top;0px;padding-left;0px;margin-top;0px;margin-left;2px;vertical-align;middle;}
                      td > img {padding-right;2px;vertical-align;middle;}
                      
                      </style>
                      
                      </head>
                      

                      MADE, BORN AND LIVING IN BERLIN
                      Big Thank You to all Programmers
                      Some German words are so long that they have a perspective. M.Twain

                      1 Reply Last reply Reply Quote 0
                      • TIGT Offline
                        TIG Moderator
                        last edited by

                        Shot in the dark...
                        Try swapping the order of some lines in the html file's header:

                        **<link type="text/css" rel="StyleSheet" href="profileBuilder.css"/>** <script type="text/javascript" src="js/wz_jsgraphics.js"></script> <link type="text/css" rel="StyleSheet" href="js/jquery-ui.css"/>

                        becomes

                        <script type="text/javascript" src="js/wz_jsgraphics.js"></script> <link type="text/css" rel="StyleSheet" href="js/jquery-ui.css"/> **<link type="text/css" rel="StyleSheet" href="profileBuilder.css"/>**

                        Perhaps the jquery css is overwriting some of the pb css ??

                        TIG

                        1 Reply Last reply Reply Quote 0
                        • deaneauD Offline
                          deaneau
                          last edited by

                          hi TIG this doesn´t work.. this must be a an error outside of sketchup.

                          i have reinstall sketchup and the plugins..no changes 😕

                          MADE, BORN AND LIVING IN BERLIN
                          Big Thank You to all Programmers
                          Some German words are so long that they have a perspective. M.Twain

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

                            It looks like the IE settings used by SU, are blocking relative links...

                            did you test if the SCF tools work in SU?

                            also, you could try adding meta data above the <link type="text/css" rel="StyleSheet" href="profileBuilder.css"/>

                            
                                        <meta http-equiv="content-type" content="charset=UTF-8" />
                                        <meta http-equiv="MSThemeCompatible" content="Yes" />
                                        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
                            

                            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
                            • deaneauD Offline
                              deaneau
                              last edited by

                              @driven said:

                              ...

                              did you test if the SCF tools work in SU?

                              ...

                              could you send me a link?

                              MADE, BORN AND LIVING IN BERLIN
                              Big Thank You to all Programmers
                              Some German words are so long that they have a perspective. M.Twain

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

                                @deaneau said:

                                could you send me a link?

                                the one from here...
                                http://sketchucation.com/pluginstore?pln=SketchUcationTools

                                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
                                • deaneauD Offline
                                  deaneau
                                  last edited by

                                  i have solve this Problem with a Windows refresh

                                  Eneroth Railroad is a good example.

                                  the first button (track with a plus) look like without CSS


                                  Untitled - SketchUp Make_2015.03.18_00h47m21s_006_01428.jpg

                                  MADE, BORN AND LIVING IN BERLIN
                                  Big Thank You to all Programmers
                                  Some German words are so long that they have a perspective. M.Twain

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

                                  Advertisement