Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 03-06-2006, 11:32 PM
IggyWH IggyWH is offline
Senior Member
 
Join Date: Sep 2004
Location: America\'s Finest City
Posts: 8,170
Default Setting Up A Shortcut To Open Multiple Programs

I did a search but I'm unsure of specific terms so my search was no good. I'm looking for instructions on how to setup a shortcut icon that will open up all my poker apps. If you could point me that way, or tell me what I need to type, I would appreciate it.
Reply With Quote
  #2  
Old 03-06-2006, 11:56 PM
TheIrishThug TheIrishThug is offline
Senior Member
 
Join Date: Jan 2005
Location: Belligerent and numerous
Posts: 1,819
Default Re: Setting Up A Shortcut To Open Multiple Programs

u can get auto hotkey or just us a batch script. either way is pretty simple.
Reply With Quote
  #3  
Old 03-07-2006, 12:23 AM
Mogobu The Fool Mogobu The Fool is offline
Senior Member
 
Join Date: Sep 2005
Location: On teh internets.
Posts: 617
Default Re: Setting Up A Shortcut To Open Multiple Programs

This is actually functionality I'm planning to add to PartyPlanner eventually.

Otherwise, I second the previous recommendations.
Reply With Quote
  #4  
Old 03-07-2006, 05:36 AM
Adde Adde is offline
Senior Member
 
Join Date: Oct 2002
Location: Sweden
Posts: 2,453
Default Re: Setting Up A Shortcut To Open Multiple Programs

Here's my AutoHotkey script for doing this. It will:

* Open Partypoker, click Login, move lobby to upper left, click button to make table list longer.

* Open allSnap.

* Open Pokertracker, start import timer, do a force import, minimize window.

* Start PokerAce Hud minimized.

* Start Auto Resizer, init my preferred settings, move it to secondare monitor, minimize it.

(For Partypoker to work you have to place a shortcut copy (PartyPoker.lnk) in "PartyGaming/PartyPoker" folder.)

Adde
Reply With Quote
  #5  
Old 03-07-2006, 05:38 AM
Adde Adde is offline
Senior Member
 
Join Date: Oct 2002
Location: Sweden
Posts: 2,453
Default Re: Setting Up A Shortcut To Open Multiple Programs

; --------------------------------------------------------------------------------------------
;; PARTYPOKER ;;

SetTitleMatchMode, 1
Process, Exist, PartyGaming.exe
if %ErrorLevel% = 0
{
Run, C:\Program\PartyGaming\PartyPoker\PartyPoker.lnk

WinWait, PartyPoker.com: Poker Lobby
WinActivate, PartyPoker.com: Poker Lobby

WinMove, PartyPoker.com: Poker Lobby, , 0, 0
ControlClick , AfxWnd4262 , PartyPoker.com: Poker Lobby

WinWait, PartyAccount Login
WinActivate, PartyAccount Login

Send {TAB}
Send {TAB}
Send {TAB}
Send {SPACE}

}
else
{
WinMove, PartyPoker.com: Poker Lobby, , 0, 0
ControlClick , AfxWnd4262 , PartyPoker.com: Poker Lobby
}
; --------------------------------------------------------------------------------------------



; --------------------------------------------------------------------------------------------
;; ALLSNAP ;;

Process, Exist, allSnap.exe
if %ErrorLevel% = 0
{
Run, "C:\Program\allSnap\allSnap.exe"
}
; --------------------------------------------------------------------------------------------



; --------------------------------------------------------------------------------------------
;; POKERTRACKER ;;

SetTitleMatchMode, 1

Process, Exist, ptrack2.exe
if %ErrorLevel% = 0
{
Run, "C:\Program\Poker Tracker V2\ptrack2.exe", ,max

}

openImport := 0
startImport := 0

