Search found 336 matches

by keram
Thu Feb 26, 2015 10:13 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Yet Another ClickLine Question
Replies: 8
Views: 9367

Re: Yet Another ClickLine Question

WaltBrown wrote:Using 7.0.1 Community on Win7 X64 this code in a field:
Works OK in Win7x64 with LC 6.7.2 Community
by keram
Thu Feb 26, 2015 9:43 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Visual effects
Replies: 12
Views: 13937

Re: Visual effects

Hi Jacqueline,

Which ones fail?

The ones with red buttons - basically all of them (see the attached stack). I cannot test the curl.
I added to the red ones: lock screen for visual effect/unlock screen with visual effect...
Compare with the corresponding ones without lock/unlock

BUT here is ...
by keram
Tue Feb 24, 2015 5:26 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Visual effects
Replies: 12
Views: 13937

Re: Visual effects

Then you were lucky, usually iOS apps will crash when NOT using the official syntax!
Which shouldn't happen anyway! 8)

I tried with Android app. Right now I cannot test any iOS apps.

But I am really wondering why you question the official syntax at all!?
I'm not questioning the official syntax ...
by keram
Tue Feb 24, 2015 4:50 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: image file as data grid background
Replies: 2
Views: 4013

Re: image file as data grid background

Yes, behind it works but it's not what I wanted...
by keram
Tue Feb 24, 2015 4:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Visual effects
Replies: 12
Views: 13937

Re: Visual effects

I tried and cannot tell if there is any difference - it works in both cases.
by keram
Tue Feb 24, 2015 4:25 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: image file as data grid background
Replies: 2
Views: 4013

image file as data grid background

Hi,

Is it possible to set the background of a data grid using an image file (jpg or png)?

keram
by keram
Tue Feb 24, 2015 4:23 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Visual effects
Replies: 12
Views: 13937

Re: Visual effects

Actually, does anyone know why the lock screen for visual effect and unlock screen with visual effect... parts of the script have been added?? What if we don't include it and create a mobile standalone? Will it create a problem?

keram
by keram
Sun Feb 22, 2015 10:18 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Printing Problems - Update
Replies: 4
Views: 4730

Re: Printing Problems - Update

I's not possible to open your stack. After entering the password the card flashes for a split second and closes right away. Reentering the password does not work after that.
by keram
Wed Feb 18, 2015 4:02 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: LiveCode Commercial Indy license for $170!
Replies: 0
Views: 13110

LiveCode Commercial Indy license for $170!

Hi everybody,

I thought many in this section of forum would be interested in this.
A friend of mine is offering LiveCode Commercial Indy license for $170!
You can view his post here: http://forums.livecode.com/viewtopic.php?f=5&t=23237#p120177
and I can assure you that the offer is 100% honest ...
by keram
Mon Feb 16, 2015 4:51 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Toggle a checkbox on a card with long press does not work
Replies: 4
Views: 5677

Re: Toggle a checkbox on a card with long press does not wor

Thanks Jacqueline,

I changed it to:
local sPressStart

on mouseDown
put the milliseconds into sPressStart
end mouseDown

on mouseUp
put the milliseconds into tPressStop
if tPressStop - sPressStart > 700 then
show grp "a"
hide grp "b"
put "this was a LONG press" into fld "message"
wait 1 ...
by keram
Mon Feb 16, 2015 1:49 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Visual effects
Replies: 12
Views: 13937

Re: Visual effects

Hi Linda,

No, even with variable checking on you don't get any error when omitting the quotation marks in this case.

keram
by keram
Sun Feb 15, 2015 4:25 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Visual effects
Replies: 12
Views: 13937

Re: Visual effects

Thanks anmldr,

One thing though...
Some of the visual effects are buggy. When you include the official script for using them, for example:
on mouseUp
lock screen for visual effect
unlock screen with visual effect scroll right
go next
end mouseUp

(the quotation marks around the name of the ...