Re: Navigator 6.5 alpha 2 is out

2018-10-04 Thread Geoff Canyon via use-livecode
That looks like the correct file setup. And yes -- I forgot to update the splash screen in Navigator to say alpha 2. gc On Thu, Oct 4, 2018 at 5:30 PM Sannyasin Brahmanathaswami wrote: > Just checking on installation: > > When you unzip, we get one folder. > > It has be to placed manually,

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Brian Milby via use-livecode
Just tried a native Mac button over the browser widget. Clicks do get received, but the button is not drawn over the browser. The Mac native single line field will layer over/under the native button fine. And as expected, if you create a giant button and cover everything, then it is only

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Tom Glod via use-livecode
HH that is the workaround I was going for.thanks for the demoproves my thesis and I feel great about going forward with that solution. On Thu, Oct 4, 2018 at 9:47 PM hh via use-livecode < use-livecode@lists.runrev.com> wrote: > > Bob S. wrote: > > I suspect all they did was

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread hh via use-livecode
> Bob S. wrote: > I suspect all they did was take the old browser object and wrap > it in a widget that it can respond to and send messages. The widget is more than a simple wrapper. It is more comfortable and works (with the right settings) for most use cases too on linux. TMHO, it is one of

Re: Exiting a repeat loop

2018-10-04 Thread hh via use-livecode
BR, you could try to "send in time" instead of a repeat loop. say use 32 millisecs. Then every action to stop has enough time to come in. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread hh via use-livecode
See my demo here: http://forums.livecode.com/viewtopic.php?p=152773#p152773 Overlays the widget while this plays a video. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Navigator 6.5 alpha 2 is out

