topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Wednesday April 24, 2024, 8:11 pm
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - skrommel [ switch to compact view ]

Pages: prev1 ... 30 31 32 33 34 [35] 36 37 38next
851
Unfinished Requests / Re: IDEA: Graffiti Picture ScreenSaver
« on: September 23, 2005, 01:58 PM »
 :) I'll look into sorting prior to running, but I don't know if I like to switch the scrolling direction to have the pictures touching when scrolling in different directions, one right, the other down...  I just uploaded a new version that stops pause using both space, right and left.

About the memory leak, does it clean up when you quit ZoomSaver?

Skrommel

852
Unfinished Requests / Re: IDEA: "Runas" standard programs and own tools
« on: September 23, 2005, 07:54 AM »
 :huh: No, mine is too.

Skrommel

853
Unfinished Requests / Re: IDEA: "Runas" standard programs and own tools
« on: September 23, 2005, 03:41 AM »
 :huh: Anyone else getting this behaviour?

On my XP Pro system I get an error message if the user doesn't exist, or the password is wrong.

What are you running?

Skrommel

854
Unfinished Requests / Re: IDEA: "Runas" standard programs and own tools
« on: September 23, 2005, 01:25 AM »
 :-[ Sorry about that! I edited my previous post while you were writing your reply!

What I ment to as was wether RunAs expands the variables PRIOR to running? So that a runas.exe /user:Administrator %userprofile%\desktop\notepad.exe would run the other users' Notepad.exe stored on the desktop?

Can you still not run RunAsTools properly?

Skrommel

855
Unfinished Requests / Re: IDEA: "Runas" standard programs and own tools
« on: September 22, 2005, 06:40 PM »
 :) When I fill in an existing username and a password and run cmd.exe, I can check in Task Manager that cmd is running as a different user. And the userprofile variable is pointing to the other user. And a wrong password will show up an ugly AHK error message.

But cmd.exe does not show the "running as" info. The password is stored in a the editbox' variable and passed when run.

Just added RunAsTools v1.2! It includes a command line.

Skrommel

856
Unfinished Requests / Re: IDEA: "Runas" standard programs and own tools
« on: September 22, 2005, 03:32 PM »
 :-[ Is the Seondary Logon service running? Just added info about this on the web page.

Skrommel

857
Unfinished Requests / Re: IDEA: "Runas" standard programs and own tools
« on: September 22, 2005, 05:39 AM »
 :) In AutoHotkey's help file, it says: "While the RunAs feature is in effect, Run and RunWait will not able to launch documents, URLs, or system verbs. In other words, the file to be launched must be an executable file."

Also, if the password is left empty, the RunAs part is ignored.

Don't you get an error message when the password is wrong?

Skrommel

858
Unfinished Requests / Re: IDEA: "Runas" standard programs and own tools
« on: September 21, 2005, 07:57 PM »
 :) Here's a user definable one!

RunAsTools - Collect your system tools and run them as another user.

Features:
- Edit the ini-file to change the settings.
- Show or hide the window by doubleclicking the tray icon.
- Won't run as a user without a password.



You'll find the downloads and more info at Skrommel Software.

Skrommel

859
 :huh: I've got a working script here, but I'm not shure if I should post it.

Wouldn't this totally break the Shoutcast network? Even now it's sometimes a problem to get into certain streams, and you can't update the radio and tv list more than once every minute. What's needed is a Now Playing-site, or that a song's title is presented in the ShoutCaste header, and not buried inside the stream.

Any thoughts?

Skrommel

860
Unfinished Requests / Re: IDEA: Graffiti Picture ScreenSaver
« on: September 20, 2005, 04:48 PM »
 :huh: But when I think about it, it would be possible to take a screenshot of the desktop, make the background transparent and display it at the back, scrolling the images behind it and allowing the clicks to pass though to the real icons behind!

I'll be back...

861
Unfinished Requests / Re: IDEA: Graffiti Picture ScreenSaver
« on: September 20, 2005, 04:42 PM »
 :D I made my girlfriend's webpage work like that! Very impractical!

Skrommel

862
Unfinished Requests / Re: IDEA - On task termination perform an action
« on: September 20, 2005, 03:58 PM »
 :) That's what I plan, too.

Unfortunately, GUI is one of AHK's three "string" based all-in-one functions with a help file to match, so you really have to get you head around all of it before you can make any working code.

I haven't.

Skrommel

863
 :) Here's my Maxthon settings:

titletext=Maxthon
counter=3
menulines=5
menukeys=!vn

