Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Make a batch file always on top
Name: pball Date: November 11, 2008 at 19:03:29 Pacific OS: XP Pro CPU/Ram: 2.8 ghz / 2 gig Product: home made
Comment:
I make reminders using a batch script that echos stuff and the scheduler thing in xp. The problem is the batch script doesn't show up when I'm watching videos. Is there a way to make the script window appear in front of a playing video?
Name: Holla Date: November 11, 2008 at 23:23:01 Pacific
Reply:
How are you displaying the messages? For similar requirement, I use vbscript. For example, I have a wait.vbs, which displays a messagebox after N seconds. This messagebox pops up even when I am watching video in fullscreen mode. My wait.vbs has three lines:
I launch it by typing "wait 120" which displays the message "120 seconds over" after 120 seconds.
-- Holla.
0
Response Number 2
Name: pball Date: November 12, 2008 at 03:14:35 Pacific
Reply:
um sorry should of been more clear. I just have the scheduler run a batch script that just echos something like "go to work" then pauses. It doesn't do anything else.
EDIT: Just played with that and that's neat, I just took out the first two lines and changed the text to something else and now to test when playing video.
Thanks
0
Response Number 3
Name: Holla Date: November 12, 2008 at 04:38:00 Pacific
Reply:
pball,
Exactly! What I intended by giving out my script is -
Instead of
echo "goto work",
Make it
vbecho "got work"
And you create a vbecho.vbs with
dim answer answer=MsgBox(WScript.Arguments.Item(0),vbSystemModal, "pball Echo" )
EDIT: I posted this message before your EDIT :-) -- Holla.
Summary: Ok so heres the problem. I am trying to make a batch file that will autorun on a cd and delete a text file I have on my desktop. The autorun works and the batch file does so only if its run twice with...
Summary: hi, im trying to make a batch file to type in my AIM password in the AIM Password text box...heres the code that will/won't work.... echo off title Auto log in cls start aim.exe type login.txt pause ...
Summary: I am wanting to make a batch file that will do several things. Take a certain file folder (and all its contents) from a certain location and delete it. Then copy over another file folder (and all its ...