2018-10-04 Thread Sannyasin Brahmanathaswami via use-livecode
Just checking on installation: When you unzip, we get one folder. It has be to placed manually, like this ? /My Livecode /Plugin /Navigator_Behavior /Navigator Commands #inside Navigator_Behaviors rev_b_Actions.livecodescript

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Jim Lambert via use-livecode
> Does anyone know if it will ever be possible to place controls on > layers above a browser widget? I don’t know if that is in the works or when it may be available. But you might be able to kludge it now on desktop: 1- place the control (say, a button) that you want to position within the

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Brian Milby via use-livecode
Native layers are drawn above all LC layers regardless of what layer the object is in. This would go for native buttons and other controls as well. An interesting experiment would be to try a native button over the browser widget. On desktop you can layer over the browser widget using a second

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread dunbarxx via use-livecode
Bob. Overlying, no? And all objects are smoke and mirrors, in that they are chimeras that we "see", "drawn" on a "screen", when in reality they are just a list of certain transistors locked in a certain state. I get that widgets are different. But I do not like at all that they break

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Bob Sneidar via use-livecode
I suspect all they did was take the old browser object and wrap it in a widget that it can respond to and send messages. The old browser was not on a layer per se. (Actually, nothing is, it's all smoke and mirrors). It would write or draw if you will to a rect on the screen, and once it did

Re: Exiting a repeat loop

2018-10-04 Thread kee nethery via use-livecode
This might not work for you but, I put: if the optionkey is down then exit repeat end if So not trying to capture a specific event, just looking to see if a key is pressed down. What happens is that I put one of these within every repeat loop and when it hits one, it quickly dumps out of

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread dunbarxx via use-livecode
The browser object sits atop everything else, or rather it is "drawn" over everything else... Hmmm. OK,this even though the browser object sits in layer 1, and the overlying button sits in layer 2. So there is a breakdown in the layer paradigm? Messages are prevented from being generated if a

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Stephen MacLean via use-livecode
If I remember correctly this is supposed to be “change” at some point with infinite LC. In the mean time, you could overlay another html control over it and use it as a button. At least you used to be able to do that. Best, Steve > On Oct 4, 2018, at 2:26 PM, Tom Glod via use-livecode

Re: Exiting a repeat loop

2018-10-04 Thread Brian Milby via use-livecode
Yes, probably need a wait with messages inside the loop. Also the reset probably needs to go above the exit. Thanks, Brian On Oct 4, 2018, 4:14 PM -0400, Sannyasin Brahmanathaswami via use-livecode , wrote: > I have little game where the user runs a repeat loop. And I want to let > the user

Exiting a repeat loop

2018-10-04 Thread Sannyasin Brahmanathaswami via use-livecode
I have little game where the user runs a repeat loop. And I want to let the user stop at any time. So what I do set a local flag. Here is the simple logic -- local sStopFlag *on mouseup* *repeat* sCycles times *if* sStopFlag=1*then* *exit* *repeat* **

RE: OT our shipping software is finally finished

2018-10-04 Thread Ralph DiMola via use-livecode
Congrats! Nice to see LC out in the field. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Matthias Rebbe via use-livecode Sent: Wednesday, October 03,

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Bob Sneidar via use-livecode
The browser object sits atop everything else, or rather it is "drawn" over everything else. Whatever it is not drawn over is still clickable. That is how it was explained to me some time back. Bob S > On Oct 4, 2018, at 12:00 , dunbarxx via use-livecode > wrote: > > "...But with a browser

Re: OT our shipping software is finally finished

2018-10-04 Thread Mark Wieder via use-livecode
On 10/04/2018 04:45 AM, Andre Garzia via use-livecode wrote: I think that LiveCode is the best thing under the sun to build Desktop apps. I wish people were not so enthralled with mobile these days because Desktop stuff rocks. Amen to that. -- Mark Wieder ahsoftw...@gmail.com

Re: OT our shipping software is finally finished

2018-10-04 Thread Matthias Rebbe via use-livecode
> Am 04.10.2018 um 13:45 schrieb Andre Garzia >: > > I think that LiveCode is the best thing under the sun to build Desktop apps. > I wish people were not so enthralled with mobile these days because Desktop > stuff rocks. Andre, i second that. The possibility

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread dunbarxx via use-livecode
"...But with a browser widget, the message is generated only if the extent of the button is outside the extent of the underlying widget. I may not have been clear. If I click on a portion of the overlying button that is outside the rect of the underlying widget, then a mouseUp message is

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Tom Glod via use-livecode
oh yeah i know that right now thats the casei'm asking if anyone knows if thats a temporary or permanent situation. On Thu, Oct 4, 2018 at 2:08 PM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > I went through that a while back. I was trying to create a web based Kiosk

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread dunbarxx via use-livecode
Hi. Odd, I tried this with other widgets overlain by a button, and a mouseUp message was generated without issue anywhere I clicked on the button. But with a browser widget, the message is generated only if the extent of the button is outside the extent of the underlying widget. How do it

Re: Will it ever be possible place controls over browser widget?

2018-10-04 Thread Bob Sneidar via use-livecode
I went through that a while back. I was trying to create a web based Kiosk app, that a hot-click could cancel, so we could get back to the desktop. I never got it to work. Once the browser object had control, nothing else would respond. Bob S > On Oct 4, 2018, at 11:04 , Tom Glod via

Will it ever be possible place controls over browser widget?

2018-10-04 Thread Tom Glod via use-livecode
Hi, Ehh.Does anyone know if it will ever be possible to place controls on layers above a browser widget? Thanks, Tom ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Window and screen management: windowBoundingRect

2018-10-04 Thread Paul Dupuis via use-livecode
I am writing some code to intelligently deal with a multi-window application for people with multiple monitors. These are things like remembering the last window position when quitting and if when starting up that position was on a secondary or more monitor, positioning the window to the main

Re: Thanks to Hermann Hoch...

2018-10-04 Thread Lagi Pittas via use-livecode
I'll second that emotion they're Smokin (pun intended) Thanks Hermann. Lagi On Wed, 3 Oct 2018 at 15:23, Tom Glod via use-livecode < use-livecode@lists.runrev.com> wrote: > Though I haven't used them yet, I agree...its great for the community. > Thanks Hermann > > On Wed, Oct 3, 2018 at

Modern Mobile Progress Bar

2018-10-04 Thread Sannyasin Brahmanathaswami via use-livecode
Is there any way to get color to show on a native scrollbar (used as a progress bar for a download) on mobile? It show up with background fill black with barely visible thumbnail blue going across, changing the color in IDE has no effect on mobile. I think there is a mobile control, but as far I

Re: Writing a UTF8 text file to server -- solved

2018-10-04 Thread Tim Selander via use-livecode
Just for posterity... Tried many combinations of various commands opening the file as a binfile instead of a text file solved my problem Changed: open file vfile for utf8 text update To: open file vfile for binary update At which point the same command: write vdata to file vfile at end

Re: [off] Do me a solid

2018-10-04 Thread Andre Garzia via use-livecode
Friends, I have been silent for a while but I am now getting more active here again. I've recently moved to London so if people want to go to a Pub or organize an LC meetup, I am game. Now back to business, I am an active member of the decentralized web movement and more visible through my

Re: OT our shipping software is finally finished

2018-10-04 Thread Andre Garzia via use-livecode
Matthias, Congratulations on shipping a shipping software! I think that LiveCode is the best thing under the sun to build Desktop apps. I wish people were not so enthralled with mobile these days because Desktop stuff rocks. Best andre On Thu, Oct 4, 2018 at 10:30 AM Matthias Rebbe via

Re: Script Editor Unusable on Windows

2018-10-04 Thread Andre Garzia via use-livecode
Clarence, I wish I could but I am afraid of adding plugins and this becoming slow as molasses. :-( I just lost a little button on a card because I clicked another control, pressed delete, but there is a lag in the IDE so it missed me switching controls and deleted the wrong one. If I program

Re: OT our shipping software is finally finished

2018-10-04 Thread Matthias Rebbe via use-livecode
The complete project started in February this year. I´ve started with our DHL module in February and finished that at the end of March. The DHL part was easier, as the app does not have to create the label. The app fetches the shipping data the same way as the Trans-o-Flex module does, but then

Re: Writing a UTF8 text file to server.

2018-10-04 Thread Tim Selander via use-livecode
Hi Scott, Added info; I have charset=UTF-8" ?> at the top of the web page source. Then, I only found outputTextEncoding in the dictionary. It said it only works with CGI (server), put when I put: set the outputTextEncoding to "utf-8" into the script before dealing with the $_POST array, it

Re: Writing a UTF8 text file to server.

2018-10-04 Thread scott--- via use-livecode
Hello Tim, Did you look at the textEncode function? — Scott Morrow > On Oct 3, 2018, at 10:22 PM, Tim Selander via use-livecode > wrote: > > I am using Livecode Server on Livecode's hosting plan. > > Taking my first stab at a web response form. I am getting the data from > $_POST fine, and