OSX module file error when building standalone with LC 8 on mac

2017-03-14 Thread James Hale via use-livecode
I just went to recompile a little utility I have and came across this error.

The stack is simple and just gets the user to select file(s) or a folder or a 
text list to create folders somewhere else.

I had compiled a standalone before but now am unable to with LC8.

It gets all the way to building MacOS components and then...

"There was an error while saving the
standalone application
Build failed for MacOSX x86-32: could not
open module file"

I originally was compiling 64 bit, then I tried both, then just 32 bit.
Same error in each case.

Has anyone else experienced this?
Does anyone know what it means?

Tried with 
8.1.3 indy and business
8.1.0 Indy

Then tried with a couple of the 9DPs
These all worked!

So it seems to be only with the LC 8s that I have.

James


___
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/listinfo/use-livecode


Re: Translating escape sequence

2017-03-14 Thread Monte Goulding via use-livecode

> On 15 Mar 2017, at 3:28 pm, J. Landman Gay via use-livecode 
>  wrote:
> 
> So I'm stuck, I don't see any way to deal with these. I'll put in a bug 
> report about jsonImport() but it will probably be a while before it gets 
> fixed.
> 
> I hope someone else has an idea.

I do -)

Jansson (the library that mergJSON uses) does actually handle all escaped 
unicode codepoints just fine. There is, however, an issue with the JSONToArray 
function. Try patching it like I have done here 
https://github.com/montegoulding/mergJSON/pull/8

Cheers

Monte



___
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/listinfo/use-livecode


Re: Translating escape sequence

2017-03-14 Thread Phil Davis via use-livecode
Maybe right after you import the JSON data, preprocess it with something 
like this:


set the lineDelimiter to "\u"
repeat for each line tLine in tJsonData
put numToCodePoint("0x" & char 1 to 4 of tLine) & char 5 to -1 of 
tLine after tNewData

end repeat
put tNewData into tJsonData

Then go on your merry way. Would that work?

Phil Davis



On 3/14/17 9:28 PM, J. Landman Gay via use-livecode wrote:
Thanks. I actually was using jsonImport() with these strings 
successfully (no wrapper required) but it has a bug on Android that 
makes it unuseable. That's what caused the problem in the first place, 
because jsonToArray() doesn't deal with escape sequences.


So I went ahead and wrote a decoder for escaped sequences that works, 
but found out I still can't use it. If I replace the escapes before 
using jsonToArray(), jsonToArray throws an error; it can't deal with 
the UTF16 strings. And I can't run my decoder through the keys of the 
converted array after jsonToArray is finished, because they are 
already munged into garbage characters by then.


So I'm stuck, I don't see any way to deal with these. I'll put in a 
bug report about jsonImport() but it will probably be a while before 
it gets fixed.


I hope someone else has an idea.

On 3/14/17 7:13 PM, Jim Lambert via use-livecode wrote:



Jacque wrote:

I'm dealing with non-English languages, and JSON data retrieved from a
database comes in with unicode escape sequences like this: Eduardo
Ba\u00f1uls.

I need to translate those. I can do it by replacing the "\u" with "0x"
and then using numToCodepoint() to get the UTF16 character. But there
could be many of these in the same string, so I'm looking for a 
one-shot

command that might just do them all.



JSONImport does it.
If the escaped string is not in JSON format this function will wrap 
it in JSON then let JSONImport do its thing.


put deEscape("Eduardo Ba\u00f1uls")

function deEscape pEscapedText
put "{'1':'**dummy**'}" into temp
replace "**dummy**" with pEscapedText in temp
replace "'" with quote in temp
put JSONImport(temp)into pArray
return pArray[1]
end deEscape

Roundabout but does the trick.

Jim Lambert
___
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/listinfo/use-livecode






--
Phil Davis


___
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/listinfo/use-livecode


Re: Translating escape sequence

2017-03-14 Thread J. Landman Gay via use-livecode
Thanks. I actually was using jsonImport() with these strings 
successfully (no wrapper required) but it has a bug on Android that 
makes it unuseable. That's what caused the problem in the first place, 
because jsonToArray() doesn't deal with escape sequences.


So I went ahead and wrote a decoder for escaped sequences that works, 
but found out I still can't use it. If I replace the escapes before 
using jsonToArray(), jsonToArray throws an error; it can't deal with the 
UTF16 strings. And I can't run my decoder through the keys of the 
converted array after jsonToArray is finished, because they are already 
munged into garbage characters by then.


