That must be the model up from the one in The George... it was a few minutes
not 45 seconds... ;-)
On 03/09/2013, at 4:50 PM, stephen barncard wrote:
> you mean one of these wondrous machines:
--
M E R Goulding
Software development services
Bespoke application development for vertical markets
you mean one of these wondrous machines:
http://barncard.com/downloads/pancake-printer-2012-03-07%2009.19.40.jpg
(as seen in a Holiday Inn in Fairhope AL.)
On Mon, Sep 2, 2013 at 11:36 PM, Ralph DiMola wrote:
>
> > This is better than a pancake printer.
>
> >>You're kidding right?
>
> Your rig
Thanks Geoff,
Much appreciated!
On 3-9-2013 1:16, Geoff Canyon wrote:
This is the answer I was about to propose.
On Mon, Sep 2, 2013 at 5:58 AM, Monte Goulding
wrote:
On 02/09/2013, at 8:57 PM, Monte Goulding
wrote:
item 1 of tLine,item 2 of tLine,item 3 of tLine
oops... obviously I mea
> This is better than a pancake printer.
>>You're kidding right?
Your right, I lost my brain in a moment of euphoria!
--
M E R Goulding
Software development services
Bespoke application development for vertical markets
mergExt - There's an external for that!
_
Monte-
Monday, September 2, 2013, 10:14:49 PM, you wrote:
>> This is better than a pancake printer.
> You're kidding right?
No, this *is* better. Really. But seriously, dude... pancakes. OK?
--
-Mark Wieder
mwie...@ahsoftware.net
___
use-livecode
On 03/09/2013, at 3:04 PM, Ralph DiMola wrote:
> This is better than a pancake printer.
You're kidding right?
--
M E R Goulding
Software development services
Bespoke application development for vertical markets
mergExt - There's an external for that!
_
Monte,
Thanks your hard work!!!
This is better than a pancake printer.
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 Monte Goulding
Sent: Monday, Septemb
This is the answer I was about to propose.
On Mon, Sep 2, 2013 at 5:58 AM, Monte Goulding
wrote:
>
> On 02/09/2013, at 8:57 PM, Monte Goulding
> wrote:
>
> > item 1 of tLine,item 2 of tLine,item 3 of tLine
>
> oops... obviously I meant item 1 to 3 of tLine...
>
> --
> Monte Goulding
>
> M E R G
Figured it out. For others who may need to know...
put the text of button "MyButton" into ttabs
That retrieves the names of your tabs as a return delimited list. Change it
as you wish. Then reset the button to the new menu tabs with:
set the text of button "MyButton" to ttabs
-- Tom Bodine
Thanks for the nice comments folks.
On 03/09/2013, at 12:22 AM, Roger Eller wrote:
> What are the chances of an external that can feed data to a Google docs
> spreadsheet? I realize that a web form already exists, but directly from LC
> would be very nice.
Anything is possible. Shoot me an ema
Hi all.
I see in the tutorials how to setup a tabbed menu interface, but it doesn't
say how to dynamically add or remove tabs at runtime with script. Is there a
way to access and modify that tabs list and have it update the control on
screen?
Thanks,
Tom Bodine
--
View this message in context:
On Sat, Aug 31, 2013 at 1:34 PM, Dr. Hawkins wrote:
> I believe that the "name shadows another name" bug *only* bites if
> there has already been a strict compilation error.
Nope; I withdraw this. Just had it hit before when the only error in
the session had been checking the menumode of a but
On Sun, Sep 1, 2013 at 9:07 AM, Richmond wrote:
> Certainly the thing with secondary and or mirror screens has to be sorted
> out.
"sorted out" ???
[checks watch]
It's 2013. Since I put a second screen on my mac, I've:
* converted my custom bankruptcy software from HyperCard to SuperCard (1.
I agree with Monte about using arrays. I tried this:
on mouseUp
get fld "oldList"
repeat with y = 1 to the number of lines of it
put item 1 of line y of it into tList["oldList"][y]["country"]
put item 2 of line y of it into tList["oldList"][y]["city"]
put item 3 of line
Wonderful news Monte!
What are the chances of an external that can feed data to a Google docs
spreadsheet? I realize that a web form already exists, but directly from LC
would be very nice.
~Roger
On Sep 2, 2013 12:03 AM, "Monte Goulding"
wrote:
> Hi LiveCoders
>
> The long awaited day has come
Hi Alex, Monte,
Thank you for your fast answers and great approaches.
I've been struggling with this for a few weeks now!
thanks, John.
On 2-9-2013 12:58, Monte Goulding wrote:
On 02/09/2013, at 8:57 PM, Monte Goulding wrote:
item 1 of tLine,item 2 of tLine,item 3 of tLine
oops... obviously
Wow, that was quick :-)
Thanks Alex, it's working fine now
Best,
Pascal
On 2 September 2013 17:34, Alex Tweedly wrote:
> I think the problem is that you are referring to the fields by *number* -
> so when you delete the first one - it's gone. So now the (old) "field 2"
> has become "field 1"
>
I think the problem is that you are referring to the fields by *number*
- so when you delete the first one - it's gone. So now the (old) "field
2" has become "field 1"
Try doing your loop as
repeat with tField = the number of fields *on* card targetCard down to 1
-- Alex.
On 02/09/2013 12:
Hi all
I have a script that creates fields named "Point1", "Point2" ... describing
certain data points on a graph. This works fine. However, when the number
of Points on the new graphic is smaller than on the old, I have old
"PointX" that remain from the previous graphc. Thus I want to implement a
On 02/09/2013, at 8:57 PM, Monte Goulding wrote:
> item 1 of tLine,item 2 of tLine,item 3 of tLine
oops... obviously I meant item 1 to 3 of tLine...
--
Monte Goulding
M E R Goulding - software development services
mergExt - There's an external for that!
__
I would parse both fields into the same array like this:
repeat for each line tLine in field "lastWeek"
put item 4 of tLine into tArray[item 1 of tLine,item 2 of tLine,item 3 of
tLine]["lastWeek"]
end repeat
repeat for each line tLine in field "thisWeek"
put item 4 of tLine into tArray[ite
John,
How about something like (rough, untested pseudo-code)
put 1 into tLast
put 1 into tThis
put the number of lines in pLastWeek into countLast
put the number of lines in pThisWeek into countThis
repeat until the sun goes down (I don't like to do "repeat forever ...")
if tLast > co
An automated system sends me weekly reports with the following structure:
Country,city,device_type,numer_of_devices
I'm working on an app that evaluates these reports and there is one thing I
can't get done.
I'd like to compare this weeks report with that of last week and report
changes.
Outpu
Congratulations, Monte ! The fore coming iOS/Android parity of your external
suites is an amazing good news. Thanks for your talent and more.
Le 2 sept. 2013 à 06:02, Monte Goulding a écrit :
> Hi LiveCoders
>
> The long awaited day has come. With the release of LiveCode 6.1.1 RC 4
> Android
On 02/09/2013, at 4:59 PM, Andrew Henshaw wrote:
> Brilliant, but where can I get them??
>
> Ive just logged into http://www.mergext.com/ and cant see them yet, am I
> being a little impatient
I'm sorry it looks like I dropped it in the wrong folder. You should see it in
downloads now.
Brilliant, but where can I get them??
Ive just logged into http://www.mergext.com/ and cant see them yet, am I being
a little impatient
Thanks
Andy
On 2 Sep 2013, at 05:02, Monte Goulding wrote:
> Hi LiveCoders
>
> The long awaited day has come. With the release of LiveCode 6.1.1 RC 4
26 matches
Mail list logo