SirSmiley

SirSmiley

Joined Member # 2134358
0 Posts 20 Replies 760 Reputation

A little cleaner script. [code="vbscript"] Dim MinW,MaxW MinW = 64 MaxW = 128 MinH = 64 MaxH = 72 Sub Object_OnScriptEnter object.width = MinW Object.Height = MinH End Sub 'Called on mouse over object Sub Object_OnMouseEnter Call Grow End Sub 'Called when mouse leaves object Sub Object_OnMouseLeave Call Shrink End Sub Function Shrink object.KillTimer 200 object.SetTime

17 Replies 58,544 Views

You won't get the same smoothness as objectdock without a timer. Pretty sure I have something in my code base...here you go. [code="vbscript"] Dim MinW,MaxW MinW = 64 MaxW = 128 MinH = 64 MaxH = 72 Sub Object_OnScriptEnter object.width = MinW Object.Height = MinH End Sub 'Called on mouse over object Sub Object_OnMouseEnter Call Grow End Sub 'Called when mouse leaves object Sub Object_OnMouseLeave Call

17 Replies 58,544 Views

[code="vbscript"] 'Called on mouse over object Sub Object_OnMouseEnter Object.Resize 72,72 End Sub 'Called when mouse leaves object Sub Object_OnMouseLeave Object.Resize 64,64 End Sub[/code]

17 Replies 58,544 Views

Really appreciating the feedback. Haven't been able to recreate the menu issue but, will see if I can streamline it somehow. There are a lot of statements in it. As for the columns did you get message box warning before they disappeared? I know what the main issue is with the columns and was trying to save a bunch of extra settings/variables. Will have a work at those tomorrow.

54 Replies 38,969 Views

Thanks for trying out guys. This should fix some of the issues and I'm probably going to do away with the widget close when you first run it. It was suppose to fix the text issue. zakai, I'm wondering if the menu issue isn't the button itself. It may be too small and perhaps should be sent over to the upper left corner. The other thing with the menu is it is quite large and takes a few seconds to build itself. [link="http://www.box.net/shared/x3bt027ksg"]Get

54 Replies 38,969 Views

Good to know. Looking for usability issues like this because of the animation/paging features. The normal right click menu should a appear wherever the "move" cursor is but, you should also have access to it in the system tray. The widget menu is a a left click menu at the top left just above the name title and your cursor will change to a hand when you hover it plus show a tooltip called "menu". Want to know more about the resize issue. There are only two sizers, one

54 Replies 38,969 Views

Take it for a test run. [B]Head these warnings or perish in a pit of fire.[/B] When you first run, you'll get a message box asking for the folder and the data file. I've included one that has 25 names/birthdays. Browse to the folder in the folder dialog and type "birthday" in the file name. - Uncheck Use settings file if you want to use the registry to store all of the settings - Make sure to check the "Use Existing file" since there is one provided - The wi

54 Replies 38,969 Views

From my email this morning. ANOTHER REASON TO BUY LOCAL!! FRESH LETTUCE Look closely at the package. Just below the words Fresco Lavado... Don't forget this brand of fresh lettuce. What probably happened is, the water the lettuce was washed in contained polliwogs and these became fresh new frogs, right in the packages. So if you're looking for salad fixins with a little more body, then be sure and try this

19 Replies 13,326 Views

Oops, mislabeled open and closed...sort of obvious though. [quote]I had no idea of how much work went into these things. "Verrry Interesting"![/quote] Some of them can go really fast and others don't. Just like when you are putting a skin together and tweaking some of the finner items takes time the same goes with scripting various functions together.

54 Replies 38,969 Views

I've affectionately codenamed this "Big Daddy" due to the script size. Anyways, I've put aside making this skinnable for the time being due to other commitments. It should be easy enough to skin on your own without touching the script. Just the alarm function and a better basic skin & we're good to go...at least until you guys find what I missed! ;) [img]http://img139.imageshack.us/img139/2301/wippreviewzc8.jpg[/img]

54 Replies 38,969 Views

I don't think this is possible through objects. One reason is it wouldn't be possible from a standard script accessing another script; unless you read/imported the entire class object through a function, which kind of defeats the purpose of using an external script "class" (in DesktopX). Just tried doing this using an external script with the same results. The closest work-a-round - if you're set on using classes - is to declare the object in "Object01" script and access it the same as

3 Replies 24,488 Views

Patience young jedi! ;) There's 57 functions/sub procedures and I haven't added the alarm feature, sounds, skinning or font themes yet! Those should go fairly quick it's the minutiae of sizing, hiding, etc. that takes the most time.

54 Replies 38,969 Views