Re: mergBLE usage

2018-04-23 Thread Douglas Ruisaard via use-livecode
Actually... I didn't make that association... so thanks for your help in my 
previous exploits in mergBLE ... *AND*, of course (as you probably guessed), 
your offering this time was spot on!.. I'm still getting a handle on how LC 
handles things like background processing.  I'm used to having explicit 
commands to send code off to run in the background.  So the "timer" code runs 
in the "background" while the BLE commands and functions search for a 
connection.  Cool!  I'll get my head wrapped around this eventually...

As to "dr_mumps", those are my initials "dr" and the MUMPS environment (used 
extensively in the VA hospitals lab systems) is my true expertise

Cheers and thanks again!
Doug

Douglas Ruisaard
Trilogy Software
(250) 573-3935

> 
> Ah... I didn't connect the "Doug" aka dr_mumps with your full name.  (And you 
> can probably guess that
> I'm milbybw).
> 
> That's what I was saying, you need to write your own timeout.
> 
> local sTimeoutCounter
> 
> on openCard
>   -- do your other stuff
>   put 20 into sTimeoutCounter
>   send "timeoutCheck" to me in 100 milliseconds end openCard
> 
> on timeoutCheck
>   -- using "-1" as the signal that we have found a device
>   if sTimeoutCounter = -1 then
> exit timeoutCheck
>   end if
> 
>   subtract 1 from sTimeoutCounter
>   if sTimeoutCounter = 0 then
> answer "Did not find anything in time"
> -- call your timeout handler
>   else
> send "timeoutCheck" to me in 100 milliseconds
>   end if
> end timeoutCheck
> 
> on mergBLEDidDiscoverPeripheral pPeripheral, pName, pRSSI
>   -- in the code where you identify that you have found your particular 
> device, add this
>   put -1 into sTimeoutCounter
> end mergBLEDidDiscoverPeripheral
> 
> 


___
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: TOOLS ROUNDUP! TOOLS ROUNDUP!

2018-04-23 Thread Mark Talluto via use-livecode
> I'm still thinking about sessions for LCG.  One of the suggestions I had 
> seen was an intro on tool x.  How about a tools roundup?  Names and URL's 
> for your favorite LC tools go in this thread, please.  More is better so I 
> don't leave anyone out. 

Over the years we have made some tools that we find useful. It comes as a 
toolbar that sits under the LC tools.

http://canelasoftware.com/pub/canela/DEV_TOOLS.rev.zip 

Simply place this in your plugins folder for easy access. Or pull out the parts 
you like and add them to your own tools.

DEV TOOLS
Normally used with Toolbar Icons turned off
Dev Tools will place itself under the LC toolbar
GNU LESSER GENERAL PUBLIC LICENSE (LGPL3), full license in stack 'dev tools' 
UNDER HANDLER 'GNULICENSE'

LIVECODE
- Clear message box history
- Upper case everything in clipboard
- Toggle 'hidePalette' property
- Support for script editor dark themes. You manually set the dark colors in 
script editor preferences. Select 'default' for colorization. This changes the 
font colors in script editor to work with dark backgrounds. Supports the 
differences between LC 8/9 in terms of how the handler list is generated. 
- Various keyboard shortcuts for:
-   toggling pointer/browse tool (ctrl - tab)
-   hide/show handler list in script editor (ctrl - +)
-   hide/show lower pane in script editor (ctrl - *)
-   hide/show menubar in Mac (option - spacebar)
-   hide/show Dev Tools (option/alt - z)
-   hide/show LC project browser (cmd - e)

TIMING
- Easily time code for benchmarking

CODE LINTER/CLEANER
- Check code for variable rules
- Cleans spacing between handlers
- With 'script compilation mode' engaged, find variables that could not be 
cleaned or auto declared

ORPHANED PUTS
- Globally searches all code and generates a list of lines with orphaned puts
-Click on list to be taken to statements found
- Check one script in the clipboard and add '& LF after the message box' when 
you want to use puts as a log

SOCKETS
- List all open sockets
- Optionally close all sockets

CONTROL DETAILS
- Hover over a control and get the full path of the control in 'Dev Tools'
-Optionally: hold down the option key while hovering a have the full path 
of control placed in clipboard
- Other useful details about the control are listed as well like: id, layer, 
lock, autoHilite, width, height, top/left/right/bottom

OTHER THINGS
- If you poke around, you will find other nuggets in there that may/not be 
useful to you. Those listed above are used regularly. 
___
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: TOOLS ROUNDUP! TOOLS ROUNDUP!

