Search found 341 matches

by shawnblc
Mon Apr 15, 2019 8:09 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Batch file with a flag -- need assistance
Replies: 33
Views: 17730

Batch file with a flag -- need assistance

How can I get my batch file to run with a flag? This doesn't work. set the itemDelimiter to "/" put (item 1 to -2 of the effective fileName of this stack) & "\scripts\runme\runme.bat -h" into tfile launch document tfile This does work, but doesn't contain the flag. set the itemDelimiter to "/" put (...
by shawnblc
Sat Aug 06, 2016 5:14 pm
Forum: Talking LiveCode
Topic: LC8 - Can't Build for HTML5 [Solved]
Replies: 14
Views: 10726

Re: LC8 - Can't Build for HTML5

Alright, I haven't heard back from LC support yet, but evidently I'm not functioning to my normal extreme high level of competence. :) It seems that instead of having a commercial license that covers everything (iOS, Android, OS X, Windows, Linux, Server, RPi and HTML5). I have a separate Indy licen...
by shawnblc
Sat Aug 06, 2016 5:38 am
Forum: Talking LiveCode
Topic: LC8 - Can't Build for HTML5 [Solved]
Replies: 14
Views: 10726

Re: LC8 - Can't Build for HTML5

Simon wrote:Hi Shawn,
Keep us updated on this as I thought I was supposed to get HTML as well.

Simon
Will do Simon. I'm sure support will add it back, luckily I had the email from Heather where it was included in my funding of the campaign and she added it back then. It just disappeared for some reason.
by shawnblc
Sat Aug 06, 2016 12:51 am
Forum: Talking LiveCode
Topic: LC8 - Can't Build for HTML5 [Solved]
Replies: 14
Views: 10726

Re: LC8 - Can't Build for HTML5

Several of us also contributed to the LC HTML5 campaign. Most of those contribution options included a license for HTML deployment. If yours did and it's not working in your version you should contact support to see what happened with that. I did, but haven't heard back yet. I contributed to both a...
by shawnblc
Fri Aug 05, 2016 9:03 pm
Forum: Talking LiveCode
Topic: LC8 - Can't Build for HTML5 [Solved]
Replies: 14
Views: 10726

Re: LC8 - Can't Build for HTML5

Hi Shawn, ... OTOH, the free community version CAN in fact export to HTML5!? Don't ask me why... 8) And that doesn't make sense to me. VIPs contributed a great deal of money, and yet all of us are expected to give again and again and again. This was suppose to be a "Lifetime commercial license for ...
by shawnblc
Fri Aug 05, 2016 11:40 am
Forum: Talking LiveCode
Topic: LC8 - Can't Build for HTML5 [Solved]
Replies: 14
Views: 10726

Re: LC8 - Can't Build for HTML5

Guess I'll wait for further clarification. It could be that some how they missed updating my license or my assumption was wrong. :)
by shawnblc
Fri Aug 05, 2016 11:34 am
Forum: Talking LiveCode
Topic: LC8 - Can't Build for HTML5 [Solved]
Replies: 14
Views: 10726

Re: LC8 - Can't Build for HTML5

I thought as a Kickstarter VIP contributor HTML5 was part of the deal? Guess I was wrong.
by shawnblc
Fri Aug 05, 2016 11:27 am
Forum: Talking LiveCode
Topic: LC8 - Can't Build for HTML5 [Solved]
Replies: 14
Views: 10726

LC8 - Can't Build for HTML5 [Solved]

Why am I not able to build for HTML5 ? I sent support an email inquiring why, but still haven't received a response.

Screen Shot 2016-08-05 at 05.25.05.png
Screen Shot 2016-08-05 at 05.23.06.png
by shawnblc
Tue Mar 08, 2016 9:32 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: RevIgniter CRUD - Is there a sample CRUD application?
Replies: 0
Views: 1301

RevIgniter CRUD - Is there a sample CRUD application?

I'm wanting to give revigniter a whirl and am wondering if there's any CRUD application available for installation and demo?
by shawnblc
Tue Nov 03, 2015 11:28 pm
Forum: Off-Topic
Topic: I just stumbled upon Lazarus, pretty impressed
Replies: 3
Views: 4163

I just stumbled upon Lazarus, pretty impressed

I just stumbled upon Lazarus Free Pascal, I'm impressed with how their packages are installed and the IDE rebuilt. I haven't figured out their web implementation yet, but it's interesting. Does anyone have experience with Lazarus? I definitely prefer LC instead of pascal, but I think they've done qu...
by shawnblc
Sun Aug 30, 2015 6:32 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Download various files with certain extensions from URL
Replies: 1
Views: 1614

Download various files with certain extensions from URL

I'm looking to create a little application that would download all the files from the current page (web page). Several of the files are .pdf, .zip, .xls, .xlsx, .xlsm, and some are .html pages. All are included in the href tag. I could select which folder on my local machine to store these. Not havi...
by shawnblc
Fri Jun 19, 2015 8:00 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [help] What's wrong with this code ?
Replies: 7
Views: 4516

Re: [help] What's wrong with this code ?

The problem with that is I don't know how many docs there will be, there could be several hundred / thousand. The user submits the documents, which are immediately uploaded to the server. Why don't you count the number of record on that data grid first, then you add 1 to that number then you can in...
by shawnblc
Fri Jun 19, 2015 1:16 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [help] What's wrong with this code ?
Replies: 7
Views: 4516

Re: [help] What's wrong with this code ?

put tDate into theDataA[ 1 ][ "date" ] If I understand the code, the index needs to change for each line else it will overwrite. You need to have put tDate into theDataA[ 1 ][ "date" ] put tDate into theDataA[ 2 ][ "date" ] put tDate into theDataA[ 3 ][ "date" ] etc.... The problem with that is I d...
by shawnblc
Thu Jun 18, 2015 10:51 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [help] What's wrong with this code ?
Replies: 7
Views: 4516

Re: [help] What's wrong with this code ?

Hi. You rewrite the contents of the variable "theRowData" three times. Is this intended? AddLine requires a tab delimited string. Is there data in such a string when you dispatch? Craig Newman Let me show you what I'm trying. See image. No, I don't have a tab delimited string. I was trying to incor...
by shawnblc
Thu Jun 18, 2015 10:21 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: [help] What's wrong with this code ?
Replies: 7
Views: 4516

[help] What's wrong with this code ?

I am able to write data to the datagrid, but when I submit a second time my first entry is replaced. When I change my code to this nothing is added though: put tDate into theRowData put tFacility into theRowData put tCategory into theRowData put fld "lblLink" into theRowData put the dgNumberOfLines ...

Go to advanced search