Re: External files in Standalones

2014-11-27 Thread William Prothero
ion builder >> oddities, and apple store complexities were posted. The Livecode tutorials >> are laughably brief and un-informative, and I've googled to no avail. >> >> Any directions or links would be most welcome. >> Best, >> Bill >> >> William

Re: External files in Standalones

2014-11-27 Thread William Prothero
store complexities were posted. The Livecode tutorials >> are laughably brief and un-informative, and I've googled to no avail. >> >> Any directions or links would be most welcome. >> Best, >> Bill >> >> William Prothero >> http://es.earthednet.or

Re: External files in Standalones

2014-11-28 Thread William Prothero
gards, Bill On Nov 27, 2014, at 2:58 PM, William Prothero wrote: > Marty: > Where do you put the folders that contain external binary and image data? The > App Wrapper somehow loses the path to them. The standalone that Livecode > creates finds these files, but App Wrapper someho

Re: External files in Standalones

2014-11-28 Thread William Prothero
>>>> One of the problems I've run into is the application builder changes the >>>> file structure and images that I have linked to controls lose their links >>>> when a standalone is built. But in general, It would be really useful if >>>> th

Re: External files in Standalones

2014-11-28 Thread William Prothero
er. I’m missing something, probably so trivial that nobody thinks to tell me. Bill On Nov 28, 2014, at 9:40 AM, William Prothero wrote: > Marty: > Is this what the folder structure looks like when you are developing the App? > Perhaps this is where I’m going wrong. Do I need to u

Re: External files in Standalones

2014-11-28 Thread William Prothero
Marty: Thanks so much for your patience and help. I wasn’t worried about finding stacks because all of my project stacks are substacks. But, this situation will occur, I know. The buy site is very useful. I think I have it now. Best, Bill On Nov 28, 2014, at 10:07 AM, Marty Knapp wrote: > No t

Re: [OT] baby

2014-12-01 Thread William Prothero
FYI: I have just submitted bug report 14130. It concerns a crash when plotting small symbol images onto a larger image. The application works fine in LC V7.0.0, but crashes in V7.0.1 (rc2). Perhaps a memory issue because the same code works fine with less than 2000 images, but crashes for more t

Bug reported for crashing LC V7.0.1(rc2)

2014-12-01 Thread William Prothero
FYI: (Sorry, wrong subject left in email) Congrats on the baby, tho. I have just submitted bug report 14130. It concerns a crash when plotting small symbol images onto a larger image. The application works fine in LC V7.0.0, but crashes in V7.0.1 (rc2). Perhaps a memory issue because the same c

How to open a second window w/o disturbing calling stack.

2014-12-02 Thread William Prothero
Folks: I want to open a second window in my app. The window in the calling stack is the first card of a substack named “myCallingSubstack”. I want to go to the first card of a substack named “mySubstack”. When I do go to stack “mySubstack”, the new windows sits behind the calling “myCallingSub

Re: How to open a second window w/o disturbing calling stack.

2014-12-03 Thread William Prothero
; > I'll send you my tiny experimental stack off-list if it would help. > > Cheers > > Graham > > >> On 3 Dec 2014, at 04:01, William Prothero wrote: >> >> Folks: >> I want to open a second window in my app. The window in the calling stack is

Crash in V7.0.1 (rc2) fixed in (rc3)

2014-12-03 Thread William Prothero
Whoopee, the crash I was seeing in V7.0.1(rc2) disappeared in rc3. Thanks, LC team! Best, Bill William A. Prothero http://es.earthednet.org/ ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe an

Delete and object from script within the object?

2014-12-03 Thread William Prothero
Folks: I’m trying to delete an image from a script within that image LC doesn’t like that because the script in the object hasn’t finished yet. —the image script is: on mouseUp put the name of me into myImage deleteTheImage myImage" end mouseUp —In the stack script on deleteTheImage image

Re: How to open a second window w/o disturbing calling stack

2014-12-03 Thread William Prothero
Hugh: Thanks. I just wanted a second normal window. But, it does work correctly. Don’t know why my test version messed up, but when I came in in the morning, all was working. Best, Bill On Dec 3, 2014, at 12:58 PM, FlexibleLearning.com wrote: > Lock messages > Go cd 1 of stack "mySubStack" as

Re: Delete and object from script within the object?

