Re: Show invisible characters (tab, space, return) in field

2018-12-07 Thread Paul Dupuis via use-livecode
You can set the imageSource of the non-printing characters. They will 
remain spaces, tabs, and returns, but can have a small image (you will 
have to make or find) displayed in their place. See imageSource in the 
Dictionary.


set the imageSource of character to {imageID |imageName |imageURL |empty}


On 12/7/2018 8:12 PM, Kaveh Bazargan via use-livecode wrote:

Thanks Bob. I did mean non-printing characters. I think just space, tab and
return.

The problem with replacing with with a character is that of course it is
not a space any more, so text would not wrap as normal. I need the user to
edit as normal and with normal functionality but see the normally invisible
characters. So seems I would need a native solution. :-(

On Sat, 8 Dec 2018 at 00:22, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:


Not natively. You would have to replace every non-printing character
(that's what you mean by invisible I suppose) with a square digbat or
something. If you want to filter for only printable characters, I have a
function that dies that, and also there are regex strings for that sort of
thing.

Bob S



On Dec 7, 2018, at 15:44 , Kaveh Bazargan via use-livecode <

use-livecode@lists.runrev.com> wrote:

Is there any way of seeing invisible characters in a text field, similar

to

the view in text editors and word processors?

--
Kaveh Bazargan


___
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: Show invisible characters (tab, space, return) in field

2018-12-07 Thread Kaveh Bazargan via use-livecode
Thanks Bob. I did mean non-printing characters. I think just space, tab and
return.

The problem with replacing with with a character is that of course it is
not a space any more, so text would not wrap as normal. I need the user to
edit as normal and with normal functionality but see the normally invisible
characters. So seems I would need a native solution. :-(

On Sat, 8 Dec 2018 at 00:22, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Not natively. You would have to replace every non-printing character
> (that's what you mean by invisible I suppose) with a square digbat or
> something. If you want to filter for only printable characters, I have a
> function that dies that, and also there are regex strings for that sort of
> thing.
>
> Bob S
>
>
> > On Dec 7, 2018, at 15:44 , Kaveh Bazargan via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Is there any way of seeing invisible characters in a text field, similar
> to
> > the view in text editors and word processors?
> >
> > --
> > Kaveh Bazargan
>
>
> ___
> 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
>


-- 
Kaveh Bazargan
Director
River Valley Technologies  • Twitter
 • LinkedIn

___
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: Show invisible characters (tab, space, return) in field

2018-12-07 Thread Bob Sneidar via use-livecode
Not natively. You would have to replace every non-printing character (that's 
what you mean by invisible I suppose) with a square digbat or something. If you 
want to filter for only printable characters, I have a function that dies that, 
and also there are regex strings for that sort of thing. 

Bob S


> On Dec 7, 2018, at 15:44 , Kaveh Bazargan via use-livecode 
>  wrote:
> 
> Is there any way of seeing invisible characters in a text field, similar to
> the view in text editors and word processors?
> 
> -- 
> Kaveh Bazargan


___
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: remove empty lines in DG

2018-12-07 Thread Bob Sneidar via use-livecode
This can happen if there are keys in the data that are not numbered. Try 
getting the dgData of the datagrid and examining the array in the debugger. 
That should show you your keys. You can possibly do a repeat with i = 1 to  and populate another array with the records 
from the original array, then set the dgData to the new array. 

Bob S


> On Dec 7, 2018, at 11:16 , JJS via use-livecode 
>  wrote:
> 
> Hi,
> 
> 
> i don't know why but with one stack i have when the DG is populated, empty 
> lines at the top which i can't seem to remove.
> 
> Data is being fetched from a DB, then base64decoded, then decrypted. In 
> neither state i could find an empty line.
> 
> Now it seems only with this stack on windows.
> 
> The same trick i do on windows and mobile with other stacks and the DG and 
> this seems to work ok.
> 
> I tried to remove the empty lines but no luck. and also:
> 
> 
> *--set the dgProp["sort by column"] of group "DataGrid 1" of card 1 to 
> "Nummer"*
> 
> *dispatch*"SortByColumn"to*group*"DataGrid 1"ofcard1with"Nummer"
> 
> Anyone has a trick? before i decide to delete the DG and replace with a new 
> one.
> 
> 
> thanks!
> 
> 
> ___
> 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


Show invisible characters (tab, space, return) in field

2018-12-07 Thread Kaveh Bazargan via use-livecode
Is there any way of seeing invisible characters in a text field, similar to
the view in text editors and word processors?

-- 
Kaveh Bazargan
Director
River Valley Technologies  • Twitter
 • LinkedIn

___
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: Xcode for El Capitan

2018-12-07 Thread Colin Holgate via use-livecode
The link we gave to the downloads page has a search field. I tried Xcode 8, and 
it seems they are all there. The latest v8 is 8.3.3, and it isn’t easy to tell 
which OS it needs.

This Wikipedia article backs up your theory that 8.2.1 is the latest for El 
Capitan:

https://en.wikipedia.org/wiki/Xcode


> On Dec 7, 2018, at 12:42 PM, JB via use-livecode 
>  wrote:
> 
> I am using El Capitan 10.11.6 and my Xcode is
> version 8.2.1.  It is possible I missed a later
> version but if it was upgraded automatically
> then that is the latest version that will work
> on my El Capitan.
> 
> JB
> 
> 
>> On Dec 7, 2018, at 1:22 PM, Paul Dupuis via use-livecode 
>>  wrote:
>> 
>> Is there any way or place to download Xcode for El Capitan? I think this is 
>> Xcode 9?
>> 
>> The MacOS app store only has Xcode 10.1 (or I can only find 10.1 which 
>> requires OSX 10.13+ (High Sierra)
>> 
>> Any advice would be welcome.
>> 
>> 
>> ___
>> 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: Xcode for El Capitan

2018-12-07 Thread JB via use-livecode
I am using El Capitan 10.11.6 and my Xcode is
version 8.2.1.  It is possible I missed a later
version but if it was upgraded automatically
then that is the latest version that will work
on my El Capitan.

JB


> On Dec 7, 2018, at 1:22 PM, Paul Dupuis via use-livecode 
>  wrote:
> 
> Is there any way or place to download Xcode for El Capitan? I think this is 
> Xcode 9?
> 
> The MacOS app store only has Xcode 10.1 (or I can only find 10.1 which 
> requires OSX 10.13+ (High Sierra)
> 
> Any advice would be welcome.
> 
> 
> ___
> 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: Xcode for El Capitan

2018-12-07 Thread Colin Holgate via use-livecode
If you have an Apple developer account you can log into you can get older 
versions of Xcode here:

https://developer.apple.com/download/more/

It does have Xcode 9, as well as the later 9.x versions.


> On Dec 7, 2018, at 11:25 AM, Brian Milby via use-livecode 
>  wrote:
> 
> Generally it is better to download Xcode from the Apple developer site than 
> the App Store since you frequently need to have multiple versions around.  
> Older versions are found there.
> 
> Thanks,
> Brian
> On Dec 7, 2018, 3:22 PM -0600, Paul Dupuis via use-livecode 
> , wrote:
>> Is there any way or place to download Xcode for El Capitan? I think this
>> is Xcode 9?
>> 
>> The MacOS app store only has Xcode 10.1 (or I can only find 10.1 which
>> requires OSX 10.13+ (High Sierra)
>> 
>> Any advice would be welcome.
>> 
>> 
>> ___
>> 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: Xcode for El Capitan

2018-12-07 Thread hlowe via use-livecode
Should be available at:

https://developer.apple.com/download/more/

Henry



--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
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: Xcode for El Capitan

2018-12-07 Thread Brian Milby via use-livecode
Generally it is better to download Xcode from the Apple developer site than the 
App Store since you frequently need to have multiple versions around.  Older 
versions are found there.

Thanks,
Brian
On Dec 7, 2018, 3:22 PM -0600, Paul Dupuis via use-livecode 
, wrote:
> Is there any way or place to download Xcode for El Capitan? I think this
> is Xcode 9?
>
> The MacOS app store only has Xcode 10.1 (or I can only find 10.1 which
> requires OSX 10.13+ (High Sierra)
>
> Any advice would be welcome.
>
>
> ___
> 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

Xcode for El Capitan

2018-12-07 Thread Paul Dupuis via use-livecode
Is there any way or place to download Xcode for El Capitan? I think this 
is Xcode 9?


The MacOS app store only has Xcode 10.1 (or I can only find 10.1 which 
requires OSX 10.13+ (High Sierra)


Any advice would be welcome.


___
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


remove empty lines in DG

2018-12-07 Thread JJS via use-livecode

Hi,


i don't know why but with one stack i have when the DG is populated, 
empty lines at the top which i can't seem to remove.


Data is being fetched from a DB, then base64decoded, then decrypted. In 
neither state i could find an empty line.


Now it seems only with this stack on windows.

The same trick i do on windows and mobile with other stacks and the DG 
and this seems to work ok.


I tried to remove the empty lines but no luck. and also:


*--set the dgProp["sort by column"] of group "DataGrid 1" of card 1 to 
"Nummer"*


*dispatch*"SortByColumn"to*group*"DataGrid 1"ofcard1with"Nummer"

Anyone has a trick? before i decide to delete the DG and replace with a 
new one.



thanks!


___
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: Map url in Browser Widget

2018-12-07 Thread hh via use-livecode
> Mike wrote:
> ... does anyone know what needs to be added to the code in order to place a
> "marker" into the map location? ...
> This is what I generate now:
> https://www.google.com/maps/@45.829321,-109.904418,10z

http://maps.google.com/maps?q=45.829321,-109.904418&z=10&t=h

The t=h is for a hybrid view

Another example, for a text query:
https://www.google.com/maps?q=rm+kerner+company&z=10&t=h

Most of this works (scroll the page halfway down):
https://moz.com/ugc/everything-you-never-wanted-to-know-about-google-maps-parameters



___
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