Search found 13 matches
- Mon Jun 08, 2009 2:13 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tutorials
- Replies: 8
- Views: 8498
- Sun Jun 07, 2009 1:02 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tutorials
- Replies: 8
- Views: 8498
- Thu Jun 04, 2009 10:53 pm
- Forum: Getting Started with LiveCode - Experienced Developers
- Topic: Right Mouse Click in RunRev
- Replies: 4
- Views: 6045
- Mon Jun 01, 2009 12:04 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tutorials
- Replies: 8
- Views: 8498
- Sun May 31, 2009 8:45 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Tutorials
- Replies: 8
- Views: 8498
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: 5347
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 mouseLeaveCode: 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: 4116
- Mon May 18, 2009 8:57 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: looking for a starting point
- Replies: 2
- Views: 4212
- Mon May 11, 2009 12:08 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Quick question
- Replies: 1
- Views: 3257
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 ...
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 ...
- Thu May 07, 2009 10:50 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: how to leave
- Replies: 2
- Views: 4015
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: 6472
- Thu Apr 23, 2009 12:08 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: detecting collisions with move handler
- Replies: 2
- Views: 4350
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: 6472
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