IfWinExist, Poker Tracker (Version, Auto-Import Party
{
}
else
{
openImport := 1
}

if openImport = 1
{

WinWait, Poker Tracker (Version
WinActivate, Poker Tracker (Version
WinMenuSelectItem, Poker Tracker, , File, Auto-Import Party
WinWait, Poker Tracker (Version
startImport := 1
}

if startImport = 1
{
WinActivate, Poker Tracker (Version
WinWait, Poker Tracker (Version
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {SPACE}
Send {TAB}
Send {SPACE}
WinWait, Poker Tracker (Version, Stop Timer
}

WinMinimize, Poker Tracker (Version

; --------------------------------------------------------------------------------------------



; --------------------------------------------------------------------------------------------
;; POKERACE HUD ;;

Process, Exist, PAHud.exe
if %ErrorLevel% = 0
{
Run, "C:\Program\PokerAce Hud\PAHud.exe", ,min
}
; --------------------------------------------------------------------------------------------



; --------------------------------------------------------------------------------------------
;; AUTO-RESIZER ;;

SetTitleMatchMode, 1
Process, Exist, Party Beta Auto Resizer.exe
if %ErrorLevel% = 0
{
Run, "C:\Documents and Settings\Adde\Mina dokument\# POKER\Party_Beta_Auto_Resizer_v07b\Party Beta Auto Resizer.exe"

WinWait, Auto-Resizer
WinClose, Auto-Resizer

WinWait, Auto-Resizer
WinActivate, Auto-Resizer

Send {SPACE}
Send {TAB}
Send {TAB}
Send {TAB}
Send {SPACE}
Send {TAB}
Send {TAB}
Send {SPACE}
Send {TAB}
Send {TAB}
Send {SPACE}
Send {TAB}
Send {SPACE}

WinMove, Auto-Resizer, , 1600, 0
WinWait, Auto-Resizer
WinMinimize, Auto-Resizer
}
; --------------------------------------------------------------------------------------------
Reply With Quote
  #6  
Old 03-07-2006, 11:49 AM
TheNoocH TheNoocH is offline
Senior Member
 
Join Date: Sep 2004
Location: NJ via Philly
Posts: 104
Default Re: Setting Up A Shortcut To Open Multiple Programs

here's a quick batch file
1) open up notepad
2) paste in this code (add/remove/change based upon what you want to open)

@echo off
cd "c:\program files\poker tracker v2"
start ptrack2.exe
cd "c:\program files\pokerstove"
start pokerstove.exe

3) save as whatever name you like with a .bat extension
4) create a shortcut on your desktop or wherever you like
5) waaaaalllllaaaaahhhhhh....you're done...

hope it helps


****PS*****
adde...just so i know...how do you run the AHK script? any easy directions or how to modify for stars? i keep seeing the AHK scripts posted but don't have any idea what to do with them...thanks...
Reply With Quote
  #7  
Old 03-07-2006, 11:58 AM
jukofyork jukofyork is offline
Senior Member
 
Join Date: Sep 2004
Location: Leeds, UK.
Posts: 2,551
Default Re: Setting Up A Shortcut To Open Multiple Programs

Hey, I think I will borrow this until I get time to add the ability to remember settings for AutoResizer.

Never thought about making a AHK script to open all the poker utils, but this looks pretty good idea! [img]/images/graemlins/smile.gif[/img]

Juk [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #8  
Old 03-07-2006, 12:08 PM
SamIAm SamIAm is offline
Senior Member
 
Join Date: Apr 2004
Location: Merry Chhannukaahh
Posts: 6,273
Default Re: Setting Up A Shortcut To Open Multiple Programs

[ QUOTE ]
how do you run the AHK script?

[/ QUOTE ]Install AutoHotKey. Save the script as a txt file with the extension ".ahk". Double click on the file.
[ QUOTE ]
any easy directions or how to modify for stars?

[/ QUOTE ]Obviously all the sections like AllSnap and Pokertracker will work fine. For the others, you can just modify the AllSnap section for an easy PStars script.
-Sam
Reply With Quote
  #9  
Old 03-07-2006, 12:52 PM
TheNoocH TheNoocH is offline
Senior Member
 
Join Date: Sep 2004
Location: NJ via Philly
Posts: 104
Default Re: Setting Up A Shortcut To Open Multiple Programs

Sam,
thanks for the response...actually easier than i thought...maybe i'll play around a little tonight....
i like the idea he had with Party and getting to login screen...
any easy way to do something similar for Stars?
Note: i'm pretty sure i'm following how to just open stars (ie using something similar to the allsnap section)...but curious how to take it the step further like he did with the Party lobby and login....
thanks for your help...love learning new stuff....

also for poker tracker...he has it set to auto import party...would i just have to change where he has party to stars?
Reply With Quote
  #10  
Old 03-07-2006, 02:07 PM
Adde Adde is offline
Senior Member
 
Join Date: Oct 2002
Location: Sweden
Posts: 2,453
Default Re: Setting Up A Shortcut To Open Multiple Programs

For Pokerstars, replace "PARTYPOKER" and "POKERTRACKER" with these.

Will not work if Pokerstars puts up a message alert though. I got the alert one time, but every other time I login it won't show up, so I can't test the script to include this.

Adde


; --------------------------------------------------------------------------------------------
;; POKERSTARS ;;

SetTitleMatchMode, 1
Process, Exist, PokerStars.exe
if %ErrorLevel% = 0
{
Run, "C:\Program\PokerStars\PokerStarsUpdate.exe"

WinWait, , Network Status
Loop {
IfWinNotExist , , Network Status
break
}
WinWait, PokerStars Lobby
WinMove, PokerStars Lobby, , 0, 0
WinActivate, PokerStars Lobby
WinMenuSelectItem, PokerStars Lobby, , Lobby , Login
WinWait, , User ID
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {SPACE}
}
; --------------------------------------------------------------------------------------------



; --------------------------------------------------------------------------------------------
;; POKERTRACKER ;;

SetTitleMatchMode, 1

Process, Exist, ptrack2.exe
if %ErrorLevel% = 0
{
Run, "C:\Program\Poker Tracker V2\ptrack2.exe", ,max

}

openImport := 0
startImport := 0

IfWinExist, Poker Tracker (Version, Auto-Import PokerStars
{
}
else
{
openImport := 1
}

if openImport = 1
{

WinWait, Poker Tracker (Version
WinActivate, Poker Tracker (Version
WinMenuSelectItem, Poker Tracker, , File, Auto-Import PokerStars
WinWait, Poker Tracker (Version
startImport := 1
}

if startImport = 1
{
WinActivate, Poker Tracker (Version
WinWait, Poker Tracker (Version
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {TAB}
Send {SPACE}
Send {TAB}
Send {SPACE}
WinWait, Poker Tracker (Version, Stop Timer
}

WinMinimize, Poker Tracker (Version

; --------------------------------------------------------------------------------------------
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 01:55 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.