Search found 6 matches

by Thalor
Fri May 15, 2015 4:58 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Pulling a row from a table
Replies: 3
Views: 2574

Re: Pulling a row from a table

Ok so if I wanted to get column 3 row 3 of a table

set itemdelimter to tab
put column 3 of line 3 of field "TextTable" into field "DialogText"

Would that work? Or something similar? I'm very new to this.

thanks in advance.
by Thalor
Wed May 13, 2015 8:37 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Pulling a row from a table
Replies: 3
Views: 2574

Pulling a row from a table

If I wanted to set the text of a Label field to something that is in a basic table how would I do it? My table (TextTable) is set up as such (tab delimited) 1 Choice1 2 Choice2 3 Choice3 4 Choice4 5 Choice5 If I wanted JUST key # 4 (Choice4) how would I query the table by the key to pull the "text" ...
by Thalor
Thu Feb 12, 2015 6:45 pm
Forum: Talking LiveCode
Topic: Base64Decode....again
Replies: 15
Views: 8734

Re: Base64Decode....again

Thanks to all who helped. This has put me on the right path.

Thanks again!
by Thalor
Thu Feb 12, 2015 5:31 pm
Forum: Talking LiveCode
Topic: Base64Decode....again
Replies: 15
Views: 8734

Re: Base64Decode....again

Interesting thing. It all works. I can select an image. Put it into Image1, encode it and store it in MYSQL. I can retrieve it from MYSQL, decode and put it in Image2 HOWEVER If Image1 and Image2 are different sizes (Height and Width) the image gets messed up Any ideas? I've been looking at re-sizin...
by Thalor
Thu Feb 12, 2015 5:04 pm
Forum: Talking LiveCode
Topic: Base64Decode....again
Replies: 15
Views: 8734

Re: Base64Decode....again

One word. D'oh

Thank you so much. I can't believe how I missed that.

Thanks for the quick reply. I can get back to regrowing the hair that I pulled out.

T
by Thalor
Thu Feb 12, 2015 4:44 pm
Forum: Talking LiveCode
Topic: Base64Decode....again
Replies: 15
Views: 8734

Base64Decode....again

I know this has been hashed and rehashed, but I cannot get this to work at all. I have Two image areas (Image1, Image2) Two Buttons (Button1, Button2) One Text field (text) I'm trying a proof of concept for future development. (I NEED to store images in a DB) At any rate the way it is supposed to go...