Search found 6 matches

by areasas
Mon Jun 04, 2007 9:34 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parallel activities
Replies: 8
Views: 9965

Parallel activities +4 (Stopped!!) + Working OK!!!

Dear Mark,

I changed to:

on openCard -- startup code
setMeUp
startdropme
end openCard

from previous:

on openCard -- startup code
setMeUp
dropme
end openCard


While, in dropme handler, I also changed to:

put the result into tMessage
if lStopFlag is false then
send "dropme" to me in 3 ...
by areasas
Mon Jun 04, 2007 8:44 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parallel activities
Replies: 8
Views: 9965

Parallel activities +3 (how to stop?)

Dears all,

I made a mistake and now, when I open the stack, the application unables me to open any menu!!??

How can I open a stack without launching the application?


Many thanks,


Carmine
by areasas
Mon Jun 04, 2007 7:52 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parallel activities
Replies: 8
Views: 9965

Parallel activities +2

Dear Mark,

here is all the card script:


======================================
local tDragging -- true if dragging the window, false if not
local dx,dy -- the current x and y movement variable
local sx,sy -- the current x and y coordinates of the stack
local cx,cy -- the location at which the ...
by areasas
Mon Jun 04, 2007 7:15 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parallel activities
Replies: 8
Views: 9965

Parallel activities +1

Very thanks to everybody for the suggestion!

But (still and always recurring, my "but") is there any who may drive me to understand the concepts who stay on the back of all this trying?

1. Why "wait for 5 milliseconds with messages" into the handler should work and why it is not working? Where can ...
by areasas
Mon Jun 04, 2007 11:44 am
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parallel activities
Replies: 8
Views: 9965

Parallel activities +

Dear xApple,

thank You for Your nice answer.

1. I tried the line statement "wait for 5 milliseconds with messages" into the handler but it was not stopping!

How can I check why?

2. I will try to implement the fancy code You suggeste. If it is not too work for You, can You explain it or send ...
by areasas
Thu May 31, 2007 9:11 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Parallel activities
Replies: 8
Views: 9965

Parallel activities

Dears all,

I am new to this list as well as to RR and the first think I try, when looking to a new language, is to develop an introduction to the application where my logo is bouncing into the screen. I used the nice Bouncy.rev example, to start, just changing the "dropme" handler so to never stop ...