Search found 104 matches

by croivo
Thu Apr 14, 2016 11:28 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: If some key is down
Replies: 5
Views: 3909

Re: If some key is down

"the keysDown" is exactly what I was looking for. Thank you all :D
by croivo
Thu Apr 14, 2016 3:49 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: If some key is down
Replies: 5
Views: 3909

If some key is down

Hello...
How to check if a key is down?
I know for this syntax:

Code: Select all

if the altKey is down then doSomething
But can't manage to change it to work with other keys, like regular letters, tab etc.
by croivo
Wed Mar 23, 2016 1:21 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Loading animation
Replies: 1
Views: 1691

Loading animation

While my Livecode application is working on something (in background, let's say importing some data), I would like to show animated .gif on the screen. However, while my application is 'doing something' in background, the .gif animation pauses. I guess this can't be done with .gif, is there any othe...
by croivo
Thu Mar 17, 2016 10:42 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to read .csv?
Replies: 5
Views: 3318

Re: How to read .csv?

Found a solution...

Just changed encoding type...

Code: Select all

put uniencode(tempVar, "iso-8859-1") into tempVar2
So, from utf8 to iso-8859-1.
by croivo
Thu Mar 17, 2016 6:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to read .csv?
Replies: 5
Views: 3318

Re: How to read .csv?

The thing is that I can read .txt with all kind of symbols without any problem, but can't .csv. This is the code that i'm using: if it is not empty then put it into tfilename put url ("binfile:" & tFilename) into tempVar put uniencode(tempVar, "utf8") into tempVar2 set the unicodeText of field "myTe...
by croivo
Thu Mar 17, 2016 5:41 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to read .csv?
Replies: 5
Views: 3318

How to read .csv?

Hello, I'm trying to read .csv file exported from Excel. Here is a piece of code: answer file "Select a file you want to load" with type "Csv Files|csv|CSV" if it is not empty then put it into tfilename put url ("binfile:" & tFilename) into tempVar However, the problem is that it won't read all char...
by croivo
Thu Feb 25, 2016 11:41 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Save online picture in memory
Replies: 7
Views: 4283

Re: Save online picture in memory

Just one more dumb question (I'll ask here so I don't open million new topics):
How do I set filename of image to other image?
Let's say I have imported image in stack and I want to set the filename of another image to be the same as the image that is imported?
by croivo
Thu Feb 18, 2016 1:46 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Text field with classic cursor
Replies: 5
Views: 3275

Re: Text field with classic cursor

Prevent dragging at all.
I'm working with a lot of text fields next to each other... I mean, I don't drag text always, but it would be much nicer if there isn't dragging feature.

Thank you for your reply.
by croivo
Tue Feb 16, 2016 12:08 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Text field with classic cursor
Replies: 5
Views: 3275

Text field with classic cursor

Hello, Is there any way to get rid of this cursor when part of the text is selected inside text field? WP_20160215_23_54_51_Pro.png If you accidentaly drag, the whole text will mess up. I couldn't find any option how to disable this feature. Thank you... PS. I took photo with camera because cursor i...
by croivo
Mon Feb 08, 2016 12:28 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: UTF-8 problems with POST
Replies: 2
Views: 1956

Re: UTF-8 problems with POST

I managed to get it working somehow with uniencode functions...
by croivo
Sat Feb 06, 2016 3:34 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: UTF-8 problems with POST
Replies: 2
Views: 1956

UTF-8 problems with POST

Hello... I'm having troubles using "POST" command in my app. I have php script online, and when I send some parameters with 'POST', and put the result into my variable, I get text full of weird characters (for example, chars like č ć ž š đ are not showed). However, If I just use command "put myLink ...
by croivo
Mon Jan 25, 2016 8:29 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Anti-aliasing images
Replies: 3
Views: 2723

Re: Anti-aliasing images

Tnx Klaus!

EDIT: Just to make sure, where is 'resize quality'? I only have 'quality' available on 'Basic properties'.
by croivo
Sun Jan 24, 2016 5:36 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Anti-aliasing images
Replies: 3
Views: 2723

Anti-aliasing images

I have one esthetic question...
When I import .png image, and resize it, it looks very pixelated. Are there any anti-aliasing options available? I couldn't find anything.
by croivo
Sat Jan 23, 2016 1:04 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Execute function after some time
Replies: 10
Views: 6346

Re: Execute function after some time

Guys thank you very much :)

Go to advanced search