Quote Originally Posted by Mus.me View Post
i think none understands my quetion.i want to run like this code ..
i want both programes to run apart from each other its just example so i can write my programe like this plz help
Code:
main:   ' i wa]nt this led to blink  forever without any other delay or stops
high led
pause 100    
low led
pause 100
goto main

loop: ' and i want this led1 to blink without any other delay or stop
high led1
pause 2000
low led1
pause 200
goto loop
You might try this:
Code:
main:
For ledvar = 0 to 100
low led
pause 100
high led
pause 100

next ledvar

low led1
For ledvar = 0 to 100
low led
pause 100
high led
pause 100

High LED1
goto Main