Search found 14 matches

by Omar319
Sun Jan 04, 2009 6:01 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: Error was 0, 9
Replies: 0
Views: 1665

Error was 0, 9

What does this mean? I have a stack that I want to make standalone. I have done this with just a 1 card stack and that seems to work, but not with the one I'm trying to do it with. Can someone please tell me how to create a standalone app for windows? I'm using a trial version of Studio. I have crea...
by Omar319
Fri Jan 02, 2009 6:19 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Clicking anywhere takes me to the mainstack.
Replies: 4
Views: 4941

Hi thanks for replying.
Ungrouping the picture solved the problem, even though the banner disappeared from all slides it's easier to copy and paste them.

Thanks for your help,
Omar :)
by Omar319
Wed Dec 31, 2008 3:35 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Clicking anywhere takes me to the mainstack.
Replies: 4
Views: 4941

Hi, I have this sort of script for every button on each card. But When I click outside any button it takes me back. I've checked all of the card and stack scripts and there's nothing. I haven't made any. There is one thing that might be causing it. I have an image that I use as a banner, and that is...
by Omar319
Wed Dec 31, 2008 12:32 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Clicking anywhere takes me to the mainstack.
Replies: 4
Views: 4941

Clicking anywhere takes me to the mainstack.

Hi,
I've created a stack made up of several cards, but clicking in a blank area or anywhere that is not a button or a link takes me back to the first card. I inported a video and this won't play. Clicking it only takes me to the home card.

Why does it do this and how do I stop it?

Thanks.
Omar
by Omar319
Tue Sep 30, 2008 11:25 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Drag and drop question.
Replies: 19
Views: 18692

global my_old_position on mouseDown set the layer of me to the num of controls put the loc of me into my_old_position grab me end mouseDown on mouseUp if within (img "Yellow" ,the loc of me) then add 1 to field "Answer" else move me to my_old_position subtract 1 from field "Answer" end if end mouse...
by Omar319
Mon Sep 29, 2008 9:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Drag and drop question.
Replies: 19
Views: 18692

Drag and drop question.

Hi, I've already made a drag and drop game but I have a small problem. I drag a field into a box and if it matches the target the score goes up in a separate field. But there is a way around this by dragging it into the correct target and constantly clicking so the score goes up. Is there any way to...
by Omar319
Thu Jul 10, 2008 9:43 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Mouseover rollover effects
Replies: 10
Views: 13834

Thanks guys.
That's answered it all perfectly :D
by Omar319
Wed Jul 09, 2008 8:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Mouseover rollover effects
Replies: 10
Views: 13834

That works perfectly, thanks :D

Any other ideas on how to do it? It's quite tedious doing it this way even though this works.

Thanks,
Omar :)
by Omar319
Wed Jul 09, 2008 7:59 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Mouseover rollover effects
Replies: 10
Views: 13834

Mouseover rollover effects

Hi,
How do I make a picture change to something else when the mouse rolls over it?

Is the code anything like:
on mouseOver
*change picure1 to picture2*
end mouseOver

on mouseOut
*change picture2 to picture1*
end mouseOut


Thanks,
Omar :)
by Omar319
Mon May 05, 2008 12:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Counting number of characters
Replies: 4
Views: 7583

Hi,
That works too.

Thanks for the replies.

Omar 8)
by Omar319
Mon May 05, 2008 11:38 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Counting number of characters
Replies: 4
Views: 7583

Thanks Klaus

Perfect :D

Omar 8)
by Omar319
Mon May 05, 2008 10:49 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Counting number of characters
Replies: 4
Views: 7583

Counting number of characters

Hi, I'm trying to create a button that will count the number of characters, like a word count but a character count instead. This is the code I have come up with but seems to come up with a random string of numbers: on mouseUp local tNumber, tNumOutput put field "Text" into tNumber repeat for each c...
by Omar319
Wed Apr 30, 2008 9:34 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Calculator
Replies: 3
Views: 5779

Calculator

Hi,
Thanks for replying Mark and nonsanity. The coding provided is fine for the numbers but I think I needed to have made the gMode variable first. The documentation helps too as this is what I've been looking for.

Thanks to your replies,
Omar :D
by Omar319
Wed Apr 30, 2008 6:58 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Calculator
Replies: 3
Views: 5779

Calculator

Hiya, For my A Level coursework we had practice on making programs before we started on the assessment tasks and one of them was a calculator: add/divide/subtract/multiply two text fields together and put the answer into an answer field. But now I want to create another calculator much like the Wind...