2018-04-23 Thread J. Landman Gay via use-livecode

On 4/23/18 12:04 PM, dunbarx via use-livecode wrote:

There must be something different in our setups. All I did was write a
rawkeyUp handler to return the value of my mouse's right-click. Either you
get a different value with that action, or something in your machine is
intercepting that "message" before LC does.


The right-click contextual menu has been in LC forever. It's always 
available when using the edit tool, for the browse tool you need to add 
some supporting keyboard presses (Cmd-control-shift.) The contextual 
menu has lots of handy items, I particularly like "Paste into group" 
which is a nice time-saver.


I use Control-tab to toggle between edit and browse tools. That combo 
was recently implemented in the script editor, but that's fine, it still 
works when a stack is frontmost.


--
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: Typesetting Fields

2018-04-23 Thread Sannyasin Brahmanathaswami via use-livecode
I decided to 

hide fid; 
 fill the field with "plain text" ; 
 typeset the field;
show fld

I don't see any processing time in the phone (some list are 200+ line longs); 
happens in under 10 milliseconds

…[other code]
repeat for each line x in tKeys
 put sCurrentPlayListA["audioFiles"] [x]["Title"] after tTitles
 if sCurrentPlayListA["audioFiles"] [x]["media_type"] ="audio/song" then
 put cr ["audioFiles"] [x]["artists"] after tTitles
 else
 put cr after tTitles
 end if
 put cr after tTitles
end repeat
end switch
put playlist_GetCurrent() into fld "title-label" of card "listen-browse"
go to card "listen-browse"

hide fld "audioList"

put tTitles into fld "audioList" 

typesetAudioList

   show fld "audioList"

if the formattedHeight fld "audioList" > the height of fld "AudioList" then
  send "CreateScroller audioList" to fld "audioList" of card "listen-browse"
   end if
   put  sTargetPlayList into pData["audio_playlist"]
   tracking_RecordActivity "Listen", "navigation/playlist", pData
end playlist_Instantiate

command typeSetAudioList
 put 0 into tX
 repeat with x =1 to the number lines in fld "audioList"
   add 1 to tX
If (tX mod 2) = 0 then
 set the leftIndent of line x of fld "audioList" to 10
 if line x of fld "audioList" <> empty then
  set the spaceBelow of line x of fld "audioList" to 15
  end if
set the textSize of line x of fld "audioList" to 13
 else
set the textSize of line x of fld "audioList" to 15
 end if
 end repeat 
end typeSetAudioList



From: Brian Milby 
Date: Sunday, April 22, 2018 at 5:27 PM
To: How LiveCode 
Cc: Brahma Nathaswami 
Subject: Re: Typesetting Fields

Well, I was just about to suggest that, so I’m not sure what else. But I’m 
fairly new around here.
On Sun, Apr 22, 2018 at 10:25 PM Sannyasin Brahmanathaswami via use-livecode 
 wrote:
and I am hoping not to deal bloated htmltext, like using template

LESSON 
[[tChapterNum]]
[[tSubtitle]]



___
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: Digital Pomegranate

2018-04-23 Thread Dave Kilroy via use-livecode
Great news! :)





-
"The first 90% of the task takes 90% of the time, and the last 10% takes the 
other 90% of the time."
Peter M. Brigham 
--
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: TOOLS ROUNDUP! TOOLS ROUNDUP!

2018-04-23 Thread dunbarx via use-livecode
Randy.

There must be something different in our setups. All I did was write a
rawkeyUp handler to return the value of my mouse's right-click. Either you
get a different value with that action, or something in your machine is
intercepting that "message" before LC does.

Craig



--
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: TOOLS ROUNDUP! TOOLS ROUNDUP!

2018-04-23 Thread Randy Hengst via use-livecode
Hi Craig,

That does sound handy. But for me, key 65473 references F4 rather than the 
right mouse button. Did I read your message correctly?

When I have the the Pointer Tool selected and right-click the mouse, I get an 
LC  contextual menu.

I just put your handler in the stack script. Will that make a difference 
compared to using it as a plug-in?

MacOS 10.12.6 
LC 8.1.8

