Search found 13 matches

by grc
Mon Jun 08, 2009 2:13 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Tutorials
Replies: 8
Views: 7159

I've just discovered it lol. Stupid safari can't do it but firefox can :D
by grc
Sun Jun 07, 2009 1:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Tutorials
Replies: 8
Views: 7159

That's a great help :D By the way, I can't get the tutorial videos to work. This happened a while ago but I managed to get them to work, unfortunately now I've forgotten what I did and it's gone all annoying :x When I click the quicktime video tutorials, they work and start playing but with a plain ...
by grc
Thu Jun 04, 2009 10:53 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Right Mouse Click in RunRev
Replies: 4
Views: 5333

Not sure about right click, but how would double click do?

on mouseDoubleDown (sent when the user double clicks). Maybe double click then drag the field.

on mouseDoubleUp. Maybe double click then have the field follow your mouse till you click once.

Hope it helps :)

Grc
by grc
Mon Jun 01, 2009 12:04 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Tutorials
Replies: 8
Views: 7159

Nice thanks :)

Any others? I know your all hiding great tutorials :wink:
by grc
Sun May 31, 2009 8:45 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Tutorials
Replies: 8
Views: 7159

Tutorials

I'm fairly new to revolution. I've learnt a fair bit from reading these forums and things like that but I still feel like there's tons to learn.

Can anyone suggest any good tutorials like Cannon Tutorial or other helpful things?

Thanks :)

Grc
by grc
Thu May 28, 2009 9:51 am
Forum: Talking LiveCode
Topic: Tools & Drawing inside image
Replies: 4
Views: 4439

Hi

I think this is what you mean.

In the image script write:

Code: Select all

on mouseLeave # mouseLeave is sent when the mouse leaves the area where the image is
   choose browse tool
end mouseLeave
In the buttons' script write:

Code: Select all

on mouseUp
choose paint tool # or whatever tool you want
end mouseUp
grc
by grc
Thu May 28, 2009 7:01 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Start Center screen at start up
Replies: 2
Views: 3401

Hmm... All I can say is that it happens to me too.
by grc
Mon May 18, 2009 8:57 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: looking for a starting point
Replies: 2
Views: 3570

Heres a basic idea of the code:

Code: Select all

move field "Field1" to /*co-ordinates*/ without waiting 
move field "Field2" to /*co-ordinates*/ without waiting

if intersect (field "Field1", field "Field2") then
show image "Image"
end if
Play round with it for a bit til you get what you want.
by grc
Mon May 11, 2009 12:08 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Quick question
Replies: 1
Views: 2741

Quick question

I was wondering if there was a way to ask with a button and a field. I'd like to ask a question with a button called "Paste" which pastes the copied text into the area I want the text AND a text field to enter text into the area I want the text (if its possible a scrolling field would be great cause...
by grc
Thu May 07, 2009 10:50 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: how to leave
Replies: 2
Views: 3387

I've got into those situations and so far the best way I know of is to add this script to at least one of your questions:

Code: Select all

Answer "Question?" with "Answer" and "Cancel"
If it is "Cancel" then exit mouseUp #or whatever the handler is 
by grc
Sat Apr 25, 2009 11:27 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Exiting from loops
Replies: 5
Views: 5437

Thanks all :wink:
by grc
Thu Apr 23, 2009 12:08 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: detecting collisions with move handler
Replies: 2
Views: 3670

Heres an idea. Think it will work.

Code: Select all

if the location of image "Bullet" is within the rect of image "Brick" then answer "Hit!"
by grc
Thu Apr 23, 2009 9:33 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Exiting from loops
Replies: 5
Views: 5437

Exiting from loops

Hi I was wondering if there is a way to exit out if you accidently get into one of these situations (other than force quitting and losing unsaved stuff):

Code: Select all

repeat until x = 1
   answer "Hi"
end repeat
Thanks