
Search found 13 matches
- Mon Jun 08, 2009 2:13 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tutorials
- Replies: 8
- Views: 7159
- 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 ...
- Thu Jun 04, 2009 10:53 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Right Mouse Click in RunRev
- Replies: 4
- Views: 5333
- Mon Jun 01, 2009 12:04 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tutorials
- Replies: 8
- Views: 7159
- 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
Can anyone suggest any good tutorials like Cannon Tutorial or other helpful things?
Thanks

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:
In the buttons' script write:
grc
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
Code: Select all
on mouseUp
choose paint tool # or whatever tool you want
end mouseUp
- 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
- 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:
Play round with it for a bit til you get what you want.
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
- 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...
- 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
- Sat Apr 25, 2009 11:27 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Exiting from loops
- Replies: 5
- Views: 5437
- 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!"
- 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):
Thanks
Code: Select all
repeat until x = 1
answer "Hi"
end repeat