| View previous topic :: View next topic |
| Author |
Message |
nicklorion
Joined: 03 Jul 2008 Posts: 4
|
Posted: Thu Jul 03, 2008 1:09 pm Post subject: calling a script within an other script. |
|
|
I've searched the forum but i cant find it maybe im using the wrong search variables... sorry nontheless
i was wondering if its possible to call a script in another script
for example:
| Code: | test:
msgbox this is a test
return |
now i want to call the above script in a new script for example
| Code: | #q::
call script: test
return |
how can i do this?
Kind regards Nick |
|
| Back to top |
|
 |
GodlyMario
Joined: 02 Jul 2008 Posts: 39
|
Posted: Thu Jul 03, 2008 1:36 pm Post subject: |
|
|
Include
or
Run, c/folder/test.ahk |
|
| Back to top |
|
 |
nicklorion
Joined: 03 Jul 2008 Posts: 4
|
Posted: Thu Jul 03, 2008 1:47 pm Post subject: |
|
|
its in the same file for example:
| Code: |
test:
msgbox this is a test
return
#q::
call script: test
return |
|
|
| Back to top |
|
 |
tonne
Joined: 06 Jun 2006 Posts: 1259 Location: Denmark
|
Posted: Thu Jul 03, 2008 1:54 pm Post subject: |
|
|
| Code: | Gosub, Label1
MsgBox, The Label1 subroutine has returned (it is finished).
return
Label1:
MsgBox, The Label1 subroutine is now running.
return |
_________________ there's a dog barking close within the range of my ear
sounds like he wants to escape the chain
he would probably bite me to death if he could
but the chain lets me spit in his face
- Kashmir |
|
| Back to top |
|
 |
nicklorion
Joined: 03 Jul 2008 Posts: 4
|
Posted: Thu Jul 03, 2008 1:57 pm Post subject: |
|
|
Sorry i dont get it,
how do i call it with a key combo?
windows + q for example |
|
| Back to top |
|
 |
tonne
Joined: 06 Jun 2006 Posts: 1259 Location: Denmark
|
Posted: Thu Jul 03, 2008 2:25 pm Post subject: |
|
|
This works
| Code: | #q::
gosub, test
return
test:
msgbox this is a test
return
|
Better read up on Auto-Execute section. _________________ there's a dog barking close within the range of my ear
sounds like he wants to escape the chain
he would probably bite me to death if he could
but the chain lets me spit in his face
- Kashmir |
|
| Back to top |
|
 |
nicklorion
Joined: 03 Jul 2008 Posts: 4
|
Posted: Thu Jul 03, 2008 2:30 pm Post subject: |
|
|
ahh thnx thats what i needed
again thanks allot |
|
| Back to top |
|
 |
|