Problem with 2 Processes (1 for, 1 get) - Please help
Author |
Message |
CoRruPt-
|
Posted: Tue Jun 08, 2004 9:28 am Post subject: Problem with 2 Processes (1 for, 1 get) - Please help |
|
|
code: |
process a
for decreasing x: 60..1
delay(1000)
locate(1,1)
put x..
end for
end a
process b
var whatever: string
locate(14,15)
put "Blah blah"..
locate(15,15)
get whatever
end b
fork a
fork b
|
Well, I have a problem with process, for and get. See, I want to locate the get in a specific location (in this case, (15,15)). The for is also located specifically (1,1). However, when the for script runs (a counting down "effect"), the get variable is relocated next to the running for. Is there any way to fix the get to a specific spot and not have it move around? And is there any way to remove the get prompt without the user having to type anything (ie: disappears after x seconds)?
Thanks in advance. |
|
|
|
|
|
Sponsor Sponsor
|
|
|
Tony
|
|
|
|
|
|
|