Re: Question re large project organization

2015-03-24 Thread William Prothero
Phil: Tnx for the info. I did try the “password protect” checkbox and put in a password, but there must be something I’m missing because after making a standalone, the password checkbox and entered password has been set back to blank in the “Standalone Settings” “stacks” panel, and the stacks th

Re: Question re large project organization

2015-03-24 Thread William Prothero
Richard: Fair enough. I did find the “password” entry in the dictionary. BUT, I wonder if the fact that this doesn’t work (for me) in the standalone builder code mean there is a bug in the IDE? Also, I’m exploring the ramifications of this approach and considering whether the apple store will n

Re: Question re large project organization

2015-03-24 Thread William Prothero
Richard: Thank you, thank you! Very pertinent info. I’m glad I can get a stack back into substack. Best, Bill > On Mar 24, 2015, at 8:38 AM, Richard Gaskin > wrote: > > William Prothero wrote: > > Fair enough. I did find the “password” entry in the dictionary. BUT, > &

Re: Question re large project organization

2015-03-24 Thread William Prothero
Jackie: Yes. I selected each stack and put in a password for it. I’m going to make a test stack and submit a bug report, if it shows the same behavior. Best, Bill > On Mar 24, 2015, at 9:34 AM, J. Landman Gay wrote: > > On March 24, 2015 10:31:38 AM CDT, William Prothero > wrote

Re: Question re large project organization

2015-03-24 Thread William Prothero
I just submitted a bug report on this issue. Bill William A. Prothero http://es.earthednet.org/ ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http:/

Re: Question re large project organization

2015-03-24 Thread William Prothero
Richard: The bug is Bug 15079 <http://quality.runrev.com/show_bug.cgi?id=15079> Bill > On Mar 24, 2015, at 10:49 AM, Richard Gaskin > wrote: > > William Prothero wrote: > > > Yes. I selected each stack and put in a password for it. I’m going > > to make a t

Re: Question re large project organization

2015-03-24 Thread William Prothero
> On Mar 24, 2015, at 11:13 AM, William Prothero > wrote: > > Richard: > The bug is Bug 15079 <http://quality.runrev.com/show_bug.cgi?id=15079> > Bill > >> On Mar 24, 2015, at 10:49 AM, Richard Gaskin >> wrote: >> >> William Prothero wro

Re: Question re large project organization

2015-03-24 Thread William Prothero
I expect to be copied into the standalone. Bill > On Mar 24, 2015, at 7:37 PM, J. Landman Gay wrote: > > On 3/24/2015 5:50 PM, William Prothero wrote: >> it leaves me wishing there was a clear explanation of the standalone >> builder and where files get put for v

Re: [ANN] modified Table Field 0_2_2

2015-03-25 Thread William Prothero
Bernd: Thanks! Bill > On Mar 25, 2015, at 12:01 PM, BNig wrote: > > Sorry, > > make that > > --- > modTableField 0_3_2 > --- > Kind regards > > Bernd > > > > -- > View this message in context: > http://runtime-revolution.278305.n4.nabble.com/ANN-modified-Table-Field-0-2-2-tp46906

Re: [Bug 15079] Standalone Builder fails to protect added stacks

2015-03-25 Thread William Prothero
bug 15079 > not a bug. Sorry for bad report. My problem with understanding how the = password protection works. Best, Bill > On Mar 24, 2015, at 12:24 PM, bugzilla-dae...@meg.on-rev.com wrote:

iOS question re extra stacks

2015-03-28 Thread William Prothero
Folks: I’m trying out iOS and figuring out limitations, etc. What I’m wondering is whether iOS apps can load stacks that are not substacks of the main stack. I have tested it with a mainstack, with one substack, but I don’t see any way in the standalone settings to bring in additional stacks. Do

Re: iOS question re extra stacks

2015-03-28 Thread William Prothero
o both iOS and Android. > > Ralph DiMola > IT Director > Evergreen Information Services > rdim...@evergreeninfo.net > > > > > Original message From: William Prothero > Date:03/28/2015 17:47 (GMT-05:00) > To: Use-livecode Use-livecode >

Re: mobile app stores - personal v. corporate customers

