You are now editing multiple components
-
Well at least there is some kind of fix.
Excuse my ignorance, but what do edit flag X and Y do?
I've played with them in and out of the script and can't figure them out....
Also, is there anyone else out there that does engineering modelling that thinks this is a really important tool for reminding you when you could be unintentionally editing component(s)?
-
Am learning a lot by going through the script and trying to make it a 'menuless' background plugin - like Chris suggested earlier.
Am surprised at the amount of work and notation you have put into it Dan, is it a script from something else that you adapted or did you write all of this "off the cuff"?
-
@ashscott said:
Excuse my ignorance, but what do edit flag X and Y do?
I've played with them in and out of the script and can't figure them out....It is the percent of horizontal screen position (x), and percent of vertical screen position (y), where you want the note to be anchored.
Currently you must restart Sketchup, for changes to take effect.
(I did not have time within the options() method to put in the statements, to move the warning flag. (I'll try and do that today sometime.. Hey, it's Daytona 500 Raceday here, ya' know!)@ashscott said:
Also, is there anyone else out there that does engineering modelling that thinks this is a really important tool for reminding you when you could be unintentionally editing component(s)
I think we ALL do believe (as we have previously discussed in another topic,) that theUI
module lacks a "marquee" feature, that we can use to display info, without modifying the model itself, ... and during any tool, especially native tools. (We can write text to the view during custom tools, but this does not solve the issue.)So for now.. I would prefer this remain a test of concept, which is really why I did not yet release it as a rbz package with a
SketchupExtension
registration script. -
@ashscott said:
Am surprised at the amount of work and notation you have put into it Dan, ...
Well it is supposed to be an example.. so it needs to be understandable.@ashscott said:
... is it a script from something else that you adapted or did you write all of this "off the cuff"?
Just off the "cuff"... but follows my example styling. (If you follow best practices enough, it becomes second nature.. and you don't really think about style.) -
There is the info box near the VCB that says things like "Select Start Point" when you are using the line tool. Its way too unobtrusive in its current state as few people would notice anything it has to say, but is there a module or something attached to it that could be made more obtrusive to supply info like what is required from this plugin?
Other option is the dead simple version that displays a messagebox (although this would require the user to click "OK" every time they modified a component) - however, couldn't it be made to only apply to components that have multiple instances. That way the messagebox wouldn't appear for groups and unique components?
Being a test concept, do you want me to take down the .rb link?
@dan said:
Just off the "cuff"... but follows my example styling.
Would love to be able to knock out conceptual scripts that quickly the way sketchup has allowed me to knock out physical concept ideas quickly
-
@ashscott said:
There is the info box near the VCB that says things like "Select Start Point" when you are using the line tool.
That is the Status Bar. (.. and BTW, the VCB can be undocked from it and docked as one of the top toolbars, which is what I do. The second line of my top toolbars is the Layer toolbar, then the VCB.)
The status text can be set at any time using
Sketchup.set_status_text("Some text string.",SB_VCB_VALUE)
...
BUT, its is meant for use within and when a custom tool is active.If you do it during a native tool, the user usually does not see it, because the application engine redraws the UI many times per second, and definitely just after the mouse is moved. So the native tool's status text will override your message almost immediately.
-
@ashscott said:
Being a test concept, do you want me to take down the .rb link?
It would be best, for now.. as the toplevel module has the standard example name
Author
which is meant to be replaced with a REAL author's toplevel module name.If you release an edition of it.. the toplevel module would be named
Scott
orAsh
, or whatever you decide, perhaps a company identifier for your toplevel namespace. Choose something that is unique, or not yet used by anyone else, and does not violate any enitity's trademark. -
This sketchyphysics model modifies the watermark text in realtime during a simulation based on user inputs....not sure if its any help for this problem: http://sketchup.google.com/3dwarehouse/details?mid=5b618d4ba6c22ca85fd35d52fb19ea9b&prevstart=0
-
Hi There,
Just wanted to say thanks, Ash, for the idea; and Dan for for the sterling work putting it into practice.
I very often derive components in a model from other template parts, and I forget to click "make unique" about 50 times a week!
Having a warning that pops up regardless of the 'hiding other stuff' settings is something that could save me oodles of time re-loading components or going back to previous file version. -
That is awesome, pretty much the exact functionality I was looking for.
Just trying to figure out how to make that text bolder...
-
@unknownuser said:
I forget to click "make unique" about 50 times a week!
Tell me about it. I was certain someone must have written a script to do this but I had a browse around and it appeared they hadn't.
Frankly, I think the lack of a warning like this plugin and the errors it causes for users (who are focusing on what they are drawing on not how many components they are messing with) is a limitation to the efficiency of sketchup as many users don't use components to their full potential because they have been burned in the past.
When I concentrate really hard I can draw parts and assemblies with a lot more speed using components but the concentration required to keep track of what other parts I am modifying is a drain.
I hope this enables people to get right back into using components to their full potential.
-
@ashscott said:
This sketchyphysics model modifies the watermark text in realtime ...
Warkmarks are images, and currently have no exposure in the API.
They are a no go, at this time.Besides that example would require users to install SketchyPhysics, which has some "naughty poor programming" issues at this time. (But should be fixed soon.)
-
Has anyone else with a bit more ruby experience than me had a chance to tinker with the sketchyphysics model I linked to (above) and worked out how it modifies the watermark in real time depending on user's inputs? Is it something to do with the sketchyphysics runtime (requires sketchyphysics running?) or could it be applied to our current problem?
-
Perhaps it directly manipulates an external watermark image file ?
-
I don't know how this works but as far as I can tell this is the line that controls it:
logLine "mode;" + @@hokou.to_s
Have poked around the documentation but I'm not really sure what logLine does
-
it looks like a method call
-
Any use for the problem we have here?
-
I do not have the SketchyPhysics code downloaded, so I cannot look at it.
-
@dan rathbun said:
Perhaps it directly manipulates an external watermark image file ?
Interesting - just stumbled over this thread as I was wanting to do something similar - a constant tally of faces in the corner, as I'm working on some models where minimal poly count is critical.
I did a text search through the SketchyPhysics .rb files to see how they did it, and found an 'addWatermarkText' method.
Seems it's not a watermark at all, but a 'face-me' text component, loaded from a support folder, and placed using 'pickray' to find it a consistent location on screen.
Presumably this means that it has its position transformed whenever the view is orbited etc., though I didn't have the patience to go looking through all of the files for the method calls. -
Awesome sleuthing!
Advertisement