2014-12-03 Thread William Prothero
Great! Thanks Bjornke! Bo;; On Dec 3, 2014, at 2:10 PM, Björnke von Gierke wrote: > send "deleteTheImage" && myImage to this stack in 0 seconds > > On 03 Dec 2014, at 22:57, William Prothero wrote: > >> Folks: >> I’m trying to delete an image f

Re: How to open a second window w/o disturbing calling stack.

2014-12-04 Thread William Prothero
Bob: that makes good sense. Unfortunately, I’ve done a lot of work with V7 and so far it hasn’t let me down, especially after the last 3 releases of 7.0.1 have fixed a couple of problems I had. Fortunately, I had quite a bit of lead time for my application, but now I’ve got to get a beta out by

Inhibit messages to back window

2014-12-05 Thread William Prothero
Hi. My app has 2 windows open during some operations. But, when I move the mouse over the window behind (if it isn’t hidden or positioned exactly behind, it still gets mouse messages if the mouse is moved over it. I would like to have only the front window get messages. Then, when the window tha

Re: Inhibit messages to back window

2014-12-05 Thread William Prothero
Never mind. I solved this by testing the offending script in the back window to see if the topstack was the name of that stack. Worked fine. Bill On Dec 5, 2014, at 10:19 PM, William Prothero wrote: > Hi. My app has 2 windows open during some operations. But, when I move the > mouse ov

LC's standalone Maker

2014-12-06 Thread William Prothero
Folks: Sorry for this long email. I hope that someone who has submitted apps to the Apple store, with success, will give me a bit of help, as I’ve searched the help files and tutorials and I haven’t found anything about the details of using non-livecode files in an application. The description

Re: LC's standalone Maker

2014-12-06 Thread William Prothero
Jacqueline and Trevor: Thank you, thank you for the info. BTW, I did manually delete all of the empty folders and my app still found the data files. BUT, I had already programmed the file system to look in the new place. BUT, I also haven’t tried to do an iOS app yet, so probably best not to del

How to Quit with a button

2014-12-07 Thread William Prothero
Folks: I don’t know if this is needed anyway, but I have a button on one of my screens whose intention is to quit the application. The code is; on mouseUp send “quit” to me in 0 seconds end mouseUp This crashes the application. The menu that the standalone creates, in the menu bar also

Re: How to Quit with a button

2014-12-07 Thread William Prothero
Colin: I did try that and it crashed the app too. That’s why I tried to delay the quit until it got through doing the mouseDown handler. Bill On Dec 7, 2014, at 3:25 PM, Colin Holgate wrote: > Try this instead: > > on mouseup >quit > end mouseup > >

Tab buttons wrong

2014-12-07 Thread William Prothero
Folks: On a Mac, when there are tabs, the active tab is hilited and the inactive tabs are greyed out. I’ve seen postings on this previously and figured the situation was fixed. But, not so in LC V7.0.1(rc3) on Mavericks. This seems to be a bug that should be fixed. It’s simply backwards from wha

Re: Tab buttons wrong

2014-12-07 Thread William Prothero
report? Best, Bill On Dec 7, 2014, at 4:14 PM, William Prothero wrote: > Folks: > On a Mac, when there are tabs, the active tab is hilited and the inactive > tabs are greyed out. I’ve seen postings on this previously and figured the > situation was fixed. But, not so in LC V7.0.1(rc3)

Re: How to Quit with a button

2014-12-07 Thread William Prothero
Colin: I tried closing the browser window (on the card where I had the quit button) and it still crashes. BUT, I did a test stack, made a standalone, and the quit button works. Hm. Wonder what it could be. My application stack is pretty big and complex, but ….. I don’t think any handlers are

Re: How to Quit with a button

2014-12-08 Thread William Prothero
Ray and Jim: Tnx for the suggestions. Tried both. I did lock messages prior to the quit statement. I couldn’t get the toolbar menu to fire on quit. The menu is “PT_Explorer” and the item I want is “Quit PT_Explorer”. So I did domenu “Quit PT_Explorer” of menu “PT_Explorer” I got no response fro

Re: How to Quit with a button

2014-12-08 Thread William Prothero
complex for me to worry about at this stage, so unless there are other bright ideas about what might be happening, I’m going to remove the quit button. Best, Bill On Dec 8, 2014, at 1:13 PM, Richard Gaskin wrote: > William Prothero wrote: > >> I got no response from the doMenu command,

Re: How to Quit with a button

2014-12-08 Thread William Prothero
: > William Prothero wrote: > > > I’ve tried a number of things to get my app to shut down without > > crashing the app. I know it must be possible because the toolbar > > menu quits fine. I may just stop trying to use a script to quit. > > It’s not essential sin

Re: Tab buttons wrong

2014-12-09 Thread William Prothero
Livecode follows the way Apple does it now. Regards, Bill On Dec 7, 2014, at 9:11 PM, William Prothero wrote: > BTW, the tab buttons I’m talking about are on the tabbed button control. I > know there was discussion about the color of the text on the buttons, but > this seems like a big

Re: How to Quit with a button

2014-12-09 Thread William Prothero
mainstack first too? Bill On Dec 9, 2014, at 6:59 AM, Richard Gaskin wrote: > William Prothero wrote: > > > On Dec 8, 2014, at 2:10 PM, Richard Gaskin wrote: > >> Interesting. Any pending messages at the time quit is invoked? > > > > I tried doing “Lock messa

Re: How to Quit with a button

2014-12-09 Thread William Prothero
> wrote: >> William Prothero wrote: >> >>> On Dec 8, 2014, at 2:10 PM, Richard Gaskin wrote: >> >> For an app to successfully quit two conditions must be met: >> 1. All stacks are closed >> 2. All pending messages either complete or are canc

Re: How to Quit with a button

2014-12-09 Thread William Prothero
Jim, Great idea! There are s many ways to do things in LC. Bill On Dec 8, 2014, at 1:58 PM, Jim Lambert wrote: > I suggested doMenu because Bill said selecting Quit from the menu worked > while a button with ‘quit’ didn’t. > > But he reports that doesn’t work for him either, so perhaps doM

Re: Tab buttons wrong

2014-12-09 Thread William Prothero
It’s very interesting because Safari, Firefox, Excell, most Mac applications have lighter colored tabs for the active tab. The tabs in the Systems Preferences work so the darker tab is the active one. Seems, with Safari at least, Apple is inconsistent. Bill On Dec 9, 2014, at 10:11 AM, Terence

Re: Tab buttons wrong

2014-12-10 Thread William Prothero
t; > Tab controls in Xojo work as above. > > Tab controls in the Date & Time System Preferences work as above. > > Apple appear to be consistent to me. > > > > All the best > > Terry > > > > >> On 10 Dec 2014, at 06:01, William Prother

Re: [ANN] homemade slider

2014-12-11 Thread William Prothero
Looks very useful. Thanks! Bill On Dec 11, 2014, at 12:01 PM, J. Landman Gay wrote: > On 12/11/2014, 3:54 AM, BNig wrote: >> Here is a new version of homemade slider as promised >> version 0_8 >> >> optionally switch behavior when clicking into back of slider >> either "switch mode" moving thum

Wondering about the bug reports in Standalone

2014-12-23 Thread William Prothero
Folks: I’m just now beta testing my application and love the bug report system that the Standalone Maker automatically includes. I’m wondering what the restrictions are in this. Does it require the local user to have email set up? This app will be used in a lab setting by a variety of students,

Re: Wondering about the bug reports in Standalone

2014-12-24 Thread William Prothero
, 2014, at 6:06 PM, J. Landman Gay wrote: > On 12/23/2014 3:59 PM, William Prothero wrote: >> Folks: I’m just now beta testing my application and love the bug >> report system that the Standalone Maker automatically includes. I’m >> wondering what the restrictions are in this

Re: [ANN] New Version of the MasterLibrary is available

2015-01-05 Thread William Prothero
Michael: This looks very interesting and it should be useful when casting around for code when the lc function names and properties don’t seem obvious. Thanks! Bill > On Jan 5, 2015, at 11:52 AM, Michael Doub wrote: > > I just made available the latest version of the MasterLibrary. I added a

Flash in LC Browser window, in Windows?

2015-01-06 Thread William Prothero
Folks: I play a youTube video in a browser window, which works fine on my Mac OSX10.10.1. However, when I try to play the same video in Windows 7 (64 bit), I get a black window that says: Adobe Flash Player or an HTML5 supported browser is required for video playback. Get the latest Flash Player

Youtube video in LC browser window?

2015-01-06 Thread William Prothero
Folks: I’m testing a LC app I developed on a Macintosh, on a PC, Windows 7, 32 bit, LC7.0.1, release version. I’m having a problem with the browser window. I put my help files online and one of them includes a youTube video in Flash format. The video plays at half size. I don’t know if this is a

Playing Flash Video crashes revbrowserCEF

2015-01-07 Thread William Prothero
Folks: I’m trying to play a YouTube move in the rev browser. I use revBrowserOpenCEF. The code is: on openBrowser put the windowID of this stack into tWinID put revBrowserOpenCEF(tWinID,"http://earthednet.org/ptExplorer/Cover.html";) into sBrowserID revBrowserSet sBrowserID,"showborder"

Snapshot working poorly in Windows, crappy results

2015-01-07 Thread William Prothero
Folks: As I go on my journey of getting my OS X app in livecode working on Windows, I am coming across some really crappy behavior. I’m using livecode 7.0.1. The latest on is: snapshot give terrible results. Here is a link to before and after images. The top one is the snapshot and the lower one

Re: Playing Flash Video crashes revbrowserCEF

2015-01-07 Thread William Prothero
Folks: Looks like, for now, my only option is to store the movie as an mp4 and put it on some server that supports that format. I didn’t want to serve all of that video on my server, but I may have to. Regards, Bill > On Jan 7, 2015, at 12:49 PM, William Prothero wrote: > > Fol

Re: Snapshot working poorly in Windows, crappy results

2015-01-07 Thread William Prothero
Colin; On second thought, I think this is a bug, or at least an incomplete implementation of the snapshot command. The snapshot should look like the image that it’s capturing, when displayed on the same monitor and system. After all, the screen gamma would affect the displayed and captured image

Re: Snapshot working poorly in Windows, crappy results

2015-01-07 Thread William Prothero
Colin; On second thought, I think this is a bug, or at least an incomplete implementation of the snapshot command. The snapshot should look like the image that it’s capturing, when displayed on the same monitor and system. After all, the screen gamma would affect the displayed and captured image

Re: Snapshot working poorly in Windows, crappy results

2015-01-07 Thread William Prothero
Peter: I tried that and it made no difference. Since I’m not exporting it to a file, but to another image, I wouldn’t expect it to. Best, Bill > On Jan 7, 2015, at 3:45 PM, Peter Haworth wrote: > > On Wed, Jan 7, 2015 at 2:51 PM, William Prothero > wrote: > >> expo

Re: Snapshot working poorly in Windows, crappy results

2015-01-07 Thread William Prothero
ct things: > > To force LiveCode to re-decompress a PNG image without leaving the card, put > the image into itself: > > set the screenGamma to 2.2 > put image “Test PNG” into image “Test PNG” > > >> On Jan 7, 2015, at 8:37 PM, William Prothero wrote: >&

Bugs reports for several issues

2015-01-08 Thread William Prothero
FYI: I’ve posted several bug reports on the system. bug 14351 —problems with Flash videos in the CEF browser implementation bug 14353 —problems with snapshot in windows 7, 32 bit systems bug 14354 —example of a stack that crashes the 7.0.1 IDE in OS X I hope this will help the dev team. The ine

Re: 64 bit?

2015-01-11 Thread William Prothero
Tom: Just checked my Windows 7 (64bit) installation and 7.0.1 is also in the 32 bit programs folder. Tnx, Bill > On Jan 11, 2015, at 10:20 AM, tbodine wrote: > > Hi Bill. > I have several versions of LC installed on a Win 7 64-bit PC (the latest > being LC 6.7.1 rc3) and all of them installed t

Crash when revCloseBrowser

2015-01-11 Thread William Prothero
Folks: Is anybody using the browser window in Windows? I get a crash on revBrowserClose, in a standalone. It works in the IDE. The browser opens and loads the web page, a simple text page then crashes the app when I close it. I’m on Windows 7, 64 bit, Livecode 7.0.1, using Parallels 10 on Yosemi

Re: Crash when revCloseBrowser

2015-01-12 Thread William Prothero
Folks: After messing with this all day, I now know that it’s not the browser that’s crashing my app. My app works fine in IDE, but crashes in standalone, on the PC. So, I’ve got more work to do to ferret out the problem. The last time I had this kind of problem, I submitted the entire app to th

Odd crash with 7.0.1 and 6.7.2(rc1)

2015-01-13 Thread William Prothero
Folks: I’m seeing a crash in both version 6.7.2(rc1) and 7.0.1 in my application. It only happens with a standalone in Windows. I’m running windows 7 64 bit in parallels 10, Yosemite on the Mac. The place where it causes the crash is in the following code, where the formatted width and formatted

Re: Odd crash with 7.0.1 and 6.7.2(rc1)

2015-01-13 Thread William Prothero
Mark: I still get the crash in both cases. Bummer. So it doesn’t appear to be a timing problem. Bill > On Jan 13, 2015, at 1:17 PM, Mark Talluto wrote: > > > On Jan 13, 2015, at 12:58 PM, William Prothero > wrote: > >> Folks: >> I’m seeing a crash in both vers

Re: Odd crash with 7.0.1 and 6.7.2(rc1)

2015-01-13 Thread William Prothero
Never mind!! Looks like a found the problem. It was me. I found it when I was entering a bug report and typed “it’s as if the image is not being loaded.” Bingo!! The paths are slightly different on Mac and PC standAlones. Best, Bill > On Jan 13, 2015, at 2:14 PM, William Prothero wr

Re: Odd crash with 7.0.1 and 6.7.2(rc1)

2015-01-13 Thread William Prothero
On Jan 13, 2015, at 4:47 PM, Dr. Hawkins wrote: > > On Tue, Jan 13, 2015 at 4:17 PM, William Prothero > wrote: > >> Never mind!! Looks like a found the problem. It was me. I found it when I >> was entering a bug report and typed “it’s as if the image is not being >>

Re: Script to Generate Concurrent Times

2015-01-15 Thread William Prothero
That is hilarious, in a gruesome way. Bill > On Jan 15, 2015, at 8:10 PM, Simon wrote: > > Then there is this; > https://www.youtube.com/watch?v=-5wpm-gesOY > > Simon > > > > -- > View this message in context: > http://runtime-revolution.278305.n4.nabble.com/Script-to-Generate-Concurrent-Tim

What icon editor do you use?

2015-01-16 Thread William Prothero
Folks: I’m at a place where I need to make icons for my App. There are a lot of icon editors and it seems some are not updated (for windows) to make the larger size icons Win 7 and 8 want. I note an app named Iconian and Sketch, which is free, has a nice export plugin for Mac icons. That’s good

App wrapper and error messages

2015-01-17 Thread William Prothero
Folks: I’m using App Wrapper to set up my App for the app store. I get 2 error messages: 1. This App is not being sandboxed. 2. Unable to fix framework “Chromium Embedded Framework.framework”. In this case, the report screen indicates “broken bundle”. I’m not sure how to sandbox my app. Also, I

Re: App wrapper and error messages

2015-01-17 Thread William Prothero
BTW, I’m on OSX Yosemite and LiveCode V7.0.2(rc1) Bill > On Jan 17, 2015, at 9:57 AM, William Prothero wrote: > > Folks: > I’m using App Wrapper to set up my App for the app store. I get 2 error > messages: > 1. This App is not being sandboxed. > 2. Unable to fix framewo

Re: Storing and saving a setting in a stand alone

2015-01-17 Thread William Prothero
It wouldn’t occur to me to save data within the executable code (UI) area. For my purposes, I’d only save data in a separate file, mysql light db, or online mysql db. Apple has a folder in the Library folder called “Application Support”. That’s where I put preferences, licenses, and stuff that d

Re: App wrapper and error messages

2015-01-17 Thread William Prothero
Andy: Tnx for the links. B, they refer to version 2.5 and I have version 3, which I would have thought fixed this by now. I’ve got a query into the developer, so I’ll see what happens. Best, Bill > On Jan 17, 2015, at 10:36 AM, AndyP wrote: > > Hi Bill, there was a problem with AppWrap

App Wrapper with CEF Browser file

2015-01-19 Thread William Prothero
Folks: I’m just wondering if anybody has used App Wrapper 3 with the CEF browser library module. App Wrapper complains that it is not code signed. Yosemite, LC7.0.1 and beyond. Could this be a bug? Sam Rowlands, the App Wrapper author complains that LiveCode users are causing him 90% of the pro

Advice on free app and user security

2015-01-19 Thread William Prothero
Folks: I have been working on an educational app that I’m going to give away for free. I think of it as ROI for all the money I’ve gotten in NSF grants over the years. But, since I’m giving this away for free, I’d like to make sure my investment is being used and how much. I feel that, at least

Re: Advice on free app and user security

2015-01-19 Thread William Prothero
Thanks for the interesting comments. One thing I like to do is have a configuration file on a db on my server, so I can set specific parameters without the need to update the app. My current app accesses help files using the revBrowser and links to my html help (on my server) and a youtube dem

Posting to php problem

2015-01-22 Thread William Prothero
Folks: This simple code inexplicably stopped working. LC 7.0.1 and 7.0.2 (rc1), Yosemite on Mac. I’m setting up my mySQL database code and accessing the db’s thru php. This code worked at first, then after I did a bit of changing, it stopped. Reverting to the initial working code didn’t work.

Re: Posting to php problem

2015-01-22 Thread William Prothero
Dang! Just solved it. The syntax for getting the $_POST variable in php is: $_POST[“fullame”] the underscore was the problem. Regards, Bill > On Jan 22, 2015, at 9:33 AM, William Prothero wrote: > > Folks: > This simple code inexplicably stopped working. LC 7.0.1 and 7.0.2 (rc1), &

Re: Posting to php problem

2015-01-22 Thread William Prothero
ia has > been having problems with it in his Facebook lib - perhaps he has a workround? > > Gerry > > Sent from my iPhone > >> On 23 Jan 2015, at 4:33 am, William Prothero wrote: >> >> httpHeaders > > ___ >

Re: Refactoring

2015-01-29 Thread William Prothero
Nice, but personally, I value clarity much more than I do brevity. Re-factoring is much, much more than brevity of code. When I work, I generally code, it’s spaghetti, then I re-write it. The more i re-write for simple, predictable functionality for each method, the easier it is to debug and cha

Re: Mobile cloud storage

2015-02-03 Thread William Prothero
I’d love to hear about this too. Bill > On Feb 3, 2015, at 3:03 PM, Richard Gaskin wrote: > > So most folks have either iCloud, Goggle Drive, Dropbox, or OwnCloud, and > using those sure beats building a complex storage backend for simple apps. > > Does our community have yet a library for all

Re: Troubles with inequality

2015-02-04 Thread William Prothero
Colin: But: I don’t see this. Say your target accuracy is six figures. You would us: put round(myNum1,6) into num1 put round(myNum2,6) into num2 So, for example, 3.1234569 would round to 3.123457 3.1234563 would round to 3.123456, which would be unequal, but 3.1234567 would round up to 3.123457 an

[gig] need help with web video

2015-02-04 Thread William Prothero
Paolo: It works on Windows. Haven’t tested in on Mac, again, because I just used the older implementation on Mac. I’ll test. An existing problem, tho is the fact that Apple won’t accept it in the store because the bundle is broken, according the App Wrapper 3. Bill William A. Prothero http://e

Question re project organization

2015-02-04 Thread William Prothero
Folks: I’d like some advice on project organization as I take my app to the next step. I am creating a standalone that will work on Mac and Windows, possibly future modification to mobile, but not for now. I have a basic app where the use can access information about the Earth, and want to the

Re: Question re project organization

2015-02-05 Thread William Prothero
Never mind! There’s lots happening on the list re this. I expect the splash app model is the way to go. I’ll have to do some testing and re-organizing to develop more specific questions. Regards, Bill > On Feb 4, 2015, at 3:39 PM, William Prothero wrote: > > Folks: > I’d like so

Re: Question re project organization

2015-02-06 Thread William Prothero
content downloads? I guess I should spend some time going over Apple’s documentation on this. Best, Bill > On Feb 6, 2015, at 3:57 PM, Kay C Lan wrote: > > On Fri, Feb 6, 2015 at 3:40 AM, William Prothero > wrote: > >> I expect the splash app model is the way to go.

Re: [not quite OT] Serving a standalone

2015-02-08 Thread William Prothero
Graham, I think that you should think in terms of “licenses” rather than apps downloaded when trying to enforce limits. Education, nowadays is less centralized and students want to be able to access resources from multiple places. School, home, mobile phones, tablets. Then, if there is too much

Re: [not quite OT] Serving a standalone

2015-02-08 Thread William Prothero
previously. Just wondering. Best, Bill > On Feb 8, 2015, at 1:59 PM, Richard Gaskin wrote: > > William Prothero wrote: > > > Hopefully the coming HTML5 export will make it easier to integrate > > Livecode apps into a web delivery. The main advantage of this is > > the

Re: [not quite OT] Serving a standalone

2015-02-08 Thread William Prothero
? Or…. Bill > On Feb 8, 2015, at 2:28 PM, William Prothero wrote: > > Richard: > This sounds like a great way to go! > > I think I’m getting that the “Splash” app downloads the executables and > whatever media is needed, and then these are erased at the end of the > s

Re: [not quite OT] Serving a standalone

2015-02-08 Thread William Prothero
Richard: This sounds very attractive. I hadn’t thought of just opening the app directly from the server and running it in memory. Thanks for the encouragement. I think it’s a good idea. Best, Bill > On Feb 8, 2015, at 3:21 PM, Richard Gaskin wrote: > > William Prothero wrote: >

Re: [not quite OT] Serving a standalone

2015-02-08 Thread William Prothero
Richard and Kay: Thanks for the stimulating thoughts. Each of your arguments are very persuasive. And it seems that the most important thing is where you decide to start. If you focus is on mobile, Kay’s approach is the most sensible. I like Richard’s for desktop, but would expect to have to mo

Re: Question re project organization

2015-02-08 Thread William Prothero
Great news! Thanks for the heads up, Kay. Bill > On Feb 8, 2015, at 4:23 PM, Kay C Lan wrote: > > On Sat, Feb 7, 2015 at 11:16 PM, Earthednet-wp > wrote: > >> Videos are important and I'm thinking more of streaming them, probably >> from YouTube, rather than downloading them. Of course, there'

Re: Rev 5.5.5 question

2015-02-09 Thread William Prothero
FYI: One problem I had running a 32 bit LC project on 64 bit windows happened when I tried to open a Flash movie in the rev browser window. But the CEF browser did it fine. Bill > On Feb 9, 2015, at 10:26 AM, Dave Kilroy wrote: > > Hi Charles, Rev 5.5.5 will build 32 bit software (indeed Rev i

Re: [not quite OT] Serving a standalone

2015-02-09 Thread William Prothero
Kay: Thanks for the ideas! The plan you suggest sounds quite good and it looks like I can probably accommodate both desktop and iOS. I’m a retired prof who did a LOT of coding for my classes, and now I have no ambition to develop a real business, not that I would turn down income that wouldn’t r

Re: The Future of Animation in LiveCode

2015-02-09 Thread William Prothero
A physics engine would help a lot, in this regard. Many of the “angry bird” type 2D games are made in Corona, which has physics from the get-go. I think that may be in the far future for LC. The whiteboard animations are interesting. Look at: http://www.videoscribe.co

Re: The Future of Animation in LiveCode

2015-02-10 Thread William Prothero
Tom: As far as I know, Apple still forbids browser plugins on iOS. So, Flash movies are out, but when HTML5 gets here, it should help a lot. My problem with Flash and revBrowserCEF was on the Mac, desktop. After loading up a Flash video from YouTube, the browser window won’t close and it seems t

Re: Guide for Building Mobile with LC

2015-02-12 Thread William Prothero
> Brahmanathaswami I’ve been taking the “CreateIT” livecode course. I’m learning quite a bit, even tho I’ve been coding in livecode for a year. Bill > On Feb 11, 2015, at 11:41 AM, Brahmanathaswami wrote: > > Finally, after several years of server side coding, we are going to build an > app in

Question re destroyStack

2015-02-18 Thread William Prothero
Folks: I’m setting up my app. It consists of various stacks and their library stacks. When each sub-section of the app gets called from the main index stack, the destination main stack is loaded, and this then loads a library stack and its substacks that hold the library code. The library substa

doesn't recognize the current card and stack

2015-02-18 Thread William Prothero
I have one stack that calls another stack using: go to stack “myStack" In “myStack” I’ve got an openstack and open card handler in the first card of a stack that I’m opening. But, all of the references to fields, in my initialization code, require the complete card and stack name. If I put in a

Re: doesn't recognize the current card and stack

2015-02-18 Thread William Prothero
to field “myField” of me > > Phil Davis > > > > On 2/18/15 4:07 PM, Scott Rossi wrote: >> Try setting the defaultStack property to the stack that contains your field >> and data first. >> >> Regards, >> >> Scott Rossi >> Creativ

Re: RELEASE 6.7.3 / 7.0.3

2015-02-26 Thread William Prothero
The revBrowserCEF is still not ready for prime time. Crashes the IDE. There is a bug report on it. Bill > On Feb 26, 2015, at 8:20 AM, Chris Sheffield wrote: > > Actually, in this case it turned out to be related to the mergExt externals > (sorry, Monte). An error occurs when building the app

Re: RELEASE 6.7.3 / 7.0.3

2015-02-26 Thread William Prothero
Monte and Gerry; Is this the same code that comes with LC? If so, will it be possible to install the fixed external separately from a new release version? Bill > On Feb 26, 2015, at 7:46 PM, Gerry wrote: > > *Sound of cheering and clapping* > > On Fri, 27 Feb 2015 at 14:45 Monte Goulding > wr

Re: RELEASE 6.7.3 / 7.0.3

2015-02-27 Thread William Prothero
ort. I think it happens when the browser window isn't closed before > purging the stack. > Best, > Bill > > William Prothero > http://es.earthednet.org > >> On Feb 26, 2015, at 9:41 PM, Monte Goulding >> wrote: >> >> I'm talking about

Re: ANN: Re-Collections iOS app now available - FREE for a limited time

2015-03-03 Thread William Prothero
Alan: Nice Idea. I downloaded it and will try it out, but first I’ve gotta select the photos from my humungous photo library to go onto my iPad. Great work! Bill > On Mar 2, 2015, at 3:07 AM, Alan Stenhouse wrote: > > G’day all! > > Just wanted to let you know I’ve just released another iOS ap

Re: [ANN] Rel 33 of MasterLibrary is available

2015-03-08 Thread William Prothero
Michael: This is a wonderful assortment of handlers and functions. I may have missed some of the intentions for the library. Is this also a personal handler management library also? Do we add our own commonly used handlers? Are these ultimately incorporated into the library, which I imagine woul

Re: [ANN] Rel 33 of MasterLibrary is available

2015-03-08 Thread William Prothero
ines. But to be honest, I have > learned a lot by just by reading the code. > > Regards, >Mike > > > On Sunday, March 8, 2015, William Prothero wrote: > >> Michael: >> This is a wonderful assortment of handlers and functions. I may have >> missed some

Re: If you don't read the forums

2015-03-12 Thread William Prothero
Folks: When Director added new code styles, it used a property called “scriptExecutionStyle” which you could set to maintain some older statements. One of the problems with just using older versions is that there may be critical unfixed bugs and the dev team wouldn’t want to be required to spend

Speaking of XML, what about KML?

2015-03-13 Thread William Prothero
I’m about to build a parse to retrieve country outline data from a KML file. This seems straightforward, but just wondering if there is a handler posted someplace for this. Basically, I’ll parse out the lat/lon outlines, then render it onto a map using my own methods. If there is none, then I’l

Re: Speaking of XML, what about KML?

2015-03-13 Thread William Prothero
c format of xml. > > convertXMLToArray seems to work, but you are still going to have to look > closely at the array structure that is specific to kml. Hope this helps you > get started. > > -= Mike > > > > > > On 3/13/15 2:58 PM, William Prothero wrote: >> I’m abo

Long KML text file with no return chars

2015-03-18 Thread William Prothero
Folks: Just wondering. I am reading in a very long text file (2.6Mb and 2.6 million chars) and it has no carriage returns. The “read file until end” statement hangs and goes into the spinning pizza of death on Mac OS Yosemite and LC 7,0,4 and 7.0.3. I used textWrangler to insert hard line breaks

Re: Long KML text file with no return chars

2015-03-20 Thread William Prothero
Thanks for the ideas, folks. It seems that the problem was getting breakpoints and the IDE mixed up in this. Without any breakpoints, it reads in the file and processes it into an array using Trevor’s code, in a couple of seconds. It works equally well with both of the ways of reading, the the

Re: A bit of a Mystery

2015-03-21 Thread William Prothero
Michael: This looks like a REALLY useful set of handlers. Thanks, Bill > On Mar 21, 2015, at 9:30 AM, Michael Doub wrote: > > Yesterday, I ported a number of geo routines in to the MasterLibrary that > contained greek characters. I left them in place as I thought it improved > readability of

Question re large project organization

2015-03-23 Thread William Prothero
I have a bunch of stacks that make up a larger application that I’m setting up to be easily expandable. There is a splash stack that loads an index stack, which then loads various other stacks as needed. When I make the standalone, it only encrypts the splash stack. The other stacks are in raw

<    1   2   3   4   5   6   7   8   9   >