Ah, fun I know what you mean. You have to either somehow sync it to your system clock but, even then there will be a slight delay. I did something like this for practice some time ago and the only work-a-round I figure was two timers. In the first timer you'd put some type of IF STATEMENT to check against the rollover of the system clock. [code="vbscript"] Object.OnTimer 1,1 Sub Timer1 If seconds=0 Then Object.OnTimer 2,10 End If End Sub [/code
SirSmiley
So how do you figure they detected the other 16,000 fatalities as alcohol related? They only do what they're asked or required to do. I'm sure it's different in each state/county like here. I'm sure the number's even higher than 16,000 for alcohol. Pap smear maybe? So much for trying the "Hemp" spread I saw at the
I'm going to take your comment as somewhat sarcastic as mine was meant to be. Hence the use of the smiley. Otherwise I'd think you're an @ss but, based on some of your comments I think you're smarter than that. It's actually top 10% for IQ and top 5% for EQ if you buy into the EQ thing.
Hey, I needed speech therapy when I was a kid and now I'm in the top 100% for intelligence.
Swimmingly good articled. Love the fact that it's written by a guy named Fishman oh thee irony.
techman, you could be a little more sensitive. I wonder what kind of a response would have occurred if you said "Hemp" theme? Since hemp has become more mainstream. Hate to use the this as a comparison but, if I said Opium instead of Poppy probably would have been flamed even though the Poppy flower is quite beautiful itself. Fatal Traffic Accidents attributed directly to marijuana: 0 Not really accurate statistics. They've ju
If people were/are talking about sess than I'm on your side but, if you're talking about new hybrids aka hydroponic strains than the addictive properties are well documented. Not to mention Marijuana is fat soluble vs alcohol being water soluble. Trust me having a mj flash back is not fun when it hits you at the weirdest time. Now I'm off to try my Tigerbalm Brownies. <div class="Article_Quote"
There's only one glitch, if the object isn't a child object then your mouse enter event won't fire. This would be the work-a-round I would use [code="vbscript"]Sub Object_OnMouseLeaveEx(obj) object.opacity= 1 For Each elem In desktopx.GroupObjects("grpObj") If elem.visible=True Then elem.visible=False End If Next End Sub Sub Object_OnMouseEnterEx(obj) object.opacity= 100 For Each elem In desktopx.GroupObjects("grpObj") If elem.visible=False Th
Not sure if I'm getting what you mean? With one script it shouldn't be triggered with the child object unless that object is named in the sub/function. Now if you mean there are two separate scripts than obviously there will be an override. Here's a simple script using default objects I just did quickly. http://www.box.net/shared/imce9jlpfj
sViz, you can use the OnMouseLeaveEx(obj) just like your left click script in the DX Helper Widget. The easiest way to accomplish what you want will be using something like this: [code="vbscript"] For Each elem In desktopx.GroupObjects("myGroup") If elem.visible=True Then elem.visible=False End If Next [/code]
It goes something like this: take Thames Water from the tap in your factory in Sidcup, Kent; put it through a purification process, call it "pure" and give it a mark-up from 0.03p to 95p per half litre; in the process, add a batch of calcium chloride, containing bromide, for "taste profile"; then pump ozone through it, oxidising the bromide - which is not a problem - into bromate - which is. Finally, dispatch to the shops bottles of water containing up
Excellent choice to start with. Greatly enjoy his work & perspective on skinning as a whole.
Part-time lab rat, full time on disability ATM.
You have just witnessed the comedy styling of Starkers & Starkers or is it Starkers & Starkers...I always get that mixed up! Nice work!
Full reference is here https://www.stardock.com/products/desktopx/documentation/index.asp. Also check out the wiki & DesktopX Tutorials
Vista's great unless until it burns ya & throws you back into the dark ages! I'll try Linux I'd like to jump ahead into the 22nd century.
What you need to do is in the script set PopUpPanel to align to the right of the side panel & every time you change it either from hidden/lock or open it would than adjust the panel Pop Up Panels. For Example: [code="vbscript"] Object1="Side Panel" Object2="PopUpPanel" Sub posPanels DesktopX.Object(Object2).Left=DesktopX.Object(Object1).Right+25 End Sub [/code]
Or you can find the Firefox Icon at the original Author's site not at a potential rip site? It's Icon 19 Under Icons Transparent Style Graphics
Erk & sViz the issue may have been that I left in an additional Right click option on the top bar that was being used in the object when developing. And yes I'm using the custom r-click menu. I had those issues only with the option up above enabled. I think I will switch it to including automatically installing/uninstalling like Skarn did in his object. After all how many people actually do have ImageMagick installed? Edit: Don't know how to say this without sounding l
You're right & with a gadget the icon is compiled into the exe even in temp folders. They only way is probably a registry hack? I've got an idea from an old app that I use called "IconX" not the same as Stardock's IconX.
Oh, for developers here is the sub I use to register/unregister the com object when selected in the right click menu. [code="vbscript"]'--Adds Install/Uninstall Option to Right Click Menu Sub comInstall Set objShell=CreateObject("WScript.Shell") Set objFSO = CreateObject("Scripting.FileSystemObject") comPath=DesktopX.ExecutableDirectory&"ImageMagick\ImageMagickObject.dll" regsvrPath=DesktopX.ExecutableDirectory&"ImageMagick\regsvr32.exe" r = msgbox("Click YES to
Okay. This was just rejected from upload. So, I'm wondering if some people would be more than kind to test this out. Everyone over at Aqua-soft & elsewhere seem to have it working. Excluding a few initial hiccups. Here's what the issues are: Skins not changing within right click menu the other issue is with registering the com object The reason this has been left manually from the right click menu is for users who already have ImageMagick installed w
You're welcome. Thanks for the help in getting the right click menu to work.
I just downloaded it from dA, removed all my versions of the com object & cleaned my temp directory and it installed without a hitch on XP Pro Sp2. All the right click does is call the regsvr (Using the DesktopX.ExecutableDirectory) passes the object to it and registers/unregisters it.
Try installing the com object from the right click menu. Or drag it onto the regsvr2.vbs file. Or drop it on the regsvr.exe file. If there isn't a right click menu option to install it then you need the newer version. I'm going to check dA to see if they screwed up my last update.