I already did...
Examples:
• Here's how I patched that annoying script editor bug that would hide the apply button and collapse the event handler pane when the script editor was resized:
Component Window Default Size
I wonder if that's still needed? The problem was caused by an embedded container that had a minimum size parameter that was too big, and it was a long time ago. I'm sure they've probably fixed that by now.
• Here is my patch to enable default comment editing on custom methods:
How do you edit the function comment on a custom method
They said this was going away in 8.3, but it's still there as of 8.3.7
• To select the console tab automatically, just add this function I posted here:
Client Diagnostics/Console
• Here's a script I developed for customizing scrollbar speeds in the designer
Fix super slow scrollbar speeds
• Lastly...
I'm not sure if I ever posted this one, but to do it, simply add these two lines of code to the ComponentScriptEditor window opened event handling I outlined in the previous posts:
# Change the default tab from navigation to the script editor
splitPane = findComponentOfClass(window, 'JSplitPane')
findComponentOfClass(splitPane.rightComponent, 'JTabbedPane').selectedIndex = 4
As you can see, my designer hacks are already all over the forum, and there are many more than I've linked to here, but at this point, I'm afraid we've derailed this thread enough. If you can't find the one you need, just post the question, and as always, if can answer it, I will.