So I'm stuck, I don't see any way to deal with these. I'll put in a bug 
report about jsonImport() but it will probably be a while before it gets 
fixed.


I hope someone else has an idea.

On 3/14/17 7:13 PM, Jim Lambert via use-livecode wrote:



Jacque wrote:

I'm dealing with non-English languages, and JSON data retrieved from a
database comes in with unicode escape sequences like this: Eduardo
Ba\u00f1uls.

I need to translate those. I can do it by replacing the "\u" with "0x"
and then using numToCodepoint() to get the UTF16 character. But there
could be many of these in the same string, so I'm looking for a one-shot
command that might just do them all.



JSONImport does it.
If the escaped string is not in JSON format this function will wrap it in JSON 
then let JSONImport do its thing.

put deEscape("Eduardo Ba\u00f1uls")

function deEscape pEscapedText
put "{'1':'**dummy**'}" into temp
replace "**dummy**" with pEscapedText in temp
replace "'" with quote in temp
put JSONImport(temp)into pArray
return pArray[1]
end deEscape

Roundabout but does the trick.

Jim Lambert
___
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/listinfo/use-livecode




--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
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/listinfo/use-livecode


Re: Translating escape sequence

2017-03-14 Thread Jim Lambert via use-livecode

> Jacque wrote:
> 
> I'm dealing with non-English languages, and JSON data retrieved from a 
> database comes in with unicode escape sequences like this: Eduardo 
> Ba\u00f1uls.
> 
> I need to translate those. I can do it by replacing the "\u" with "0x" 
> and then using numToCodepoint() to get the UTF16 character. But there 
> could be many of these in the same string, so I'm looking for a one-shot 
> command that might just do them all.


JSONImport does it.  
If the escaped string is not in JSON format this function will wrap it in JSON 
then let JSONImport do its thing.

put deEscape("Eduardo Ba\u00f1uls")

function deEscape pEscapedText
put "{'1':'**dummy**'}" into temp
replace "**dummy**" with pEscapedText in temp
replace "'" with quote in temp
put JSONImport(temp)into pArray
return pArray[1]
end deEscape

Roundabout but does the trick.

Jim Lambert
___
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/listinfo/use-livecode


where does the standalonebuilder saves the substacks in an Mac OS App?

2017-03-14 Thread Matthias Rebbe via use-livecode
Hi,

is it correct when the standalone settings of an stack are set to move 
substacks into individual stack files that under Mac OS X the substacks in an 
compiled app (e.g. test.app) are stored
 
in 'test.app/Contents/Resources/_MacOS/‘ instead of being stored in 
'test.app/Contents/MacOS/'


And if this is correct, how do i open them? At the moment my button script (go 
stack …) , which works for Windows does not open the substacks in MacOS X.
If i move the substacks manually to 'test.app/Contents/MacOS/' then of course 
my scripts can open them w/o modification.

Never ran into this before, because  i needed individual substacks only under 
Windows in the past.

Am i missing something? 

Regards,
Matthias
___
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/listinfo/use-livecode

Re: Translating escape sequences

2017-03-14 Thread Jonathan Lynch via use-livecode
What I mean is - retrieve through JS to avoid escape characters then translate 
to utf-8 to pass to LC.

Might be too complicated though.

Sent from my iPhone

> On Mar 14, 2017, at 5:26 PM, J. Landman Gay via use-livecode 
>  wrote:
> 
> www.hyperactivesw.com

___
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/listinfo/use-livecode


Re: Translating escape sequences

2017-03-14 Thread Jonathan Lynch via use-livecode
Does JavaScript have a way to do the translation?

Sent from my iPhone

> On Mar 14, 2017, at 5:26 PM, J. Landman Gay via use-livecode 
>  wrote:
> 
> I'm dealing with non-English languages, and JSON data retrieved from a 
> database comes in with unicode escape sequences like this: Eduardo 
> Ba\u00f1uls.
> 
> I need to translate those. I can do it by replacing the "\u" with "0x" and 
> then using numToCodepoint() to get the UTF16 character. But there could be 
> many of these in the same string, so I'm looking for a one-shot command that 
> might just do them all. I don't think we have one.
> 
> The alternative is to loop through all the text, getting an offset for each 
> "\u" and then calculating the number of characters after that to use with 
> numToCodepoint(). But will it always be 4 characters in any language?
> 
> Or is there an easier way?
> 
> -- 
> Jacqueline Landman Gay | jac...@hyperactivesw.com
> HyperActive Software   | http://www.hyperactivesw.com
> 
> ___
> 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/listinfo/use-livecode

