I am using the splendid program menuak.ahk
Is possible to modify ?
My problem is simple.
If I put a link in my CRM Goldmine 5.5 don't find the launcher.ini. curiosly don't happen when launched with PowerTray from lopesoft.com.
Example :
Y:\PORTABLES\Personaliza pc\menuak.ahk\menuak.ahk
When I execute don't read the launcher.ini. Reads the standard one because don't find the corresponding in the same folder.
Y:\PORTABLES\Personaliza pc\menuak.ahk\launcher.ini
I have tried to solve this problem with a bat file, but the result is not good because I don't know how to close the cmd window while I am executing the script.
So. I would like to obtain a menuak.ahk able to find the launcher.ini in the same folder where the .ahk file is.
The initial code is :
IniRead, numRows
, launcher
.ini
, General
, numRows
, 0 IniRead, numCols
, launcher
.ini
, General
, numCols
, 0 if !numRows
InputBox, numRows
, , Enter number of rows
, , 200, 120, , , , , 5 if !numCols
InputBox, numCols
, , Enter number of columns
, , 200, 120, , , , , 2 IniWrite, %numRows%, launcher
.ini
, General
, numRows
IniWrite, %numCols%, launcher
.ini
, General
, numCols
{
IniRead, Title
%A_Index%, launcher
.ini
, Titles
, Title
%A_Index%, %A_Index% IniRead, Path
%A_Index%, launcher
.ini
, Paths
, Path
%A_Index%, }
Edit1:=1
Butt1:=1
{
Title:=Title%Index%
ys
:=!
Mod(Index
-1, numRows
) ?
"ys" :
"xp-150 yp+35" Edit%Index%:=Index
Butt%Index%:=Index
}
Gui 2:
Add, Button, w25 gFileSelect vFileSelect r0
.9 xp
+300 yp
, ....
return
tpp:= % "Path" %A_GuiControl%
return
cIndex:=%A_GuiControl%
FileSelect:=cIndex
return
FileSelect:
FileSelectFile, Path
%cIndex%, 3, %A_ProgramFiles%, Select program to
run with
button ?
%cIndex%, Programs
(*.exe
;*.lnk;*.bat) return
2GuiClose:
return
SelOk:
Path%cIndex%:=SelPath
Title%cIndex%:=SelTitle
IniWrite, % Title
%cIndex%, launcher
.ini
, Titles
, Title
%cIndex% IniWrite, % Path
%cIndex%, launcher
.ini
, Paths
, Path
%cIndex% return
and the launcher.ini contains the configuration
[General]
numRows=5
numCols=2
[Titles]
Title1=Carpetas expediente
Title2=Traspaso Gestión MGD
Title3=Creación Goldmine
Title4=Procedimientos Proyecto
Title5=Procedimientos Informáticos
Title6=Procedimientos Comunes
Title7=Generar orden de trabajo
Title8=Lanzar una carpeta
Title9=Lanzar una web
Title10=Lanzar Goldmine
[Paths]
Path1=Y:\GABINETE\PROYECTOS\Listas.exe
Path2=ERROR
Path3=ERROR
Path4=ERROR
Path5=ERROR
Path6=ERROR
Path7=ERROR
Path8=Y:\PORTABLES\Educativos\BabelBox
Path9=http://www.autohotkey.com/forum/viewtopic.php?p=304050#304050
Path10=Y:\GoldminePrg\gmw5.exe /i:esm /u:JOSE /p:
(is a simple example, not real)
