Search found 421 matches

by sefrojones
Tue Jun 30, 2015 6:52 pm
Forum: Off-Topic
Topic: Recently we've been investing ....[SOLVED?]
Replies: 112
Views: 71903

Re: Recently we've been investing heavily in product develop

I have spent a siginificant amount of money over the last couple of years supporting LiveCode. As a hobbyist developer who makes no profit from LiveCode development, I was ONLY supporting LiveCode because of the Community Edition and it's supposed mission of "bringing coding to everyone". Now as Kla...
by sefrojones
Tue Jun 30, 2015 4:48 pm
Forum: Off-Topic
Topic: Recently we've been investing ....[SOLVED?]
Replies: 112
Views: 71903

Recently we've been investing ....[SOLVED?]

TRANSLATION: "Recently, YOU've been investing heavily in product development, by donating to TWO successful crow-funding rounds and buying multiple licences. Now that the hard work is done, we are pricing you out, and crippling the community version" SO long, it's been good to know ya. If any of you...
by sefrojones
Sat Jun 13, 2015 3:19 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Can't find handler -- what does this mean? [solved]
Replies: 2
Views: 2650

Re: Can't find handler -- what does this mean?

Is "lbl_total" a field? If so, try this:

Code: Select all

put 3 into field "lbl_total"
Label fields are also fields. Hope this helps.

--Sefro
by sefrojones
Fri Jun 12, 2015 4:22 pm
Forum: Getting Started with LiveCode - Experienced Developers
Topic: N-Tier Application Development
Replies: 10
Views: 15639

Re: N-Tier Application Development

FourthWorld wrote: After all, even Sony, Apple, BestBuy, and others, with armies of highly-compensated specialists, get hacked. Even the Pentagon has been hacked. Everything is hackable.

Here's another one for the list:

http://www.cnet.com/news/hack-affected- ... nion-says/
by sefrojones
Sat May 23, 2015 12:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: dropping the decimal values in a calculated field
Replies: 3
Views: 2854

Re: dropping the decimal values in a calculated field

Code: Select all

on mouseup
   put 4.556 into MyDollarValue
   set the itemdelimiter to "."
   put item 1 of MyDollarValue
end mouseup
--Sefro
by sefrojones
Tue May 19, 2015 2:31 pm
Forum: Databases
Topic: MySql database for app iOS and Android
Replies: 24
Views: 17402

Re: MySql database for app iOS and Android

I also have an on-rev account, but I'm also not sure if they allow direct connections. I think if you are going to be distributing this app to other users, then best practice would be to use some sort of middleware, as I believe it is more secure than hard coding your database credentials into the a...
by sefrojones
Tue May 19, 2015 2:00 pm
Forum: Databases
Topic: MySql database for app iOS and Android
Replies: 24
Views: 17402

Re: MySql database for app iOS and Android

I believe that there are example "middleware" scripts for both LiveCode server and PHP in this thread:

http://forums.livecode.com/viewtopic.ph ... re#p124505

--Sefro
by sefrojones
Wed Apr 29, 2015 1:41 am
Forum: Talking LiveCode
Topic: Uploading an image
Replies: 3
Views: 3382

Re: Uploading an image

Try this out:

Create a new stack with a button and an image area.

In the button put this script:

Code: Select all

on mouseUp
   answer file "select an image"
   put it into tPicPath
   set the filename of img 1 to tPicPath
end mouseUp

Hope this helps.

--Sefro
by sefrojones
Mon Apr 13, 2015 1:56 am
Forum: Talking LiveCode
Topic: Gathering the last part of a text string
Replies: 2
Views: 2274

Re: Gathering the last part of a text string

This might work:

Code: Select all

   put "/thisFolder/thatFolder/images/the file name.gif" into tPath
   set the itemdelimiter to slash
   put the last item of tPath
--Sefro
by sefrojones
Tue Apr 07, 2015 8:31 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Sheep Hander problem
Replies: 7
Views: 4485

Re: Sheep Hander problem

In your script, you are checking the cIsSheep, but in your template sheep button the custom property is misnamed as cLsSheep. (I capitalized the L here, but in your template button it is lower case)


Hope that helps!

--Sefro
by sefrojones
Wed Apr 01, 2015 8:21 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Sheep Hander problem
Replies: 7
Views: 4485

Re: Sheep Hander problem

It looks like your attachment didn't actually get attached, as I believe you will need to have a certain amount of posts before you can attach a file. You can always post a link to your stack hosted on dropbox/google drive/mega/wherever until you are allowed to post attachments.

--Sefro
by sefrojones
Wed Mar 25, 2015 8:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: help... sort list (^._.^)?
Replies: 6
Views: 4288

Re: help... sort list (^._.^)?

Check out this thread here:

http://forums.livecode.com/viewtopic.php?f=9&t=10505

--sefro

EDIT:

Code: Select all

sort fld "list" descending numeric by the length of each
by sefrojones
Wed Mar 25, 2015 7:46 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: help... sort list (^._.^)?
Replies: 6
Views: 4288

Re: help... sort list (^._.^)?

This works(for your example at least):

Code: Select all

sort fld "list" descending
--sefro
by sefrojones
Wed Mar 25, 2015 7:22 pm
Forum: Internet
Topic: Getting Data from Website
Replies: 4
Views: 4987

Re: Getting Data from Website

This worked for me in LiveCode 7.03 running on Ubuntu. function CheckInternetConnection put URL "http://www.yourcfpro.com" into lconnCheck if lconnCheck is empty then return "No Data from Website" else return "Received Website Data" end if end checkinternetconnection --Sefro EDIT: this is also worki...

Go to advanced search