___
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/listinfo/use-livecode


Translating escape sequences

2017-03-14 Thread J. Landman Gay via use-livecode
I'm dealing with non-English languages, and JSON data retrieved from a 
database comes in with unicode escape sequences like this: Eduardo 
Ba\u00f1uls.


I need to translate those. I can do it by replacing the "\u" with "0x" 
and then using numToCodepoint() to get the UTF16 character. But there 
could be many of these in the same string, so I'm looking for a one-shot 
command that might just do them all. I don't think we have one.


The alternative is to loop through all the text, getting an offset for 
each "\u" and then calculating the number of characters after that to 
use with numToCodepoint(). But will it always be 4 characters in any 
language?


Or is there an easier way?

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
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/listinfo/use-livecode


LC's Future in the Browser - Web Assembly?

2017-03-14 Thread Sannyasin Brahmanathaswami via use-livecode
try this in Firefox 52

https://s3.amazonaws.com/mozilla-games/ZenGarden/EpicZenGarden.html

" Mozilla celebrated with a demo video of the high-resolution graphics of Zen 
Garden, and while right now WebAssembly supports 
compilation from C and C++ (plus some preliminary support for 
Rust), "We expect that, 
as WebAssembly continues to evolve, you'll also be able to use it with 
programming languages often used for mobile apps, like Java, Swift, and C#."

Very interesting…

___
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/listinfo/use-livecode

Re: Livecode HTML5 networking question

2017-03-14 Thread Jonathan Lynch via use-livecode
Can you get into the resulting JavaScript and add an XMLHttpRequest(); command?

Sent from my iPhone

> On Mar 14, 2017, at 1:07 PM, Mike Doub via use-livecode 
>  wrote:
> 
> I just did a test using the local python server and it did not work,  so it 
> looks like the support is not there yet. 
> 
> Mike
> 
> 
>   Original Message  
> From: use-livecode@lists.runrev.com
> Sent: March 14, 2017 11:53 AM
> To: use-livecode@lists.runrev.com
> Reply-to: use-livecode@lists.runrev.com
> Cc: ambassa...@fourthworld.com
> Subject: Re: Livecode HTML5 networking question
> 
> Mike Doub wrote:
> 
>> Bob,  I understand that.  You misunderstood my question.  If I use
>> that statement in app,  save it as am html5 app,  will the app
>> function?
>> 
>> The documentation says networking is not supported.  What exactly
>> does that mean?  Is the statement in question, networking?
> 
> I had thought GET and POST were added to the HTML exports recently, no?
> 
> --
>   Richard Gaskin
>   Fourth World Systems
>   Software Design and Development for the Desktop, Mobile, and the Web
>   
>   ambassa...@fourthworld.comhttp://www.FourthWorld.com
> 
> ___
> 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/listinfo/use-livecode
> ___
> 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/listinfo/use-livecode

___
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/listinfo/use-livecode


Re: Livecode HTML5 networking question

2017-03-14 Thread Mike Doub via use-livecode
I just did a test using the local python server and it did not work,  so it 
looks like the support is not there yet. 

Mike


  Original Message  
From: use-livecode@lists.runrev.com
Sent: March 14, 2017 11:53 AM
To: use-livecode@lists.runrev.com
Reply-to: use-livecode@lists.runrev.com
Cc: ambassa...@fourthworld.com
Subject: Re: Livecode HTML5 networking question

Mike Doub wrote:

> Bob,  I understand that.  You misunderstood my question.  If I use
> that statement in app,  save it as am html5 app,  will the app
> function?
>
> The documentation says networking is not supported.  What exactly
> does that mean?  Is the statement in question, networking?

I had thought GET and POST were added to the HTML exports recently, no?

--
  Richard Gaskin
  Fourth World Systems
  Software Design and Development for the Desktop, Mobile, and the Web
  
  ambassa...@fourthworld.com    http://www.FourthWorld.com

___
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/listinfo/use-livecode
___
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/listinfo/use-livecode

Re: Help troubleshooting IDE Script Editor Window Position

2017-03-14 Thread Mike Kerner via use-livecode
There are at least two bug reports (maybe 3) related to the SE on a second
monitor.