randy hengst
-
> On Apr 23, 2018, at 10:11 AM, dunbarx via use-livecode 
>  wrote:
> 
> Hi.
> 
> My most useful gadget is a very simple plug-in. It toggles the Browse and
> Pointer tools when right-clicking my mouse:
> 
> 
> on rawKeyUp tKey
> if (tKey = 65473 and the tool = "browse tool") then choose "pointer tool"
> else choose "browse tool"
> end rawKeyUp
> 
> Craig Newman
> 
> 
> 
> 
> --
> 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

___
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: Digital Pomegranate

2018-04-23 Thread Heather Laine via use-livecode
I'm delighted to hear of the outcome, and especially that all our friends at 
Digital Pomegranate are safe. I think this is probably the moment to intervene 
and remind everyone of the "no politics" list rule... before things slip away 
from us...

Best Regards and Peace to all :)

Heather

> On 23 Apr 2018, at 16:48, Bob Sneidar via use-livecode 
>  wrote:
> 
> Not to stir things up, but Turkey in 1915 was run by people who are no longer 
> alive. To expect their descendants to apologize for something then never did 
> would have no meaning. It would be like asking me to aoplogize for injustices 
> done during the French revolution. 
> 
> Bob S
> 
> 
>> On Apr 23, 2018, at 08:28 , Mark Wieder via use-livecode 
>>  wrote:
>> 
>>> I see from the “Radio Free Europe” news that Sarikisian resigned. Great 
>>> news! Congratulations!
>> 
>> And I think equally important is that Sarkisian acknowledged that his reason 
>> for resigning that the movement in the street is against him, not that he 
>> was "going to spend more time with his family". This is indeed great news. 
>> Next step, get Turkey to apologize for 1915.
>> 
>> -- 
>> 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

Re: 8.1.10 rc1 -- Upgrade MissIng Splash Screen

2018-04-23 Thread Mark Talluto via use-livecode


> On Apr 22, 2018, at 3:48 PM, Sannyasin Brahmanathaswami via use-livecode 
>  wrote:
> 
> Oh joy… back at it went Apple's requirements!
> 
> Upgraded
> 
> 8.1.10. rc 1
> Mac OS X  10.13.3
> xCode 9.3
> 
> Now, in a standalone, it can't find the icon, even though I checked all the 
> standalone builder app logos and they are all filled. But the phone, iOS, I 
> get a generic app icon, not my app logo.
> 
> Is anyone having this problem? I worked on 8.1.9, before I upgraded xCode, 
> and phone and the Mac OS X..
> 
> Now it doesn't work in 8.1.9 either…


https://quality.livecode.com/show_bug.cgi?id=21225 


Best regards,

Mark Talluto
livecloud.io 
nursenotes.net 
canelasoftware.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: Digital Pomegranate

2018-04-23 Thread Bob Sneidar via use-livecode
Not to stir things up, but Turkey in 1915 was run by people who are no longer 
alive. To expect their descendants to apologize for something then never did 
would have no meaning. It would be like asking me to aoplogize for injustices 
done during the French revolution. 

Bob S


> On Apr 23, 2018, at 08:28 , Mark Wieder via use-livecode 
>  wrote:
> 
>> I see from the “Radio Free Europe” news that Sarikisian resigned. Great 
>> news! Congratulations!
> 
> And I think equally important is that Sarkisian acknowledged that his reason 
> for resigning that the movement in the street is against him, not that he was 
> "going to spend more time with his family". This is indeed great news. Next 
> step, get Turkey to apologize for 1915.
> 
> -- 
> 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

RE: Digital Pomegranate

2018-04-23 Thread Ralph DiMola via use-livecode
+1

How is this not above the fold?
Hang in there brother... Were praying for you, your family, friends and country.
1915... Tragedy 1.5 mil

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 
Mark Wieder via use-livecode
Sent: Monday, April 23, 2018 11:29 AM
To: William Prothero via use-livecode
Cc: Mark Wieder
Subject: Re: Digital Pomegranate

On 04/23/2018 08:12 AM, William Prothero via use-livecode wrote:
> I see from the “Radio Free Europe” news that Sarikisian resigned. Great news! 
> Congratulations!

And I think equally important is that Sarkisian acknowledged that his reason 
for resigning that the movement in the street is against him, not that he was 
"going to spend more time with his family". This is indeed great news. Next 
step, get Turkey to apologize for 1915.

--
  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

Re: Get only Pathname of a dragdropped Object

2018-04-23 Thread Bob Sneidar via use-livecode
Of course, this would not be necessary if the folder names ended with a slash. 
Unfortunately, answer folder returns a path without a trailing slash, so you 
have to touch the file system for every item in the list. For a long list I 
imagine that is a lot of overhead. An alternative might be to assume all 
folders until you process the list, then process as folders inside a try catch 
statement and process as a file when an error or other condition is 
encountered. 