2015-03-30 Thread William Prothero
Mark: This sounds like something I’ve been considering too. In my case, it’s an educational app. I have a basic app with basic functionality. Then there could be a paid app that is pretty much the same, with enhanced functionality, that required a login to get advanced functionality. What I’m

Getting update for mobGUI??

2015-04-05 Thread William Prothero
I’m looking around fro where I get an update for MobGUI. I have an older version and am starting to do some work with mobile, so need the latest version. Is it still alive and well? The mobGUI site takes me to the livecode site, then I get no listing for mobGUI. Best, Bill William A. Prothero

Re: Getting update for mobGUI??

2015-04-05 Thread William Prothero
Gerry: The Buy button takes me to the livecode store, but it doesn’t show up. I’ll see if I can get hold of John. Bill > On Apr 5, 2015, at 7:26 PM, Gerry wrote: > >> Is it still alive and well? The mobGUI site takes me to the livecode site, >> then I get no listing for mobGUI. > > I have 1.2

Re: Bug [15118] native scroller

2015-04-14 Thread William Prothero
Richard: When I looked at the link you posted, the very last comment in the comments section had a question of whether the field really needed to be in a group. Elanor Buchanan answered that it was not necessary. Best, Bill > On Apr 14, 2015, at 9:23 AM, Richard Gaskin > wrote: > > J. Landman

Datagrid question

2015-04-15 Thread William Prothero
I’m trying to set up the dataGrid to put the cell contents in another field, for editing, when I click on it. Some of the cells may contain a fair amount of text, and I won’t be able to edit it in the cell itself. The tutorials refer to the revDataGridLibrary. Can’t find it. Or could the

Re: Datagrid question