On Tue, Mar 14, 2017 at 12:24 PM, Mike Bonner via use-livecode <
use-livecode@lists.runrev.com> wrote:

> to get the top of the window, in the message box do:
> put the top of stack "revnewscripteditor 1"
>
> Same of course for bottom, left, right, rect, and loc
>
> On Tue, Mar 14, 2017 at 10:12 AM, Bob Hall via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
> > Is it possible to get the location of the IDE Script editor window? I
> need
> > to confirm what I suspect is a bug in 8.1.3 and need the top coordinate
> of
> > the IDE script window to confirm for bug report.
> >
> > I have a multi-monitor setup for my dev machine. One of the monitors is
> > portrait, the other is landscape (iMac 27”). As of 8.1.3 on Mac OS X
> > 10.12.3, the top location of “system” windows (IDE script editor,
> > answer/ask, toolbar as examples) appear to use the smallest value of
> EITHER
> > screen to set the top location of the window and not the top of the
> monitor
> > the window opens on.
> >
> > This results in IDE script editor, answer/ask not being
> accessible/visible
> > as it is off the screen to the top on the Landscape monitor. If the top
> of
> > the portrait monitor is “higher” relatively then the landscape monitor,
> It
> > appears as though the top location of the portrait monitor is used even
> > when the window opens on the landscape monitor. I would like to confirm
> > this behavior thus my question above.
> >
> > I searched for a bug about this and while I’m seeing some that are
> > similar, this I believe is a new one and is actually came from an LC9
> > regression. I’ve seen this same thing in LC9 since DP1 and now it appears
> > in LC 8.1.3 but not 8.1.2 or prior versions.
> >
> > For the curious… I will attempt to show in text graphics how the monitors
> > are oriented.
> >
> > (Screen orientation in System prefs using text — I hope this comes
> through)
> > __
> > |  |
> > |  |__
> > |  | |
> > |  | |
> > |  |__|
> > |__|
> >
> > I use the portrait display for coding (nice and long with ability to have
> > debugging displayed with lots of room). LC IDE/system windows on the
> > landscape display have the top of the window set using the value from the
> > portrait display (I think) as they display off screen to the top.
> >
> > If I orient the displays in System Preferences as:
> > __ __
> > |  | |
> > |  | |
> > |  |__|
> > |  |
> > |__|
> >
> > Everything works fine as the top of both monitors is the same. The issue
> > with this is that the monitors are not“oriented to their physical
> relative
> > positions so it's a little frustrating to move the cursor from portrait
> to
> > landscape and back again. Not a big deal but different and kind of a pain
> > compared to prior versions.
> >
> > This behavior started in LC 8.1.3. LC 8.1.2 works perfectly.
> >
> > Thanks in advance,
> > Bob
> > ___
> > 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/listinfo/use-livecode
> ___
> 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/listinfo/use-livecode
>



-- 
On the first day, God created the heavens and the Earth
On the second day, God created the oceans.
On the third day, God put the animals on hold for a few hours,
   and did a little diving.
And God said, "This is good."
___
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/listinfo/use-livecode

Re: Help troubleshooting IDE Script Editor Window Position

2017-03-14 Thread panagiotis merakos via use-livecode
Hi all,

This looks like bug http://quality.livecode.com/show_bug.cgi?id=18363

@Bob
Nice drawings :)

Best,
Panos
--

On Tue, Mar 14, 2017 at 4:24 PM, Mike Bonner via use-livecode <
use-livecode@lists.runrev.com> wrote:

> to get the top of the window, in the message box do:
> put the top of stack "revnewscripteditor 1"
>
> Same of course for bottom, left, right, rect, and loc
>
> On Tue, Mar 14, 2017 at 10:12 AM, Bob Hall via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
> > Is it possible to get the location of the IDE Script editor window? I
> need
> > to confirm what I suspect is a bug in 8.1.3 and need the top coordinate
> of
> > the IDE script window to confirm for bug report.
> >
> > I have a multi-monitor setup for my dev machine. One of the monitors is
> > portrait, the other is landscape (iMac 27”). As of 8.1.3 on Mac OS X
> > 10.12.3, the top location of “system” windows (IDE script editor,
> > answer/ask, toolbar as examples) appear to use the smallest value of
> EITHER
> > screen to set the top location of the window and not the top of the
> monitor
> > the window opens on.
> >
> > This results in IDE script editor, answer/ask not being
> accessible/visible
> > as it is off the screen to the top on the Landscape monitor. If the top
> of
> > the portrait monitor is “higher” relatively then the landscape monitor,
> It
> > appears as though the top location of the portrait monitor is used even
> > when the window opens on the landscape monitor. I would like to confirm
> > this behavior thus my question above.
> >
> > I searched for a bug about this and while I’m seeing some that are
> > similar, this I believe is a new one and is actually came from an LC9
> > regression. I’ve seen this same thing in LC9 since DP1 and now it appears
> > in LC 8.1.3 but not 8.1.2 or prior versions.
> >
> > For the curious… I will attempt to show in text graphics how the monitors
> > are oriented.
> >
> > (Screen orientation in System prefs using text — I hope this comes
> through)
> > __
> > |  |
> > |  |__
> > |  | |
> > |  | |
> > |  |__|
> > |__|
> >
> > I use the portrait display for coding (nice and long with ability to have
> > debugging displayed with lots of room). LC IDE/system windows on the
> > landscape display have the top of the window set using the value from the
> > portrait display (I think) as they display off screen to the top.
> >
> > If I orient the displays in System Preferences as:
> > __ __
> > |  | |
> > |  | |
> > |  |__|
> > |  |
> > |__|
> >
> > Everything works fine as the top of both monitors is the same. The issue
> > with this is that the monitors are not“oriented to their physical
> relative
> > positions so it's a little frustrating to move the cursor from portrait
> to
> > landscape and back again. Not a big deal but different and kind of a pain
> > compared to prior versions.
> >
> > This behavior started in LC 8.1.3. LC 8.1.2 works perfectly.
> >
> > Thanks in advance,
> > Bob
> > ___
> > 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/listinfo/use-livecode
> ___
> 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/listinfo/use-livecode
>
___
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/listinfo/use-livecode

Re: Help troubleshooting IDE Script Editor Window Position

2017-03-14 Thread Mike Bonner via use-livecode
to get the top of the window, in the message box do:
put the top of stack "revnewscripteditor 1"

Same of course for bottom, left, right, rect, and loc

On Tue, Mar 14, 2017 at 10:12 AM, Bob Hall via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Is it possible to get the location of the IDE Script editor window? I need
> to confirm what I suspect is a bug in 8.1.3 and need the top coordinate of
> the IDE script window to confirm for bug report.
>
> I have a multi-monitor setup for my dev machine. One of the monitors is
> portrait, the other is landscape (iMac 27”). As of 8.1.3 on Mac OS X
> 10.12.3, the top location of “system” windows (IDE script editor,
> answer/ask, toolbar as examples) appear to use the smallest value of EITHER
> screen to set the top location of the window and not the top of the monitor
> the window opens on.
>
> This results in IDE script editor, answer/ask not being accessible/visible
> as it is off the screen to the top on the Landscape monitor. If the top of
> the portrait monitor is “higher” relatively then the landscape monitor, It
> appears as though the top location of the portrait monitor is used even
> when the window opens on the landscape monitor. I would like to confirm
> this behavior thus my question above.
>
> I searched for a bug about this and while I’m seeing some that are
> similar, this I believe is a new one and is actually came from an LC9
> regression. I’ve seen this same thing in LC9 since DP1 and now it appears
> in LC 8.1.3 but not 8.1.2 or prior versions.
>
> For the curious… I will attempt to show in text graphics how the monitors
> are oriented.
>
> (Screen orientation in System prefs using text — I hope this comes through)
> __
> |  |
> |  |__
> |  | |
> |  | |
> |  |__|
> |__|
>
> I use the portrait display for coding (nice and long with ability to have
> debugging displayed with lots of room). LC IDE/system windows on the
> landscape display have the top of the window set using the value from the
> portrait display (I think) as they display off screen to the top.
>
> If I orient the displays in System Preferences as:
> __ __
> |  | |
> |  | |
> |  |__|
> |  |
> |__|
>
> Everything works fine as the top of both monitors is the same. The issue
> with this is that the monitors are not“oriented to their physical relative
> positions so it's a little frustrating to move the cursor from portrait to
> landscape and back again. Not a big deal but different and kind of a pain
> compared to prior versions.
>
> This behavior started in LC 8.1.3. LC 8.1.2 works perfectly.
>
> Thanks in advance,
> Bob
> ___
> 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/listinfo/use-livecode
___
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/listinfo/use-livecode