Bob S


> On Apr 22, 2018, at 03:58 , Mike Bonner via use-livecode 
>  wrote:
> 
> -- Go through the list and determine whether each line
> -- of the data is a folder or if it is a file


___
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: Digital Pomegranate

2018-04-23 Thread Mark Wieder via use-livecode

On 04/23/2018 08:12 AM, William Prothero via use-livecode wrote:

I see from the “Radio Free Europe” news that Sarikisian resigned. Great news! 
Congratulations!


And I think equally important is that Sarkisian acknowledged that his 
reason for resigning that the movement in the street is against him, not 
that he was "going to spend more time with his family". This is indeed 
great news. Next step, get Turkey to apologize for 1915.


--
 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

Get only Pathname of a dragdropped Object

2018-04-23 Thread Hillen Richard via use-livecode
Thank you all for your help!
Richard.

___
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: Title Case

2018-04-23 Thread Bob Sneidar via use-livecode
What I do is I have a "force" flag where you can specify whether or not you 
want to force olny the first letter to be capitalized and the rest lowercase, 
or else capitilize the first letter of each word and leave the rest as it is. 
Therefore titleCase("mcReary", false) will produce "McReary". But my function 
is a validation for user input, not for converting lists of titles to proper 
case. 

I suppose it wouldn't be hard to compile every known compound name prefix (Mc, 
Mac, O' etc)

Bob S


> On Apr 21, 2018, at 07:41 , Mike Bonner via use-livecode 
>  wrote:
> 
> Not sure what you mean?
> Also, definitely use one of the Andy versions to "case" your titles.  Much
> more comprehensive solution.  The only edge case I can see would be
> something like a title with a McGary type name, pretty much impossible to
> account for without looking up every word in a names DB.


___
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: Digital Pomegranate

2018-04-23 Thread William Prothero via use-livecode
I see from the “Radio Free Europe” news that Sarikisian resigned. Great news! 
Congratulations!
Bill


> On Apr 23, 2018, at 8:10 AM, William Prothero via use-livecode 
>  wrote:
> 
> Best wishes to you and your staff. I hope you and the citizens of Armenia 
> succeed.
> Bill 
> William A. Prothero
> http://earthlearningsolutions.org
> 
>> On Apr 23, 2018, at 4:11 AM, Todd Fabacher via use-livecode 
>>  wrote:
>> 
>> There are few moments in life that are more important than business and
>> coding, this is one of them. All of Digital Pomegranate is our on the
>> street rejecting the former president who had grabbed power after his term
>> limits and has become a dictator in the former Soviet country. As you would
>> expect, lots of arrests and the hospitals are full. Let's just hope they
>> don't start shooting as have threatened to do.
>> 
>> This has been going on for 10 days now and will continue. It is now
>> starting to hit the nightly news cycle, so you will see it in the next few
>> days. The internet has been on and off and now the entire company is on the
>> streets asking for a free election and better government, so we will not be
>> providing support for our new widgets for a few days.
>> 
>> https://www.rferl.org/a/armenia-fresh-protests-sarkisian-yerevan-pashinian/29186416.html
>> 
>> --Todd Fabacher
>> ___
>> 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: TOOLS ROUNDUP! TOOLS ROUNDUP!

2018-04-23 Thread dunbarx via use-livecode
Hi.

My most useful gadget is a very simple plug-in. It toggles the Browse and
Pointer tools when right-clicking my mouse:


on rawKeyUp tKey
if (tKey = 65473 and the tool = "browse tool") then choose "pointer tool"
else choose "browse tool"
end rawKeyUp

Craig Newman




--
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: Digital Pomegranate

2018-04-23 Thread William Prothero via use-livecode
Best wishes to you and your staff. I hope you and the citizens of Armenia 
succeed.
Bill 
William A. Prothero
http://earthlearningsolutions.org