2015-04-15 Thread William Prothero
Thanks! Worked like a charm. Now I suppose, to get it back in the data grid cell, it’s: local savedColumnINdex,savedRowIndex —saved from command that loaded the data from the cell into the field. on mouseUp put fld “editedCellContents” into myEditedData setDataOfIndex(savedRowIndex, s

Re: Datagrid question

2015-04-16 Thread William Prothero
t. But, it doesn’t update the cell data. There are no errors thrown, but obviously, I am missing something. Bill > On Apr 16, 2015, at 8:48 AM, Peter Haworth wrote: > > You need to dispatch or send the setDataOfIndex to the datagrid. > > Pete > lcSQL Software > On Apr 15,

Re: Datagrid question

2015-04-16 Thread William Prothero
Got it! Thanks! Bill > On Apr 16, 2015, at 10:53 AM, Peter Haworth wrote: > > RefreshIndex ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://li

Does Version 7.0.4 work with Xcode 6.3.1?

2015-04-24 Thread William Prothero
Anybody tried it? Bill William A. Prothero http://es.earthednet.org/ ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/l

Re: Can livecode do this?

2015-04-26 Thread William Prothero
I have 3 players playing sounds with a looping background in two players, to create a continuous background sound. It works very well. Now I’m wondering if the player that is dragged from the IDE palette is the AV Foundation player, or the old one that uses Quicktime. Do I have to do anything to

Re: Can livecode do this?

2015-04-26 Thread William Prothero
at the same > time, with independently adjustable volume. > > Best, > Bill > > William Prothero > http://es.earthednet.org > >> On Apr 25, 2015, at 8:29 AM, Earthednet-wp wrote: >> >> Thanks for the reply. I accidentally started downloading the update, but

struggling with player

2015-04-26 Thread William Prothero
Folks: I’m trying to make an audio player that has a background sound, then various sounds playing at specific times, with the background sound continuing. Playing both sounds at the same time works well. However, I can’t get the loudness to change and can’t get the loudness to change seamlessly

Re: struggling with player

2015-04-26 Thread William Prothero
and the stack losing focus? Thanks, Klaus, for your input. Best, Bill > On Apr 26, 2015, at 2:50 PM, Klaus major-k wrote: > > Hi Bill, > >> Am 26.04.2015 um 23:38 schrieb William Prothero : >> >> Folks: >> I’m trying to make an audio player that has a backg

Re: struggling with player

2015-04-26 Thread William Prothero
lot,. Thanks for the help. Bill > On Apr 26, 2015, at 4:43 PM, Klaus major-k wrote: > > Hi Bill, > >> Am 27.04.2015 um 00:04 schrieb William Prothero : >> >> Klaus: >> Yeah, just as I posted this, I noticed in the user guide that it was the >> playL

Re: struggling with player

2015-04-27 Thread William Prothero
Richard: It appears that I was confused. The lesson I referred to was using the newer AVFoundation player. So, I apologize if anybody was confused by it. Anyway, one of the reason that I was confused was that the lesson was so brief and there wasn’t enough information to make the lesson really u

Re: struggling with player

2015-04-27 Thread William Prothero
, like: mobilePlaySoundOnChannel commands? I don’t see this in the lessons, so I’m asking. So, I guess I’m asking if I have to use completely different commands when in mobile environment. The lesson doesn’t say it. Regards, Bill > On Apr 27, 2015, at 11:27 AM, William Prothero > wrote: > > Richard:

Re: struggling with player

2015-04-27 Thread William Prothero
> Regards, > Bill > > > > >> On Apr 27, 2015, at 11:27 AM, William Prothero >> wrote: > >> >> Richard: >> It appears that I was confused. The lesson I referred to was using the newer >> AVFoundation player. So, I apologize if anyb

Re: struggling with player

2015-04-27 Thread William Prothero
kin > wrote: > > William Prothero wrote: >> I’m going by the lesson at: >> http://lessons.runrev.com/m/4069/l/12353-how-do-i-play-sounds-on-an-ios-device >> >> <http://lessons.runrev.com/m/4069/l/12353-how-do-i-play-sounds-on-an-ios-device> >> to get

invalid entitlements

2015-04-27 Thread William Prothero
Folks: I’m trying to load my sound app onto an iPad to test it. I get the message “The executable was signed with invalid entitlements”. Another app I created and loaded, worked fine. I use the same provisioning profile. Where should I look to sort this out? Thanks for any advice. Regards, Bill

Re: invalid entitlements

2015-04-27 Thread William Prothero
Answered my own question. Bill https://developer.apple.com/library/ios/qa/qa1878/_index.html <https://developer.apple.com/library/ios/qa/qa1878/_index.html> > On Apr 27, 2015, at 5:12 PM, William Prothero wrote: > > Folks: > I’m trying to load my sound app onto an iPad to

mobileSound Files question

2015-04-28 Thread William Prothero
Folks: I have my 3 sound files playing fine on the iOS simulator. But, is it possible to get other file parameters like the play time, or set the location to start play? This is possible on desktop player, but I don’t see any commands for this in the dictionary. Or do I need to use one of Monte

Re: mobileSound Files question

2015-04-29 Thread William Prothero
Apr 28, 2015, at 5:12 PM, William Prothero wrote: > > Folks: > I have my 3 sound files playing fine on the iOS simulator. But, is it > possible to get other file parameters like the play time, or set the location > to start play? This is possible on desktop player, but I don’t s

Re: Substack vs. Library Stack

2015-04-29 Thread William Prothero
Scott: I use substacks as code libraries in a large project. The substack handlers are callable (without specifying the substack name) from any other substack and also from the main stack. It is like having a giant stack script. Of course, you have to “Start using mySubstack” to make the code av

Re: Substack vs. Library Stack

2015-04-29 Thread William Prothero
o you're already using a library, not a > substack. > > Pete > lcSQL Software <http://www.lcsql.com> > Home of lcStackBrowser <http://www.lcsql.com/lcstackbrowser.html> and > SQLiteAdmin <http://www.lcsql.com/sqliteadmin.html> > > On Wed, Apr 29, 2015

question re mobilePick

2015-04-30 Thread William Prothero
Folks: I am using mobilePick to select from a list of data, in iOS. I can’t seem to get the initialIndex to work. The API Dictionary says: initialIndex - The (1-based) index of the item to be initially highlighted. I was assuming that this was just the line number of the optionList, but since

Re: Substack vs. Library Stack

2015-04-30 Thread William Prothero
7;s nothing wrong with what you're doing but you can get the same > functionality by putting your "library " handlers in your mainstack script, > no need to start using it then. > > Pete > lcSQL Software > On Apr 29, 2015 3:30 PM, "William Prothero" wrote

Re: Displaying Web Pages in a Field

2015-05-01 Thread William Prothero
Gregory: Search for “browser” in the documents API, that you can find under the “Help” menu when in livecode IDE. It’s amazingly easy to set this up and you have a field that will render your web page the same as your browser (hopefully). I have used it to play YouTube movies, in addition to si

Re: LC7 arrayEncode/Decode

2015-05-02 Thread William Prothero
I found an oddity with arrayEncode and arrayDecode, When I saved an array to a file, first using arrayEncode(myArray), wrote it out as put arrayEncode(myArray) into theEncodedArray put theEncodedArray into URL(“binfile:”&myfile) and then read it back in using put URL(“binfile:”&myFile) into th

3 strategic questions I have re iOS development

2015-05-04 Thread William Prothero
Folks: I’ve been getting more and more into iOS development and need some direction. If you have input on any of the questions below, I’d appreciate it very much. I’d like to implement solutions that will last well into LC8. 1. Can iOS do audio recording, without Xtras? If not, is mergAV a good

Re: LC7 arrayEncode/Decode

2015-05-04 Thread William Prothero
integer. I did the fix and it worked fine. Still a bug? Seems it should still return the original array. Best, Bill > On May 3, 2015, at 2:39 PM, Richard Gaskin wrote: > > William Prothero wrote: > > > I found an oddity with arrayEncode and arrayDecode, When I saved an > >

Re: LC7 arrayEncode/Decode

2015-05-04 Thread William Prothero
Richard: By the way, the fix was to do: put myVal into myArray[“1”][“name”] instead of myArray[1][“name”] Bill > On May 4, 2015, at 11:43 AM, William Prothero wrote: > > Richard: > You may be right about inconsistent formatting in the array. > I started the array with: > put

Re: LC7 arrayEncode/Decode

2015-05-04 Thread William Prothero
ould still return the original array. > Best, > Bill > >> On May 3, 2015, at 2:39 PM, Richard Gaskin >> wrote: >> >> William Prothero wrote: >> >>> I found an oddity with arrayEncode and arrayDecode, When I saved an >>> array to a file

Re: 3 strategic questions I have re iOS development

2015-05-06 Thread William Prothero
, or addressed any of the other 2 issues listed below, please, please, jot a few impressions or directions. Best regards, Bill > On May 4, 2015, at 11:33 AM, William Prothero wrote: > > Folks: > I’ve been getting more and more into iOS development and need some direction. > If

Re: Strategy with Network and File I/O moving forwards

2015-05-06 Thread William Prothero
David: Thanks for addressing this. It looks like those trying to implement these protocols go through enough agony, and the need is strong enough so that a better support system is needed. Thanks again, Bill William A. Prothero http://es.earthednet.org/ > On May 6, 2015, at 1:42 AM, David Bovi

Re: 3 strategic questions I have re iOS development

2015-05-07 Thread William Prothero
Thanks, Mark: I suspect mergeMicrophone would not be maintained as well and Monte’s mergeAV, where he is actually paid. I don’t blame him. Probably it’s best if I just “bite the bullet” and fork over the $100 for mergeAV, for sound recording. Thanks for the info, Mark. It’s a big help! Bill >

Re: 3 strategic questions I have re iOS development

2015-05-07 Thread William Prothero
our apps frequently. We use > Gugliermo's library to accomplish the task. It's free and open and the > code is open. Monte's Dropbox external has the advantage of not being > blocking, so your app doesn't have to wait while you're accessing dropbox. > > On Wed, M

Re: 3 strategic questions I have re iOS development

2015-05-07 Thread William Prothero
Thanks, Mike. Bill > On May 7, 2015, at 10:09 AM, Mike Kerner wrote: > > Well, if you don't hear from him by tomorrow, let me know and I'll send you > the latest version. > > On Thu, May 7, 2015 at 12:14 PM, William Prothero > wrote: > >> Mike: >&g

Can I set up a delayed message queue?

2015-05-07 Thread William Prothero
Folks: I have several timed situations in my app. They run specific handlers in a set number of seconds. It looks to me like there can only be a single invocation of “send xyz in myDelay seconds” at a time. I’m thinking of setting up a queue to do this. I’m thinking of a handler that sends a me

Re: 3 strategic questions I have re iOS development

2015-05-07 Thread William Prothero
/phxDropboxLib.zip) ;) > > I'm sorry for the problem ... everything was caused by 'nth' problem on > "pancake" (... which I have definitively abandoned for a more reliable > provider!). > > Let me know if all is ok ;) > > Cordially, > > Guglielmo