Help troubleshooting IDE Script Editor Window Position

2017-03-14 Thread Bob Hall via use-livecode
Is it possible to get the location of the IDE Script editor window? I need to 
confirm what I suspect is a bug in 8.1.3 and need the top coordinate of the IDE 
script window to confirm for bug report.

I have a multi-monitor setup for my dev machine. One of the monitors is 
portrait, the other is landscape (iMac 27”). As of 8.1.3 on Mac OS X 10.12.3, 
the top location of “system” windows (IDE script editor, answer/ask, toolbar as 
examples) appear to use the smallest value of EITHER screen to set the top 
location of the window and not the top of the monitor the window opens on.

This results in IDE script editor, answer/ask not being accessible/visible as 
it is off the screen to the top on the Landscape monitor. If the top of the 
portrait monitor is “higher” relatively then the landscape monitor, It appears 
as though the top location of the portrait monitor is used even when the window 
opens on the landscape monitor. I would like to confirm this behavior thus my 
question above.

I searched for a bug about this and while I’m seeing some that are similar, 
this I believe is a new one and is actually came from an LC9 regression. I’ve 
seen this same thing in LC9 since DP1 and now it appears in LC 8.1.3 but not 
8.1.2 or prior versions.

For the curious… I will attempt to show in text graphics how the monitors are 
oriented.

(Screen orientation in System prefs using text — I hope this comes through)
__
|  |
|  |__
|  | |
|  | |
|  |__|
|__|

I use the portrait display for coding (nice and long with ability to have 
debugging displayed with lots of room). LC IDE/system windows on the landscape 
display have the top of the window set using the value from the portrait 
display (I think) as they display off screen to the top. 

If I orient the displays in System Preferences as:
__ __
|  | |
|  | |
|  |__|
|  |
|__|

Everything works fine as the top of both monitors is the same. The issue with 
this is that the monitors are not“oriented to their physical relative positions 
so it's a little frustrating to move the cursor from portrait to landscape and 
back again. Not a big deal but different and kind of a pain compared to prior 
versions.

This behavior started in LC 8.1.3. LC 8.1.2 works perfectly.

Thanks in advance,
Bob
___
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/listinfo/use-livecode

Re: Livecode HTML5 networking question

2017-03-14 Thread Richard Gaskin via use-livecode

Mike Doub wrote:

> Bob,  I understand that.  You misunderstood my question.  If I use
> that statement in app,  save it as am html5 app,  will the app
> function?
>
> The documentation says networking is not supported.  What exactly
> does that mean?  Is the statement in question, networking?

I had thought GET and POST were added to the HTML exports recently, no?

--
 Richard Gaskin
 Fourth World Systems
 Software Design and Development for the Desktop, Mobile, and the Web
 
 ambassa...@fourthworld.comhttp://www.FourthWorld.com

___
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/listinfo/use-livecode


Re: is LCs answer folder state of the art?

2017-03-14 Thread J. Landman Gay via use-livecode

That's shattering news.
--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com



On March 14, 2017 9:48:05 AM Mike Bonner via use-livecode 
 wrote:



What a pane. (see what I did there because of what you did there?)


On Tue, Mar 14, 2017 at 8:44 AM, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:


You can't fix a broken Windows. (see what I did there?)

Bob S


> On Mar 13, 2017, at 18:04 , Mark Wieder via use-livecode <
use-livecode@lists.runrev.com> wrote:
>
> Hmmm. Someone should fix Windows.
> Is there a bug report for that?
>
> --
> Mark Wieder


___
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/listinfo/use-livecode


___
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/listinfo/use-livecode




___
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/listinfo/use-livecode


Re: Livecode HTML5 networking question

2017-03-14 Thread Mike Doub via use-livecode
Bob,  I understand that.  You misunderstood my question.  If I use that 
statement in app,  save it as am html5 app,  will the app function? 

The documentation says networking is not supported.  What exactly does that 
mean?  Is the statement in question, networking? 

-= Mike 


  Original Message  
From: use-livecode@lists.runrev.com
Sent: March 14, 2017 10:47 AM
To: use-livecode@lists.runrev.com
Reply-to: use-livecode@lists.runrev.com
Cc: bobsnei...@iotecdigital.com
Subject: Re: Livecode HTML5 networking question