And for a Norwegian Internet Explorer:

titletext=Internet Explorer
counter=3
menulines=5
menukeys=!vt

Skrommel

864
Unfinished Requests / Re: IDEA: Graffiti Picture ScreenSaver
« on: September 20, 2005, 03:43 PM »
 :down: I've given up! I can make the wallpaper scroll beautifully, but I can't stop the icons from flashing like crazy!  Anyone know how?

Skrommel

865
 :-[ Sorry, had multiple windows open... Try the version posted now.

Skrommel

866
 :) The simplest solution is to just send the keys to activate the Fonts menu. Be shure to change the first lines of the script to make it work in your language!

;FontSize.ahk
; Changes the displayed font size in Internet Explorer by pressing Ctrl+ and Ctrl-
;Skrommel @2005

#SingleInstance,Force
SetTitleMatchMode,2
titletext=Internet Explorer   ;text to look for in the caption of the active window
counter=3          ;current menu position=Normal
menulines=5        ;number of menu lines
menukeys=!vn       ;keys to press to activate the Font menu

^+::
IfWinActive,%titletext%,
{
  counter+=1
  If counter>%menulines%
    counter=%menulines%
  Send,%menukeys%{Up %counter%}{Enter}
}
Else
  Send,^+
Return

^-::
IfWinActive,%titletext%,
{
  counter-=1
  If counter<1
    counter=1
  Send,%menukeys%{Up %counter%}{Enter}
}
Else
  Send,^-
Return

To use it, download and install AutoHotkey from www.autohotkey.com. Save the script as FontSize.ahk and doubleclick to run.

For other scripts and tools, check out my home page at Skrommel Software.

Skrommel

867
 :) No, not my code, but I've seen a few like it on AutoHotkey.

And I couldn't agree more on the C note :). I once spent a few months making a mouse tool to scroll the screen in C. In AHK it took one evening!

Skrommel

868
Unfinished Requests / Re: IDEA - On task termination perform an action
« on: September 20, 2005, 02:43 PM »
 :) There is, GUI is one of Chris' latest additions. There's even a GUI builder called SmartGUI.

The problem is that I tend to spend more time on the UI and icons than on the script, so if you feel like it, please do!

Skrommel

869
 :) Very useful script if you have a multi monitor system!

And  there's actually a very clever MouseMove in CarolHaynes' version - using the changing relative position to move it back to where it was - I never would have thought of that!

About increasing the move when the key is held down, I'd suggest using A_TickCount and SetTimer to check how long it's been since the last move - long time=decrease, short time=increase.

I still have left to make a really useful script to move the mouse using the keyboard, so I wish you good luck!

There's also plenty of tips to be found at the forums at http://www.autohotkey.com/forum.

Skrommel

870
 :) Thanks, lanux128!

Any comments on WinWarden? Too difficult to configure?

Skrommel

871
Unfinished Requests / Re: IDEA - On task termination perform an action
« on: September 20, 2005, 11:46 AM »
 :) Check out my ProcessGuard v1.1! at https://www.donation...ndex.php?topic=747.0.

I think it will do what you want.

You'll find the downloads and more info at Skrommel Software.

Skrommel

872
 :) Just updated CAPshft to v1.4: Added Random case, added option to replace user defines chars.

Now you can add your own characters to replace in the ini-file, like removing empty lines or removing double spaces.

Remove you old CAPshift.ini, or place the new version in another directory.

You'll find the downloads and more info at Skrommel Software.


Skrommel

873
Finished Programs / Re: IDEA: Automatic Copy when highlighted
« on: September 17, 2005, 07:27 AM »
 :) Thank you, thank you. I just found I've forgot to credit you on the 1 hour software page! Sorry about that! I'll correct it as soon as ftp works again.

Skrommel

874
 :) It's all of you who are to be thanked! It's the ideas that make the difference. The slogan for DonationCoders should be "All dressed up and no place to code?"

Skrommel

875
 :huh: Works fine here with me. But you could try my autoraiser instead! Just remember to disable X-Setup Pro's autoraiser.

MouseActivate Automatically activates a window or a control when the mouse hovers over it.

Features:
- Edit the ini-file to change the settings.
- Activate a window or control.
- Move the mouse to the upper left corner of the screen to show or hide the desktop.
- Move the mouse to the left or top edge of the screen to send the active window to the back.
- Enable and disable by doubleclicking the tray icon.

You'll find the downloads and more info at Skrommel Software.

Skrommel

Pages: prev1 ... 30 31 32 33 34 [35] 36 37 38next