Re: 3 strategic questions I have re iOS development

2015-05-07 Thread William Prothero
ch I have definitively abandoned for a more reliable > provider!). > > Let me know if all is ok ;) > > Cordially, > > Guglielmo > >> William Prothero <mailto:proth...@earthednet.org> >> 7 May 2015 18:14 pm >> Mike: >> Thanks for the info. I got to

Re: Can I set up a delayed message queue?

2015-05-07 Thread William Prothero
that causes a blocking action in LiveCode (such > as displaying the answer dialog), it's possible that a sent-in-time > message could get skipped, but for the most part, you should be able to > queue up several of the same message, each with its own id. > > Regards, > > Sc

Question on How to Distribute iOS apps for testing

2015-05-07 Thread William Prothero
Folks: I have an iOS app that I will probably never, at least for the near term, put into the Apple Store. I want to be able to distribute it to a few friends, though, without them having to load it on their using Xcode. I’ve been testing this on my own computer, trying to use iTunes, which I

Re: 3 strategic questions I have re iOS development

2015-05-07 Thread William Prothero
nload on the browser. > > I just tested with Opera, Firefox and Safari (I'm on OS X) and all do the > same ... they just download the file :/ > > I don't know what to say ... > > Guglielmo > >> William Prothero <mailto:proth...@earthednet.org> >&g

Re: Question on How to Distribute iOS apps for testing

2015-05-07 Thread William Prothero
tearing my hair out for the next app. Now on to real work. Best, Bill > On May 7, 2015, at 4:29 PM, William Prothero wrote: > > Folks: > I have an iOS app that I will probably never, at least for the near term, > put into the Apple Store. I want to be able to distrib

Re: Question on How to Distribute iOS apps for testing

2015-05-07 Thread William Prothero
onto iTunes, and sync their > device/s. > > Regards, > > Scott Rossi > Creative Director > Tactile Media, UX/UI Design > > > > > On 5/7/15, 4:29 PM, "William Prothero" wrote: > >> Folks: >> I have an iOS app that I will prob

Where does Mac store provisioning profiles

2015-05-09 Thread William Prothero
Folks: When I make a provisioning profile using the Mac Developers site, then download it. I double click it to get it incorporated into Xcode. Then, it shows up in the iOS settings. Unfortunately, I generated several of these with the same name and it is getting a bit cluttered. So, how can I d

Re: Where does Mac store provisioning profiles

2015-05-09 Thread William Prothero
Thanks Mark. Got it! Bill > On May 9, 2015, at 10:46 AM, Mark Waddingham wrote: > > On 2015-05-09 18:34, William Prothero wrote: >> Folks: >> When I make a provisioning profile using the Mac Developers site, then >> download it. I double click it to get it incorpora

Re: about Mark...

2015-05-09 Thread William Prothero
Colin: I agree! He’s helped me enormously by providing direction for learning new things Livecode can do. Best, Bill > On May 9, 2015, at 11:37 AM, Colin Holgate wrote: > > This is in no way a complaint! But I’m curious about how much Mark is posting > these days. Did he run out of things to d

Re: polling only on socket, or can there be a trigger?

2015-05-09 Thread William Prothero
Mark: I’ve been following this thread with interest. Thanks for the code. Now I’m wondering how I might use this capability. Can I set up a multi-user game using this? I must have to somehow get the user’s ip address. There are probably samples in the Livecode examples library and I’ll search ar

Trouble writing file to server

2015-05-09 Thread William Prothero
Folks: I can read a simple text file from my server, but can’t write to the server. My code is: on getTestData put "http://waterdetective.earthednet.org/rawmeterdata/testdata"; into xURL put URL xURL into myTestData --This works. put “http://waterdetective.earthednet.org/rawmeterdata/my

Helppppp-iOS Provisioning desperation

2015-05-14 Thread William Prothero
Folks: I post this only after hours struggling with trying to get Xcode to accept my provisioning profile for an app. I’ve deleted all signing certificates, deleted everything on the Apple Dev site and redone it, scrupulously followed the tutorial on the livecode site and checked docs. I simply

Re: Helppppp-iOS Provisioning desperation

2015-05-14 Thread William Prothero
Thanks for the hints. I’ll try them. Bill > On May 14, 2015, at 1:52 PM, Colin Holgate wrote: > > Something else that is easy to get wrong, if you revoke and create new > certificates, after you have made the provisioning profile you have to go > back and edit the profile to select the new cer

Re: Helppppp-iOS Provisioning desperation

2015-05-14 Thread William Prothero
ve Director > Tactile Media, UX/UI Design > > > > > On 5/14/15, 1:40 PM, "William Prothero" wrote: > >> Folks: >> I post this only after hours struggling with trying to get Xcode to >> accept my provisioning profile for an app. Iąve deleted all signin

Re: Helppppp-iOS Provisioning desperation

2015-05-15 Thread William Prothero
Colin and Scott: Thanks for all the suggestions! I must be making progress because now I get a different error message: “App Installation failed. A valid provisioning profile for this executable was not found.” In LiveCode, I’ve set the internal App ID: org.earthednet.waterdetective Display Name

Re: Helppppp-iOS Provisioning desperation

2015-05-15 Thread William Prothero
Dev site. Best, Bill > On May 14, 2015, at 1:40 PM, William Prothero wrote: > > Folks: > I post this only after hours struggling with trying to get Xcode to accept my > provisioning profile for an app. I’ve deleted all signing certificates, > deleted everything on the Apple D

Re: Helppppp-iOS Provisioning desperation

2015-05-15 Thread William Prothero
Scott and Colin: Thanks so much for your help on this. I was really desperate and you helped me focus on the critical issues. Best wishes. Bill > On May 15, 2015, at 12:41 PM, William Prothero > wrote: > > Whoopee! Got it working. What I had to do was syncronize Xcode to the &g

Re: Geometry Manager For Mobile

2015-05-17 Thread William Prothero
Monte: I don’t seem to be able to find a link to mApp. Could you post it? Best, Bill > On May 16, 2015, at 6:54 PM, Monte wrote: > > Yeah, actually it works fine on desktop too but the framework was originally > designed for mobile back when we had to script resolution independence. It's > pur

Re: LC-only 'POST' file upload code?

2015-05-22 Thread William Prothero
Phil: I have a script that posts successfully to PHP on a server. I use it to upload files and access mySQL databases. If you’re interested, I’ll scare it up. Best, Bill > On May 22, 2015, at 12:57 AM, Phil Davis wrote: > > Thanks Dave. I'll investigate. > Phil > > On 5/22/15 12:18 AM, Dave Cra

Re: Standalone Build Problem

2015-06-02 Thread William Prothero
Mike: I’ve searched around for the “DataGrid Templates” stack and can’t find it. For manual inclusion, I would need to add it to the “Stacks” panel in the standalones setting. Bill > On Jun 2, 2015, at 9:46 AM, Mike Bonner wrote: > > Yep, it won't find the inclusions, you need to pick and choo

Re: long overdue book update

2015-06-07 Thread William Prothero
Colin: That’s great! I’m in. Bill > On Jun 7, 2015, at 6:06 AM, Colin Holgate wrote: > > I worked for quite a few months on an update to the mobile development book I > wrote. I managed a few updates, but was constantly busy with work things, and > other commitment distractions. I asked anothe

Re: [OT] What the *&^#$!#$ Just Happened - SPAM

2015-06-09 Thread William Prothero
Jacqueline: Nomorobo looks great! Unfortunately, I have MagicJack (which I like a lot) and it isn’t included in the service. Bill > On Jun 9, 2015, at 12:00 PM, J. Landman Gay wrote: > > On 6/8/2015 2:34 PM, Scott Rossi wrote: >> After getting anywhere from 50 up to 250 spam messages a day, eve

Windows 8 Image pixellation

2015-07-07 Thread William Prothero
Folks: I have a desktop application that I’ve tested on MacOSX and Windows 7. I don’t have a copy of Windows 8 and before I do, I wonder if you could look at the two images and give me some hints about what might be going on in Windows 9. First, I see huge pixellation in the Windows 8 image. Sec

Re: Windows 8 Image pixellation

2015-07-07 Thread William Prothero
wrote: > > I JUST posted another Win 8 font issue... maybe it is related. What > version of LC are you using? > > SKIP > > On Tue, Jul 7, 2015 at 6:27 PM, William Prothero > wrote: > >> Folks: >> I have a desktop application that I’ve tested on Ma

OSX Standalone Question

2015-07-10 Thread William Prothero
Folks: Dumb question, but can’t find an answer anywhere. The OSX standalone settings has a box for “Signature” which is filled with by default. I assume this is my name that I use as a developer? TRUE? Then, to get a code signed version of the standalone app, I need to use AppWrapper 3? I

Code signing a standAlone App Confusion

2015-07-12 Thread William Prothero
Folks: Is there a “Tutorial for Dummies” that walks one through the process of creating and code-signing a Livecode stand-alone application? The Apple Developers website does this, but between XCode and the Developer’s web site, and downloading and uploading certificates and provisioning profile

Re: Code signing a standAlone App Confusion

2015-07-14 Thread William Prothero
Doublethanks, Bill > On Jul 12, 2015, at 2:06 PM, Scott Morrow > wrote: > > Trevor DeVore has a tutorial here: > > <http://revolution.screenstepslive.com/s/revolution/m/10695> > >> On Jul 10, 2015, at 8:54 PM, William Prothero >> wrote: >>

Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-16 Thread William Prothero
Folks: I have an application that is being used by a class of Earth Science students and get failure reports from two who use Windows 8. One lives in Australia and one lives in Japan. The app works fine on Macintosh. I’ve also tested it on my own installation of both Windows 8.1 and 7, 32 bit an

Re: Improving "Bug Reports" feature of standalones

2015-07-17 Thread William Prothero
Tom: I second that. Without this info, the bug report is pretty useless to me. I assume all bugs are caused by my code, and may be platform dependent, so this info is critical. Bill > On Jul 17, 2015, at 8:23 AM, tbodine wrote: > > Hi all. > > I use the built-in "Bug Reports" feature of the s

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-17 Thread William Prothero
improvement. Best regards, Bill Prothero William A. Prothero, Ph.D. University of California, Santa Barbara Dept. of Earth Sciences (Emeritus) Santa Barbara, CA. 93105 http://es.earthednet.org/ my new project link <http://earthednet.org/ptExplorer/Cover.html> > On Jul 16, 2015, at 2:07 PM

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-18 Thread William Prothero
g, and help with any code. It is a subject > that I am very interested in. Great work! > > On 17 July 2015 at 21:48, William Prothero wrote: > >> PS: >> The app I am developing is targeted at high school and college >> introductory Earth Science classes and is focusse

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-19 Thread William Prothero
Mark: Thanks for looking at the app. Instructions: 1. launch app 2. Click on “Begin” button with option key down. 3. At Welcome screen, click on “Go To Map” button 4. At Map screen, select “Quakes” form the dropdown labeled “Select data to be plotted” 5. Click on “Save Map Image” (optional) 6. C

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-19 Thread William Prothero
ter.com/xtalkprogrammer > KvK: 50277553 > > Installer Maker for LiveCode: > http://qery.us/468 > > Buy my new book "Programming LiveCode for the Real Beginner" > http://qery.us/3fi > > LiveCode on Facebook: > https://www.facebook.com/groups/runr

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-19 Thread William Prothero
lk.com > Twitter: http://twitter.com/xtalkprogrammer > KvK: 50277553 > > Installer Maker for LiveCode: > http://qery.us/468 > > Buy my new book "Programming LiveCode for the Real Beginner" > http://qery.us/3fi > > LiveCode on Facebook: > https://www.facebook.com/

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-07-19 Thread William Prothero
> > Installer Maker for LiveCode: > http://qery.us/468 > > Buy my new book "Programming LiveCode for the Real Beginner" > http://qery.us/3fi > > LiveCode on Facebook: > https://www.facebook.com/groups/runrev/ > > On 7/20/2015 00:43, William Proth

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-08-03 Thread William Prothero
t; > If it’s the “of” option then switching to the “from” option may fix the > problem your students are seeing. > > Just a thought. > > Paul > > >> On Jul 16, 2015, at 14:07, William Prothero wrote: >> >> Folks: >> I have an application that is being

mobile loader app

2015-08-04 Thread William Prothero
Darn: I marked this email, went on a road trip for 2 weeks, and then lost the link. Someone, a couple of weeks ago, posted a link to an app that directly loads an app to iOS without going through xCode. Could someone re-post that link? I’d much appreciate it. Regards, Bill William A. Prothero

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-08-04 Thread William Prothero
e > test above again. > > Paul > > >> On Aug 3, 2015, at 16:22, William Prothero wrote: >> >> Paul: >> Thanks for the hint. I do use the newer “from” syntax. >> export snapshot from rect snapRect to image "mapSnap" >> >> Thank

Re: mobile loader app

2015-08-04 Thread William Prothero
Roger: Thanks! That’s it. Bill > On Aug 4, 2015, at 12:32 PM, Roger Eller wrote: > > On Tue, Aug 4, 2015 at 2:52 PM, William Prothero > wrote: > >> Darn: I marked this email, went on a road trip for 2 weeks, and then lost >> the link. >> Someone, a couple of w

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-08-06 Thread William Prothero
may cure the problem. > > eg. export snapshot from group “mapAndData” to image “mapSnap” — then try the > test above again. > > Paul > > >> On Aug 3, 2015, at 16:22, William Prothero wrote: >> >> Paul: >> Thanks for the hint. I do use the newer “fro

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-08-06 Thread William Prothero
benefit, I have to set pixels per inch somehow, in theMetadataArray. Best, Bill > On Aug 6, 2015, at 10:57 AM, William Prothero wrote: > > Paul: > FYI, I set up a test stack to figure out how to use the “from object” method > of getting a snapshot image. Here’s the steps I followe

Sending a POST string

2015-08-07 Thread William Prothero
For Roger Eller: Here is what I use. I post to a php script. I’ll share the php, but it should work for livecode servers too. If anybody wants the scripts, contact me off the list. Best, Bill --The data are returned in an array. -- dRet[i][columnName] holds the value of the data for a particula

Re: Odd behavior in Win8-I'm stuck fixing it, Help??

2015-08-09 Thread William Prothero
ww.dropbox.com/s/xkx2fk4a2mel6l3/Export%20High%20Res%20Image.livecode?dl=0 > > I hope this helps resolve the problem. > > Regards, > > Paul > > >> On Aug 6, 2015, at 11:00, William Prothero wrote: >> >> Paul: One more thing. My test uses a variable “

Re: Choosing a database and LC tools

2015-08-10 Thread William Prothero
Tom: I use Navicat to manage my databases. It will access a variety of online databases, and works with SQLite too. I use it all the time. In my app work, I use livecode with POST commands to php that talks to an online mySQL database. PHP is totally robust and won’t fail on you, and it’s built

Re: Choosing a database and LC tools

2015-08-11 Thread William Prothero
Tom and Peter: Here is a link to a working stack, that includes the php scripts, so you can see what’s involved. https://www.dropbox.com/s/zeldbpafcnno3x5/Db Access.zip?dl=0 This link won’t last forever, so I’ll plan on keeping it

Re: Choosing a database and LC tools

2015-08-11 Thread William Prothero
the commands. I will implement this at some time soon, but don’t have it now. Glad to share when I get it done. Best, Bill > On Aug 11, 2015, at 11:54 AM, William Prothero > wrote: > > Tom and Peter: > Here is a link to a working stack, that includes the php scripts, so you ca

Re: Describing LiveCode

2015-08-11 Thread William Prothero
Richmond: I have had pretty much the same history as you, but started with punch cards on a mainframe less powerful than my thermostat. But, perhaps if you break it down like the kinds of knowledge that a programmer needs: 1. the flow and logic of a program (which applies to all platforms) 2. o

Re: Business Application Framework

2015-08-12 Thread William Prothero
"But if there's anything in recent discussions on which there's anything close to unanimity, whether from ol' timers or newcomers, whether from open source developers or proprietary entrepreneurs, it's that maintaining feature parity between Community and Commercial as close as practical is impo

Re: Business Application Framework

2015-08-13 Thread William Prothero
+2 Very important. Bill > On Aug 13, 2015, at 11:33 AM, Richmond wrote: > > +1 >> Hi all, >> >> Kevin mentioned in his orignal mail: >> … and a PDF Viewer. >> >> Please, please, please also give this one to „the masses“! >> We’ve been waiting for this for ages. >> >> >> Best >> >> Klaus >>

<    1   2   3   4   5   6   7   8   9   >