Re: How to deploy app from Mac to Linux (with Browser widget) ?

2021-07-22 Thread panagiotis m via use-livecode
Hello Ben, Unfortunately the browser widget is still broken on most Linux distros. You might be able to work this around in your app by using "launch url .." if the platform is Linux, to use the default browser instead of the browser widget. Kind regards, Panos -- On Thu, 22 Jul 2021 at 10:53,

How to deploy app from Mac to Linux (with Browser widget) ?

2021-07-22 Thread Ben Rubinstein via use-livecode
I've made a little utility that's been working for me on Mac (actually I've just been running it in the IDE). I wanted to share it with a colleague who uses Linux, so I selected Mac, Windows, Linux in the standalone settings, selected "auto-detect" for inclusions, built it. Tested the

Re: Develop on 9.5 DP1 and Deploy in 9.0.4 Stable?

2019-06-02 Thread J. Landman Gay via use-livecode
Switch to 9.0.5 where a large number of memory leaks were fixed. I find it to be far more stable, with one exception - - tracing through scripts in the debugger can eventually crash. I've submitted several crash logs about that and hopefully the remaining leaks can be found and fixed. Aside

Re: Develop on 9.5 DP1 and Deploy in 9.0.4 Stable?

2019-06-02 Thread Brian Milby via use-livecode
You should be able to do that unless you take advantage of any new features of the TreeView widget (preferences will get removed when saving from an earlier version).  The one possible issue would be with data grids (and other groups using container mode) - not sure how the container mode

Develop on 9.5 DP1 and Deploy in 9.0.4 Stable?

2019-06-02 Thread Sannyasin Brahmanathaswami via use-livecode
I have already submitted crash reports on the QA list but want to ask the group, in case someone works this way. I am getting random crashes in 9.0.4. At any time. I could just be sitting with a module (stack) open in my app, thinking, no attempt to send messages or interaction with the

Re: Exploring A Single File Deploy on Windows

2017-06-23 Thread Bob Sneidar via use-livecode
I've got a really, really bad feeling about this... Bob S > On Jun 23, 2017, at 10:56 , Dan Friedman via use-livecode > wrote: > > I second this motion! PLEASE! We must have some way to work BEFORE the > eternals are loaded. Furthermore, we should be able

Re: Exploring A Single File Deploy on Windows

2017-06-23 Thread Dan Friedman via use-livecode
I second this motion! PLEASE! We must have some way to work BEFORE the eternals are loaded. Furthermore, we should be able to define where the externals will be saved and loaded. Requiring that externals must be in the same directory as the exe is far to limiting! New DataGrids and fancy

Re: Exploring A Single File Deploy on Windows

2017-06-22 Thread Mark Waddingham via use-livecode
On 2017-06-21 22:47, J. Landman Gay via use-livecode wrote: Could you expand on this a little bit? StandaloneSaving/Saved are only sent during a build, so I'm not sure how I'd use those to intercept a startup message. Yes but they could be used at standalone building time (probably will

Re: Exploring A Single File Deploy on Windows

2017-06-21 Thread Mark Talluto via use-livecode
> On Jun 21, 2017, at 11:31 AM, Mark Waddingham via use-livecode > wrote: > > Since 8, standalones have loaded their externals on startup - so no script > runs before the standalone expects them to be where they should. One way to > resolve this is to send a

Re: Exploring A Single File Deploy on Windows

2017-06-21 Thread J. Landman Gay via use-livecode
On 6/21/17 1:31 PM, Mark Waddingham via use-livecode wrote: Since 8, standalones have loaded their externals on startup - so no script runs before the standalone expects them to be where they should. One way to resolve this is to send a message *before* the externals are bound, allowing the

Re: Exploring A Single File Deploy on Windows

2017-06-21 Thread Mark Waddingham via use-livecode
On 2017-06-21 19:42, Richard Gaskin via use-livecode wrote: One of the things I liked about SuperCard was that Bill Appleton had written his own resource fork into his data file format. This allowed SC to store any number of data and even code (XCMDs and DFCNs) within the data fork, without

Re: Exploring A Single File Deploy on Windows

2017-06-21 Thread Richard Gaskin via use-livecode
Dan Friedman wrote: > With LC 8.1 and later, we’re now using tsNet rather than libURL. > That’s fine. However, a Windows standalone that uses tsNet cannot > even launch unless tsNet.dll is in the same directory as the > standalone.exe. This makes deploying a single file on Windows >

Re: Exploring A Single File Deploy on Windows

2017-06-19 Thread Roger Eller via use-livecode
On Mon, Jun 19, 2017 at 3:31 PM, Dan Friedman via use-livecode < use-livecode@lists.runrev.com> wrote: > Greetings… > > With LC 8.1 and later, we’re now using tsNet rather than libURL. That’s > fine. However, a Windows standalone that uses tsNet cannot even launch > unless tsNet.dll is in the

Exploring A Single File Deploy on Windows

2017-06-19 Thread Dan Friedman via use-livecode
Greetings… With LC 8.1 and later, we’re now using tsNet rather than libURL. That’s fine. However, a Windows standalone that uses tsNet cannot even launch unless tsNet.dll is in the same directory as the standalone.exe. This makes deploying a single file on Windows impossible. Which means

Re: Single File Deploy on Windows?

2017-04-04 Thread Dan Friedman via use-livecode
Thanks Paul. That’s just what I’ve done in versions prior to LC 9. I can tell you that it does work in LC 7 and 8. Not sure what the issue is with LC 9, but maybe somone in the know from LiveCode will see this post and share the magic formula!?! -Dan >>That look to me like it should work.

Re: Single File Deploy on Windows?

2017-04-04 Thread Paul Dupuis via use-livecode
Hi Dan, That look to me like it should work. Here is my code below which does work. That said, it works under 6.7.x and earlier. I have not tested my code under LC7+. In my case I have only 1 external but I want to load the correct one for OSX or Window. The whole "put (there is a folder

Re: Single File Deploy on Windows?

2017-04-04 Thread Dan Friedman via use-livecode
Matthias, Thank you, but I would like to use the new tsNet. Just want to deploy a single file. Can’t believe there isn’t a way to do that!?! -Dan > there is a way to use the old libURL instead of the new tsNet external… ___ use-livecode mail

Re: Single File Deploy on Windows?

2017-04-04 Thread Dan Friedman via use-livecode
Paul, Thank you for the advice. But, either it didn’t work, or I’m doing it wrong. Here’s what I did: on startUp new inv stack "myExternals" set the mainStack of stack "myExternals" to "myGreatApp" set the externals of stack "myExternals" to pExternals -- pExternals is a list of all the

Re: Single File Deploy on Windows?

2017-04-04 Thread Matthias Rebbe via use-livecode
Hi Dan, there is a way to use the old libURL instead of the new tsNet external. If that is sufficient for you then you just have to unload the tsNet library before building the standalone. To do this just execute this from within the message box: dispatch "revUnloadLibrary" to stack

Re: Single File Deploy on Windows?

2017-04-04 Thread Paul Dupuis via use-livecode
On 4/4/2017 3:57 PM, Dan Friedman via use-livecode wrote: > Anyone have any insight? Externals (.dll files that an a LC external) can be added to a created substack on startup by setting the externals of that new sustack to the approriate names and paths and then the substack started as a Library

Re: Single File Deploy on Windows?

2017-04-04 Thread Dan Friedman via use-livecode
Ok, when we last left our hero…. I was able to save all the dlls and whatnot into custom properties and save them at app launch (exact same structure as when LC made them). The problem is, the EXE doesn’t recognize that the dlls are in place. How do you tell the exe that they are there and

Re: Single File Deploy on Windows?

2017-04-04 Thread Richard Gaskin via use-livecode
Dan Friedman wrote: > Also, what’s with this ginormous DLL “libcef.dll”? It’s 47.5MB. > Anyone know what that’s related to? It's the CEF browser engine used by the browser widget. -- Richard Gaskin Fourth World Systems Software Design and Development for the Desktop, Mobile, and the Web

Re: Single File Deploy on Windows?

2017-04-04 Thread Dan Friedman via use-livecode
Thank you everyone for your suggestions. I’ve been doing it that way for years (save the dll’s as needed at runtime). The problem is that it seems that an EXE made from LC 9.0 won’t even launch if you include any items related to the internet (Broswer, Internet, SSL, etc) unless the tsNet.dll

Re: Single File Deploy on Windows?

2017-04-03 Thread Roger Eller via use-livecode
Any > required DLLs or other needed files are downloaded at runtime and put in > place on launch. However, in LC 9.0.0 it seems there is a dll, “tsNet.dll” > that must be in place to even launch! UG!! Is there a way to deploy a > Windows EXE that is a single file? For god’s s

Re: Single File Deploy on Windows?

2017-04-03 Thread Richard Gaskin via use-livecode
launch! UG!! Is there a > way to deploy a Windows EXE that is a single file? For god’s sake, > please don’t make be use an installer!! Long-term dream: I would LOVE to see some way to embed externals within the executable file the way SuperCard does (no, SC doesn't use the resource fork; nev

Single File Deploy on Windows?

2017-04-03 Thread Dan Friedman via use-livecode
So, I deliver a single file for my LC standalones on Windows. Any required DLLs or other needed files are downloaded at runtime and put in place on launch. However, in LC 9.0.0 it seems there is a dll, “tsNet.dll” that must be in place to even launch! UG!! Is there a way to deploy a Windows

Re: deploy?

2017-02-23 Thread Monte Goulding via use-livecode
> On 24 Feb 2017, at 1:19 pm, Richard Gaskin via use-livecode > wrote: > > Sounds useful for automating build systems. At least part of it is > documented in the latest Release Notes - where can I find the rest of the > docs on that? It isn’t part of the

Re: deploy?

2017-02-23 Thread Richard Gaskin via use-livecode
Monte Goulding wrote: >> On 24 Feb 2017, at 12:51 pm, Richard Gaskin wrote: >> >> What's the "deploy" command? It's not in the Dictionary. > > It’s an IDE only internal command for creating standalone engines. Sounds useful for automating build systems.

Re: deploy?

2017-02-23 Thread Monte Goulding via use-livecode
It’s an IDE only internal command for creating standalone engines. > On 24 Feb 2017, at 12:51 pm, Richard Gaskin via use-livecode > <use-livecode@lists.runrev.com> wrote: > > The v9dp5 Release Notes include: > > Script-only deploy (9.0.0-dp-5) > It is now possibl

deploy?

2017-02-23 Thread Richard Gaskin via use-livecode
The v9dp5 Release Notes include: Script-only deploy (9.0.0-dp-5) It is now possible to use script-only stacks in the mainstack and auxiliary stack parameters to the deploy command. Sounds cool. What's the "deploy" command? It's not in the Dictionary. -- Richard Gaskin Fo

Re: How to Deploy Apps to Android Devices

2015-07-21 Thread J. Landman Gay
On July 21, 2015 6:51:16 AM CDT, Jana Doughty jana.doug...@livecode.com wrote: Hi LiveCode Community, Lots of you have asked about Android. Did you know you can deploy apps to Android Devices and it takes just one click? Here's how to do it and how to avoid errors in doing so: http

How to Deploy Apps to Android Devices

2015-07-21 Thread Jana Doughty
Hi LiveCode Community, Lots of you have asked about Android. Did you know you can deploy apps to Android Devices and it takes just one click? Here's how to do it and how to avoid errors in doing so: http://livecode.com/how-to-deploy-apps-to-android-devices/ Enjoy! Jana

Re: How to Deploy Apps to Android Devices

2015-07-21 Thread Roger Eller
Excellent troubleshooting tips! Thank you Jana! On Tue, Jul 21, 2015 at 7:51 AM, Jana Doughty jana.doug...@livecode.com wrote: Hi LiveCode Community, Lots of you have asked about Android. Did you know you can deploy apps to Android Devices and it takes just one click? Here's how to do

Last Chance to Get VDN for 50% Off: Deploy Valentina Server to Your Customers

2015-02-16 Thread Lynn Fredricks
Hi all, Our VDN special ends the end of today. Its 50% off VDN, our Oem'd server that can be bundled with your solutions (there's a native VCLIENT for pulling data from LiveCode). The server serves both data and reports. http://valentina-db.com/en/valentina-developer-network-overview Best

Re: May be OT: where is iOS 5.1 SDK and how can I deploy it?

2012-03-28 Thread Graham Samuel
Tom thanks - The charm of living in Europe and getting the LiveCode digest is that you wake up in the morning and someone has answered your question! Sadly though in this case it doesn't work: when I do exactly what you suggest, LC pops up a dialog box which says: The chosen folder is not a

May be OT: where is iOS 5.1 SDK and how can I deploy it?

2012-03-27 Thread Graham Samuel
As I have LC5.5, I downloaded Xcode 4.3.2 from Apple. It shows up in my Applications folder and I can run it, but it doesn't seem to have altered my Developer folder at all - all the file dates seem to be earlier, and there is no sign of the 5.1 SDK. The simulator there also seems to be 5.0.

Re: May be OT: where is iOS 5.1 SDK and how can I deploy it?

2012-03-27 Thread Thomas McGrath III
Graham, Just point the top button in device preferences to the xCode.app in you applications folder. That's it. It will find it itself. -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Mar 27, 2012, at 3:39 PM, Graham Samuel wrote: As I have LC5.5, I downloaded Xcode

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-08 Thread zryip theSlug
On Mon, Mar 7, 2011 at 11:55 AM, Keith Clarke keith.cla...@clarkeandclarke.co.uk wrote: Hi Keith, Great lesson - I have a checkbox in a cell. I did have to divert from your lesson slightly. So, below are the additional steps that I took - just in case you want to update your lesson for the

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-07 Thread Keith Clarke
Hi Zryip, Great lesson - I have a checkbox in a cell. I did have to divert from your lesson slightly. So, below are the additional steps that I took - just in case you want to update your lesson for the following scenario... I wanted a row 'Select' column of (just) checkboxes, centrally aligned

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-07 Thread william humphrey
I have to chime in here too. I love listMagic but it isn't compatible with Remo. The library for listMagic freezes a quit from your app when your running Remo. The only real solution would be for the listMagic folks to release it's library unlocked (probably not ever happen) so I'm gradually

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-07 Thread Peter Haworth
Hi Keith, You might want to consider another approach than checkboxes in this situation, depending on what you want to do with the checked row. If you just want to carry out some processing on the data in the selected row, you can use the dghilitedline property of the datagrid to find out

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-07 Thread Keith Clarke
Hi Peter, Thanks for the tip and for reframing the problem to provide mutually exclusive row selection, without the complexity of dealing with the checkbox. Nice! :-) Best, Keith.. On 7 Mar 2011, at 16:22, Peter Haworth wrote: Hi Keith, You might want to consider another approach than

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-07 Thread Keith Clarke
You read my mind, Sir. I was just defining the pair of buttons under the simplified data grid as your post popped into my inbox! :-) On 7 Mar 2011, at 16:45, Peter Haworth wrote: No problem Keith. Also saw your other post about a button in the datagrid. Once again, it might be worth

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-07 Thread Bob Sneidar
I believe you will need to use form style datagrids then, I'm sure you know. I have no experience in those, but at some point I will want to jump in because the notion of checkboxes in a table are very appealing to what I am going to be doing later on. Bob On Mar 5, 2011, at 12:35 AM, Keith

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-06 Thread zryip theSlug
On Sat, Mar 5, 2011 at 9:35 AM, Keith Clarke keith.cla...@clarkeandclarke.co.uk wrote: ...thanks Bob - very useful stuff - and I'll definitely be referencing this as I work through the lessons again and DGH documentation. However, before I get to manipulating data, I need to learn how to use

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-06 Thread Keith Clarke
Hi Zryip, Thanks for the lesson - very timely! And you have anticipated my follow-up question which was to be how to embed a button within a row - brilliant! Don't go thinking that this has exhausted my list of questions on DG/DGH though! ;-) Best, Keith.. On 6 Mar 2011, at 22:53, zryip

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-05 Thread Keith Clarke
...thanks Bob - very useful stuff - and I'll definitely be referencing this as I work through the lessons again and DGH documentation. However, before I get to manipulating data, I need to learn how to use non-data UI elements within data grids - to replicate ListMagic's row-select checkboxes.

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-04 Thread Keith Clarke
Hi Trevor, Thanks for confirming that this behaviour is not coming from the GLX framework. Maybe it's time to bite the bullet and replace my simple ListMagic controls with data grids - and learn how to drive them and DGH properly! ;-) On 4 Mar 2011, at 15:25, Trevor DeVore wrote: The

Re: How to develop and deploy with ListMagic within the GLX application framework?

2011-03-04 Thread Bob Sneidar
What really helped me take hold of the reigns of datagrids is the notion of getting the index (or line) of a data control, getting the array associated with that line, altering the array, and then setting the array in the datagrid when I was done. This process is actually quite simple. Lets

How server deploy works?

2010-12-01 Thread Giuseppe Luigi Punzi
Hi, How exactly Server deploy works? I understand there are a server thath interprets irev files like PHP does, but... If I do a web application, and I sell this application to various customers, I need to buy server license for each server? or once I have Server deploy bouht, I can deploy