> On Apr 23, 2018, at 4:11 AM, Todd Fabacher via use-livecode 
>  wrote:
> 
> There are few moments in life that are more important than business and
> coding, this is one of them. All of Digital Pomegranate is our on the
> street rejecting the former president who had grabbed power after his term
> limits and has become a dictator in the former Soviet country. As you would
> expect, lots of arrests and the hospitals are full. Let's just hope they
> don't start shooting as have threatened to do.
> 
> This has been going on for 10 days now and will continue. It is now
> starting to hit the nightly news cycle, so you will see it in the next few
> days. The internet has been on and off and now the entire company is on the
> streets asking for a free election and better government, so we will not be
> providing support for our new widgets for a few days.
> 
> https://www.rferl.org/a/armenia-fresh-protests-sarkisian-yerevan-pashinian/29186416.html
> 
> --Todd Fabacher
> ___
> 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: TOOLS ROUNDUP! TOOLS ROUNDUP!

2018-04-23 Thread Paul Dupuis via use-livecode
On 4/22/2018 11:22 PM, Brian Milby wrote:
> I can see that stack being very useful. If I make any good changes
> I’ll let you know. I’m thinking that listing behaviors in the index
> would be useful.

And there in lies one of the main issues with home made tools (like my
script reporter) in that people make them for only what they need and I
rarely find myself using behaviors ;-)

Some day though, I will probably have cause to really make use of
behaviors and then find myself adding information on which object have
an associated behavior. Actually, if I remember, I;'ll do it the next
time I am modifying the stack since that is actually pretty easy to add:

if the behavior of  is not empty then put the behavior of ... (into the report)

-- Paul


___
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: Digital Pomegranate

2018-04-23 Thread Tom Glod via use-livecode
all the best to the people of Armenia...may freedom win out.

On Mon, Apr 23, 2018 at 7:14 AM, Kevin Miller via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Man that sounds rough. I hope things become ok over there.
>
> Kevin
>
> Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
> LiveCode: Develop Yourself
>
>
>
>
> On 23/04/2018, 12:11, "use-livecode on behalf of Todd Fabacher via
> use-livecode"  use-livecode@lists.runrev.com> wrote:
>
> >There are few moments in life that are more important than business and
> >coding, this is one of them. All of Digital Pomegranate is our on the
> >street rejecting the former president who had grabbed power after his term
> >limits and has become a dictator in the former Soviet country. As you
> >would
> >expect, lots of arrests and the hospitals are full. Let's just hope they
> >don't start shooting as have threatened to do.
> >
> >This has been going on for 10 days now and will continue. It is now
> >starting to hit the nightly news cycle, so you will see it in the next few
> >days. The internet has been on and off and now the entire company is on
> >the
> >streets asking for a free election and better government, so we will not
> >be
> >providing support for our new widgets for a few days.
> >
> >https://www.rferl.org/a/armenia-fresh-protests-
> sarkisian-yerevan-pashinian
> >/29186416.html
> >
> >--Todd Fabacher
> >___
> >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: Digital Pomegranate

2018-04-23 Thread Kevin Miller via use-livecode
Man that sounds rough. I hope things become ok over there.

Kevin

Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
LiveCode: Develop Yourself




On 23/04/2018, 12:11, "use-livecode on behalf of Todd Fabacher via
use-livecode"  wrote:

>There are few moments in life that are more important than business and
>coding, this is one of them. All of Digital Pomegranate is our on the
>street rejecting the former president who had grabbed power after his term
>limits and has become a dictator in the former Soviet country. As you
>would
>expect, lots of arrests and the hospitals are full. Let's just hope they
>don't start shooting as have threatened to do.
>
>This has been going on for 10 days now and will continue. It is now
>starting to hit the nightly news cycle, so you will see it in the next few
>days. The internet has been on and off and now the entire company is on
>the
>streets asking for a free election and better government, so we will not
>be
>providing support for our new widgets for a few days.
>
>https://www.rferl.org/a/armenia-fresh-protests-sarkisian-yerevan-pashinian
>/29186416.html
>
>--Todd Fabacher
>___
>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


Digital Pomegranate

2018-04-23 Thread Todd Fabacher via use-livecode
There are few moments in life that are more important than business and
coding, this is one of them. All of Digital Pomegranate is our on the
street rejecting the former president who had grabbed power after his term
limits and has become a dictator in the former Soviet country. As you would
expect, lots of arrests and the hospitals are full. Let's just hope they
don't start shooting as have threatened to do.

This has been going on for 10 days now and will continue. It is now
starting to hit the nightly news cycle, so you will see it in the next few
days. The internet has been on and off and now the entire company is on the
streets asking for a free election and better government, so we will not be
providing support for our new widgets for a few days.

https://www.rferl.org/a/armenia-fresh-protests-sarkisian-yerevan-pashinian/29186416.html

--Todd Fabacher
___
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