That is not HTML5. That is a standard Livecode function that has been around 
since version 1.0. 

Bob S


> On Mar 14, 2017, at 05:59 , Mike Doub via use-livecode 
>  wrote:
> 
> I was thinking about putting together a little weather app and trying the
> html5 feature of livecode.  I read that networking is not supported.   Does
> that mean that the following is not supported?
> 
> put URL  ("https://api.darksky.net/forecast/; & mykey & "/" & LatLon) into
> wData
> 
> If not my project is going on hold.
> 
> Thanks in advance.
> 
>    -= Mike


___
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/listinfo/use-livecode
___
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/listinfo/use-livecode

Re: Livecode HTML5 networking question

2017-03-14 Thread Bob Sneidar via use-livecode
That is not HTML5. That is a standard Livecode function that has been around 
since version 1.0. 

Bob S


> On Mar 14, 2017, at 05:59 , Mike Doub via use-livecode 
>  wrote:
> 
> I was thinking about putting together a little weather app and trying the
> html5 feature of livecode.  I read that networking is not supported.   Does
> that mean that the following is not supported?
> 
> put URL  ("https://api.darksky.net/forecast/; & mykey & "/" & LatLon) into
> wData
> 
> If not my project is going on hold.
> 
> Thanks in advance.
> 
>-= Mike


___
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/listinfo/use-livecode


Re: is LCs answer folder state of the art?

2017-03-14 Thread Mike Bonner via use-livecode
What a pane. (see what I did there because of what you did there?)


On Tue, Mar 14, 2017 at 8:44 AM, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> You can't fix a broken Windows. (see what I did there?)
>
> Bob S
>
>
> > On Mar 13, 2017, at 18:04 , Mark Wieder via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Hmmm. Someone should fix Windows.
> > Is there a bug report for that?
> >
> > --
> > Mark Wieder
>
>
> ___
> 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/listinfo/use-livecode
>
___
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/listinfo/use-livecode


Re: is LCs answer folder state of the art?

2017-03-14 Thread Bob Sneidar via use-livecode
You can't fix a broken Windows. (see what I did there?) 

Bob S


> On Mar 13, 2017, at 18:04 , Mark Wieder via use-livecode 
>  wrote:
> 
> Hmmm. Someone should fix Windows.
> Is there a bug report for that?
> 
> -- 
> Mark Wieder


___
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/listinfo/use-livecode


Livecode HTML5 networking question

2017-03-14 Thread Mike Doub via use-livecode
I was thinking about putting together a little weather app and trying the
html5 feature of livecode.  I read that networking is not supported.   Does
that mean that the following is not supported?

put URL  ("https://api.darksky.net/forecast/; & mykey & "/" & LatLon) into
wData

If not my project is going on hold.

Thanks in advance.

-= Mike
___
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/listinfo/use-livecode


how to remove black title bar in browser widget when showing a pdf?

2017-03-14 Thread Tiemo Hollmann TB via use-livecode
Hello,

LC 8.1.3, Windows 10: When I am displaying a pdf (local or web) in the
browser widget, there is a black title bar on top of the pdf, which occupies
the top 45 pixels of the browser widget. When hovering over the widget, the
name of the pdf is shown within this black title bar.

I didn't found any option to not show this title bar within the browser
widget. Do I have to live with it or is there an option or a trick I haven't
found yet?

Thanks

Tiemo

 

 

___
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/listinfo/use-livecode


AW: is LCs answer folder state of the art?

2017-03-14 Thread Tiemo Hollmann TB via use-livecode
Thanks for testing (yes it was Windows only, LC 8). I'll ask Satya, if he
can fix it.

Tiemo


-Ursprüngliche Nachricht-
Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag
von Mark Wieder via use-livecode
Gesendet: Dienstag, 14. März 2017 02:05
An: How to use LiveCode 
Cc: Mark Wieder 
Betreff: Re: is LCs answer folder state of the art?

On 03/13/2017 03:24 PM, Richard Gaskin via use-livecode wrote:
> Mike Bonner wrote:
>
>> On windows, only folders show.
>
> I just checked this by going into Settings in IE on Win 10 and 
> changing the Downloads folder - the dialog MS brings up for that shows
only folders.
>

Hmmm. Someone should fix Windows.
Is there a bug report for that?

--
  Mark Wieder
  ahsoftw...@gmail.com

___
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/listinfo/use-livecode


___
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/listinfo/use-livecode