iOS: Scrolling a native scroller via script problem

2014-07-20 Thread Gerry
I have a data grid that I'm scrolling in iOS using a native scroller.

I use this card script to scroll the data grid:

on scrollerDidScroll OffsetX, OffsetY
  if   iphoneControlTarget() = "listScroller" then
set the vScroll of group "scroller" to OffsetY
  end if
end scrollerDidScroll

However, on opencard I manually scroll the scroller via script e.g.:

set the vScroll of group "scroller" to 2770

The problem is if the user then touches the scroller, the data grid
jumps to a vScroll of 0.

Anyone have an idea why?

Gerry

___
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: mobile focus

2014-08-29 Thread Gerry
iPhoneControlTarget()

Gerry

On 30 August 2014 13:26, Eric Corbett  wrote:
> Hi Mike,
>
> In my limited use of the native field on mobile, I have come across some key 
> features.
>
> First, when you create the field, I would recommend creating each one in a 
> separate control, like a desktop field to be used as a place holder. Here's 
> the reason:
>
> inputBeginEditing
> inputTextChanged
> inputEndEditing
> inputReturnKey
>
> These messages are sent to the script that created the mobile field. 
> Therefore, when more than one field is required on a card, I create a 
> behavior and each dummy field uses the one behavior. Then at the appropriate 
> time (openCard possibly), I send a dispatch to each field to create the 
> appropriate field. I use switch statements in my create field handler to set 
> the appropriate settings like mobileControlSet 
> [control],"keyboardType","[value]; "returnKeyType","[value]", etc. I also use 
> a switch statement in inputReturnKey to determine what to do next. The switch 
> cases become the short name of me since the object is the field and of course 
> the desktop dummy field is named the same as the native mobile field.
>
> I guess each card would have a different behavior so the one script is not 
> switching between too many fields. You could also create behaviors for 
> specific groups, but the need to set the behavior of the dummy fields is the 
> key, not setting the behavior of the group. One other option to try to create 
> a mobileControlCreate library might be by to chain behaviors, but that's a 
> complicated subject I am looking forward to hearing more about at the 
> conference in Scott Rossi's 'Well Behaved Behaviors' talk.
>
> One other command to keep in mind is mobileControlDo. Specifically, 
> mobileControlDo [control name or ID], "focus". This will cause focus on the 
> field and up comes the keyboard. On iOS, the keyboardActivated message is 
> sent, but on Android, this feature is still broken. To take focus away, the 
> only thing I know to do script wise is 'focus on nothing'.
>
> Maybe there's another way; I'll keep my eye on the thread to see who has more 
> experience and a better idea.
>
> HTH
>
> Eric
>
> On Aug 29, 2014, at 8:05 PM, Mike Kerner wrote:
>
>> How do I figure out which native mobilc field has the focus (or if no
>> native field does)?
>>
>> A field doesn't lose the focus when you do other things like hit buttons,
>> or throw up pick lists, which can make it tricky to deal with fields that
>> have updated values.
>>
>> focusedObject() doesn't seem to work as advertised (it returns the same
>> value no matter which mobile field has the focus, or for that matter, if no
>> field has the focus).
>>
>> I know I could do it the hard way, manually, but...
>>
>> --
>> 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
>
>
> ___
> 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: Russian submarine

2014-09-09 Thread Gerry
Watched about 5.467 seconds of that before I was motion sick :)

g

On 7 Sep 2014, at 8:17 am, Colin Holgate  wrote:

> Anyway, if you too were curious about what it’s like, wonder no longer, I did 
> a Google Glass video of my visit:


___
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: ios8

2014-09-10 Thread Gerry
I just installed the GM release on my iPhone 5. I can install my LC 
6.2.2-compiled apps using Xcode 5.1.1. And they run fine (so far).

g


On 10 Sep 2014, at 4:48 am, Colin Holgate  wrote:

> I used Xcode 6 to get the app onto my iPad.
 
___
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: ios8

2014-09-10 Thread Gerry
I should also mention that I'm running OS X 10.9.4.

g


On 11 Sep 2014, at 1:13 pm, Gerry  wrote:

> I just installed the GM release on my iPhone 5. I can install my LC 
> 6.2.2-compiled apps using Xcode 5.1.1. And they run fine (so far).
> 
> g
> 
> 
> On 10 Sep 2014, at 4:48 am, Colin Holgate  wrote:
> 
>> I used Xcode 6 to get the app onto my iPad.


___
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: iOS 8 & XCode 6

2014-09-17 Thread Gerry
I've upgraded both my iPhone and iPad to iOS 8 and that version of xCode works 
fine for me - I can install apps on both devices.. 

g


On 18 Sep 2014, at 12:50 pm, Alex Shaw  wrote:

> Hi
> 
> Does anyone know when we can expect LC to work with XCode 6?
> 
> Updated my development iPad to iOS8 for testing a few things and of course 
> now XCode 5.1.1 doesn't like it.
> 
> regards
> alex
> 
> ___
> 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: iOS 8 & XCode 6

2014-09-18 Thread Gerry
I meant that XCode 5.1.1 works for me!

g

On 18 Sep 2014, at 3:45 pm, Alex Shaw  wrote:

> Thanks Gerry.
> 
> Will update xcode now.
 

___
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: mobilepick as a live list

2014-09-21 Thread Gerry
Yes, using a native field and a datagrid, and listing matching records pulled 
from a sqlite database.

g


On 22 Sep 2014, at 12:56 am, Mike Kerner  wrote:

> Has anybody created a live select list that updates as you type in a field?


___
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: mobilepick as a live list

2014-09-22 Thread Gerry
Mike Kerner wrote:

> Ooh.  I didn't think of that.  So just make the DG visible?  How do you
> disable all the other controls while the DG is up?

In my case it's already visible (and it's not really being used as a pick list 
in the traditional sense) - it's a scrolling list of items on the left side of 
the iPad screen that the user can search and select (see 
https://dl.dropboxusercontent.com/u/67170/dynamicList.jpg). 

The user enters search terms into the native text control above the data grid 
and it does a dynamic live search for records that match the entered text.

If I needed to hide and show it and to disable all the other controls I might 
group all the elements with a full screen rectangle graphic at the back of the 
group and make the rectangle opaque but set it's blend to 100 - that way 
touches anywhere behind the group wouldn't get through.

Gerry







___
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: Trigger Mobile Page Swipe?

2014-10-05 Thread Gerry
I've tried to do this and didn't get it working. It's just another one of those 
ways in which LiveCode is a 90% iOS solution. 

Gerry

Sent from my iPhone

> On 5 Oct 2014, at 6:52 pm, Scott Rossi  wrote:
> 
> Hi All:
> 
> I never saw any response on the this item below.  I¹m still looking for a
> way to trigger a page scroll with a mobile scroller, so it advances with
> the default momentum.
> 
> Any ideas on how one could do this?
> 
> Thanks & Regards,
> 
> Scott Rossi
> Creative Director
> Tactile Media, UX/UI Design
> 
> 
> 
> 
>> On 8/12/14, 4:28 PM, I wrote:
>> 
>> Anyone know if it's possible to manually trigger a page "advance" on a
>> mobile scroller, when the scroller has paging enabled?
>> 
>> I'm wondering if there's some method to cause the scroller to advance to
>> the next "page" other than setting the scroll of the scroller manually.
>> 
>> Thanks & Regards,
>> 
>> Scott Rossi
> 
> 
> 
> ___
> 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: RELEASE: LiveCode 6.6.4 RC1

2014-10-06 Thread Gerry
And for me I had to manually download the iOS 7.1 simulator - it didn't install 
by default. Found it at xCode > Preferences... > Downloads.


g

> On 7 Oct 2014, at 6:52 am, Chris Sheffield  wrote:
> 
> Maybe you know this already, but I found with Xcode 6 it is now necessary to 
> go in and set up the device simulators that you need for testing. 


___
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: Using The iOS 8 Simulator

2014-10-07 Thread Gerry
Working fine here - I can target any combination of device and iOS version 
(well, except 7.x on the new devices).

More problematic for me is that I can't find where on my (Yosemite GM 2) hard 
drive the simulator directories are. I thought I had it but then Apple moved 
them.

g

> On 8 Oct 2014, at 1:53 pm, Mike Kerner  wrote:
> 
> It's working ok for me.


___
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: Using The iOS 8 Simulator

2014-10-07 Thread Gerry
http://pinkstone.co.uk/where-is-the-documents-directory-for-the-ios-8-simulator/


> On 8 Oct 2014, at 3:42 pm, Gerry  wrote:
> 
> More problematic for me is that I can't find where on my (Yosemite GM 2) hard 
> drive the simulator directories are. I thought I had it but then Apple moved 
> them.


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

2014-10-16 Thread Gerry
And another one: I changed nothing between the RC 2 version and the release 
version and I can't now run my apps in the simulator - I get a message that 
says "Unable to start simulation: Unable to run app in simulator".

Ugh.

Gerry


> On 17 Oct 2014, at 7:28 am, Mike Kerner  wrote:
> 
> I was surprised that they threw this out as a finished version, since every
> RC so far has had issues that we've been finding as we go.  This one has at
> least two, then.


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

2014-10-16 Thread Gerry
Yup.

g


> On 17 Oct 2014, at 12:28 pm, Colin Holgate  wrote:
> 
> I have the reverse situation, where I couldn’t before but now I can. Are you 
> using Xcode 6.0.1?


___
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: handling push notifications

2014-10-16 Thread Gerry
Terry wrote:

> That"s disappointing

Really? I'm just resigned to the fact that LC doesn't allow us to develop 
modern iOS apps that have the same capabilities (in terms of background 
operations) as xCode-developed apps. I've stopped trying and I've stopped being 
disappointed about it.

What I'd LOVE is a clear statement from RunRev about their intentions in this 
area - will they ever support background operations? (And don't tell me to just 
use the .plist hack - the problem is much broader than the app not quitting on 
suspend).

Gerry
___
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 6.6.4

2014-10-16 Thread Gerry
>  When I get the simulator message, I go to the simulator, make sure there
> isn't an instance of the app already running, and if there is, exit it,
> then go back, and fire it off, again, from LC.

You get the same error message I do?

g

 

___
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: RELEASE LiveCode 7.0

2014-10-23 Thread Gerry
I'm wondering if anyone tested the iOS player object in a pre-GM release of 
7.0? As far as I can see it's totally broken?

g


> On 24 Oct 2014, at 5:44 pm, Terence Heaford  wrote:
> 
> It’s really beyond my comprehension.


___
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: Yosemite Mobile Support prefs flaw

2014-10-28 Thread Gerry
Fixed in 6.6.4 or 6.6.5.

Gerry
On Wed, 29 Oct 2014 at 9:46 am, Lars Brehmer  wrote:

> Does anyone know if there is a solution or workaround for this one?
>
> > Just got bit by this. Thought I'd throw out the warning just in case.
> >
> > I installed OS X Yosemite yesterday to give it a go. I fired up LC today
> and tried to create an app build (iOS) only to discover that the process
> failed. I went into the Mobile Support prefs, and the entire iOS SDKs pane
> was disabled and no SDKs were set. I peeked into the code a bit, and
> discovered that it's using the systemVersion in a couple places to
> determine which versions of OS X and SDKs are supported. Turns out, under
> Yosemite, the systemVersion returns 10.10.0, which of course, numbers-wise,
> is less than 10.6, 10.7, 10.8, etc. So the pane is getting disabled and
> it's impossible to set the path to any SDK.
> >
> > Pretty nasty bug. I'll report it, but thought I'd give everyone a heads
> up. I'll probably try to come up with a workaround in the meantime, as I
> need it to work with LC 6.6.2, and I'm not sure if we'll get another 6.6.x
> release in order to fix it or not.
> >
> > Chris
> >
> > --
> > Chris Sheffield
> > Read Naturally, Inc.
> > www.readnaturally.com
>
> Thanks! I must have missed this one when I decided to upgrade to Yosemite
> not too long ago!
>
> Lars
> ___
> 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: 6.7.1 RC1 uncomment

2014-11-01 Thread Gerry
Same for 7.0 for me. I've found so many issues with that version...sigh...
On Sun, 2 Nov 2014 at 12:48 am, Terence Heaford 
wrote:

> Thanks
>
> All the best
>
> Terry
>
> > On 01 Nov 2014, at 11:07, Jacques Hausser 
> wrote:
> >
> > Eh, it's worse !
> > Several shortcuts don't work - or work only the first time: e.g.
> command-E, command-K, command-0, command-9... and it's the same with 7.0.1
> > Somebody already posted a bug report (13836).
> >
> >
> >> Le 1 nov. 2014 à 11:06, Jacques Hausser  a
> écrit :
> >>
> >> Sorry, I was not on the good version of LiveCode - I can confirm. The
> shortcut for uncomment doesn't work (except it highlights the menu)
> >>
> >> Jacques
> >>
> >>> Le 1 nov. 2014 à 10:41, Jacques Hausser  a
> écrit :
> >>>
> >>> Hi Terry,
> >>>
> >>> It works without problems here (I-Mac 2012, Yosemite)
> >>>
> >>> Jacques
> >>>
>  Le 1 nov. 2014 à 10:28, Terence Heaford  a
> écrit :
> 
>  I have just been editing/commenting/uncommenting a script and the
> uncomment shortcut does not seem to work (command_) on my Mac.
> 
>  The menu highlights in the menubar but nothing happens in the script.
> 
>  Can someone please verify this please.
> 
>  I am using Yosemite.
> 
> 
> 
>  All the best
> 
>  Terry
> 
> >
> > ___
> > 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: Opening a stack stored in dropbox's public folder

2014-11-02 Thread Gerry
Yeah that happens here too. Bugger. I have an app out there that relies on
this.


On Mon Nov 03 2014 at 10:01:57 AM Jim Hurley 
wrote:

> There was a time when this worked, but not now.
>
> I put
>
>go url  "https://dl.dropboxusercontent.com/ etc."
>
> And I get "no such card"
>
> If I put the Dropbox's public link into the address line of Safari I get a
> list of the scripts, so I know the link is OK,
> Doesn't this work any more in RR?
>
> Jim
>
>
>
>
> ___
> 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: Opening a stack stored in dropbox's public fold

2014-11-04 Thread Gerry
My link is new, my Mac is running Yosemite. Still doesn't work.

g


On Tue Nov 04 2014 at 1:40:34 AM Jim Hurley 
wrote:

> Thanks Jacque. No it is a fresh link.
>
> But new information. It (go url "Dropbox link") works on my MacBookAir,
> running 10.9.5 and all versions of RR, but not on my desktop running 10.6.8
> (I need Rosetta) or any version of RR.
>
> Is Dropbox Mac-version dependent?
>
>
___
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: working screenrect

2014-11-07 Thread Gerry
I asked this a few weeks ago. No answer.

Gerry
On Sat, 8 Nov 2014 at 5:17 am, John Dixon  wrote:

> If I make a stack at 320 x 480
> Choose 'Device  > iPhone 4s' from the 'Hardware' menu then :-
>
>  put the item 3 to 4 of the effective working screenRect into fld 1
>
> returns 0,0,320,480... this is expected. I change the Device to 'iPhone
> 5s' from the 'Hardware' menu and 0,0,320,568 is returned... this too is
> expected... However the same 0,0,320,568 is returned if I choose iPhone 6
> or iPhone 6 plus from the 'Hardware' menu...
>
> Anyone else seeing this ?... Anyone got a fix so I could know which iPhone
> the stack is running on ?
>
> 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


Re: which iPhone...

2014-11-10 Thread Gerry
Randy's code gives me a screen rect of 0,0,375,667 on an iOS 8 iPhone 6
simulator. Those are the correct values (remember for the iPhone 6 and 6+
you need to multiply by 2x and 3x respectively). The code also works
accurately on a 4s and 5s simulator.

Thanks Randy!

Gerry

On Tue Nov 11 2014 at 5:03:48 AM Randy Hengst  wrote:

> Xcode 5.1, OSX 10.8.5, LC6.5, iOS 7.1 Simulator... this code in StartUp
> shows correct dimensions... I don't have iOS 8 simulator on this mac.
>
>
> on startUp
>
>answer (word 1 of the machine)
>
>iphoneSetAllowedOrientations "landscape left,landscape right"
> --portrait,portrait upside down,landscape left,landscape right
>
>   switch (word 1 of the machine)
>   case "iPod"
>   case "iPhone"
>  set the fullscreenmode of this stack to "exactFit"
> --"letterbox"--"noScale" -- "exactFit" --"letterbox" --empty --
> --"exactfit" --"showAll"
>  break
>end switch
>
>answer the ScreenRect
> end startUp
>
>
> On Nov 10, 2014, at 11:35 AM, John Dixon  wrote:
>
> >
> >
> >> Subject: Re: which iPhone...
> >> From: jac...@hyperactivesw.com
> >> Date: Mon, 10 Nov 2014 11:12:32 -0600
> >> To: use-livecode@lists.runrev.com
> >>
> >> Does it work if you omit "working" and just ask for the screenrect?
> >>
> > Hi Jacque...
> >
> > No it doesn't...
> >
> > Dixie
> >
> > ___
> > 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: reopen app from background iOS 7 and 8 / multitask

2014-11-25 Thread Gerry
Ralph is referring to a method that involves changing some settings in a
file in the LiveCode application package. That change stops iOS apps
quitting when they are sent to the background.

It's insane that we have to resort to such hacks but RunRev don't seem
interested in providing a real solution (they don't even answer emails
about it).

Gerry
On Wed, 26 Nov 2014 at 3:30 am, Ralph DiMola 
wrote:

> I have used the plist hack for 3 years now. I know there are some threading
> issues with LC and the plist hack IS NOT supported or recommended by
> RunRev.
> That being said I have had no problems/customer complaints or trouble
> getting the app approved by Apple. My apps are a DB based applications and
> there are no messages in the path or timers active when the user leaves the
> app. It works for me but your mileage may vary.
>
> 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 Talluto
> Sent: Monday, November 24, 2014 6:30 PM
> To: How to use LiveCode
> Subject: Re: reopen app from background iOS 7 and 8 / multitask
>
> On Nov 24, 2014, at 2:06 PM, Alain Vezina 
> wrote:
>
> > Hi all,
> >
> > Does anybody knows if it is possible to go back to an app that was pushed
> in the background by using the home button on iPad without the app reopens
> with the splash screen but showing the state it was before pushed back?
>
>
> Hi Alain,
>
> You can do this by storing the state when the app closes or at various
> points in your app usage.  It is not a perfect solution in that the app
> truly does re-open again. All your variable data will be lost.  Storing the
> state of your app and then bringing that state back upon restart of the
> software is the best thing we have going at this time.
>
> We used this technique to good effect in the LiveEvents app.  It is used
> when the user needs to validate their email. Upon returning from the email
> program, the mobile app returns the user to the exact same spot.
>
> You can give this a try in the actual app from here:
> http://livecloud.io/runrevlive-14-conference-app/
> You can download the source code to the app here:
> http://livecloud.io/live-events-source/
>
>
> Best regards,
>
> Mark Talluto
> livecloud.io
> 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
>
>
> ___
> 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: Camera authorisation on iOS7.1.2

2014-11-26 Thread Gerry
mergAVRequestMediaAccess isn't in the documentation on the mergext site yet...

Gerry



> On 27 Nov 2014, at 10:33 am, Sean Cole (Pi)  wrote:
> 
> Hi,
> 
> It's okay. Monte had updated the plugin but not made it clear what had
> changed and that it had done so radically. There's new commands and
> messages for authorisation now. mergAVRequestMediaAccess. Cheers to anyone
> who started to research it for me.


___
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: [OT] baby

2014-11-27 Thread Gerry
Congratulations! So pleased for you!

Gerry
On Fri, 28 Nov 2014 at 7:14 am, Monte Goulding 
wrote:

> Hi Folks
>
> We just had a baby so I won't be able to get to mergExt related questions
> for a few days. Rebecca(mum) and Sarah(bub) are doing well but Sarah has a
> few breathing issues so needs some extra O2 for a while.
>
> Cheers
>
> Monte
>
> --
> M E R Goulding
> Software development services
>
> mergExt - There's an external for that!
> ___
> 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: RELEASE LiveCode 6.7.1 RC3

2014-12-04 Thread Gerry
Ditto.

g


On Fri Dec 05 2014 at 5:31:47 AM Martin Koob  wrote:

> The new versions don't show up for me in the check for updates window in LC
> 6.7.
>
> Martin
>
>
>
>
> --
> View this message in context: http://runtime-revolution.
> 278305.n4.nabble.com/RELEASE-LiveCode-6-7-1-RC3-tp4686442p4686458.html
> Sent from the Revolution - User mailing list archive at Nabble.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


Andre Garcia's FacebookLib

2014-12-16 Thread Gerry
Hi all

Is anyone successfully using Andre Garzia's FacebookLib library on mobile?

I'm getting the following error when trying to log into Facebook from the
demo mobile app, but using my app's key - previously this was all working:

"Given URL is not allowed by the Application configuration.: One or more of
the given URLs is not allowed by the App's settings. It must match the
Website URL or Canvas URL, or the domain must be a subdomain of one of the
App's domains."

I've tried to work out what the problem is - that error message is
mentioned on Stackoverload and elsewhere but only in the context of web
apps, not mobile.

I emailed Andre 3 or 4 weeks ago and he said FB had changed something and
he'd get back to me. He hasn't replied to more recent follow up emails.


Gerry
___
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: Andre Garcia's FacebookLib

2014-12-16 Thread Gerry
Really? I should wait a few *months*? It's a commercial product!

g

On Wed Dec 17 2014 at 5:50:12 PM Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:

> Gerry,
>
> A few follow-up e-mails within 4 weeks is really too much. Try again in
> a few months. It isn't easy to fix something like this, especially if
> you're busy like Andre.
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
>
> Installer Maker for LiveCode:
> http://qery.us/468
>
> Buy my new book "Programming LiveCode for the Real Beginner"
> http://qery.us/3fi
>
> LiveCode on Facebook:
> https://www.facebook.com/groups/runrev/
>
> On 12/17/2014 05:22, Gerry wrote:
> > Hi all
> >
> > Is anyone successfully using Andre Garzia's FacebookLib library on
> mobile?
> >
> > I'm getting the following error when trying to log into Facebook from the
> > demo mobile app, but using my app's key - previously this was all
> working:
> >
> > "Given URL is not allowed by the Application configuration.: One or more
> of
> > the given URLs is not allowed by the App's settings. It must match the
> > Website URL or Canvas URL, or the domain must be a subdomain of one of
> the
> > App's domains."
> >
> > I've tried to work out what the problem is - that error message is
> > mentioned on Stackoverload and elsewhere but only in the context of web
> > apps, not mobile.
> >
> > I emailed Andre 3 or 4 weeks ago and he said FB had changed something and
> > he'd get back to me. He hasn't replied to more recent follow up emails.
> >
> >
> > Gerry
> > ___
> > 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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Yep but the LiveCode product is largely usable in spite of those bugs. The
Facebook lib isn't at functional right now.

See the difference?

Gerry
On Wed, 17 Dec 2014 at 6:14 pm, Mark Schonewille <
m.schonewi...@economy-x-talk.com> wrote:

> LiveCode is a commercial product too. Quite a few bugs were reported a
> decade ago and were not fixed.
>
> --
> Best regards,
>
> Mark Schonewille
>
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
>
> Installer Maker for LiveCode:
> http://qery.us/468
>
> Buy my new book "Programming LiveCode for the Real Beginner"
> http://qery.us/3fi
>
> LiveCode on Facebook:
> https://www.facebook.com/groups/runrev/
>
> On 12/17/2014 07:57, Gerry wrote:
> > Really? I should wait a few *months*? It's a commercial product!
> >
> > g
> >
> > On Wed Dec 17 2014 at 5:50:12 PM Mark Schonewille <
> > m.schonewi...@economy-x-talk.com> wrote:
> >
> >> Gerry,
> >>
> >> A few follow-up e-mails within 4 weeks is really too much. Try again in
> >> a few months. It isn't easy to fix something like this, especially if
> >> you're busy like Andre.
> >>
> >> --
> >> Best regards,
> >>
> >> Mark Schonewille
> >>
> >> Economy-x-Talk Consulting and Software Engineering
> >> Homepage: http://economy-x-talk.com
> >> Twitter: http://twitter.com/xtalkprogrammer
> >> KvK: 50277553
> >>
> >> Installer Maker for LiveCode:
> >> http://qery.us/468
> >>
> >> Buy my new book "Programming LiveCode for the Real Beginner"
> >> http://qery.us/3fi
> >>
> >> LiveCode on Facebook:
> >> https://www.facebook.com/groups/runrev/
> >>
> >> On 12/17/2014 05:22, Gerry wrote:
> >>> Hi all
> >>>
> >>> Is anyone successfully using Andre Garzia's FacebookLib library on
> >> mobile?
> >>>
> >>> I'm getting the following error when trying to log into Facebook from
> the
> >>> demo mobile app, but using my app's key - previously this was all
> >> working:
> >>>
> >>> "Given URL is not allowed by the Application configuration.: One or
> more
> >> of
> >>> the given URLs is not allowed by the App's settings. It must match the
> >>> Website URL or Canvas URL, or the domain must be a subdomain of one of
> >> the
> >>> App's domains."
> >>>
> >>> I've tried to work out what the problem is - that error message is
> >>> mentioned on Stackoverload and elsewhere but only in the context of web
> >>> apps, not mobile.
> >>>
> >>> I emailed Andre 3 or 4 weeks ago and he said FB had changed something
> and
> >>> he'd get back to me. He hasn't replied to more recent follow up emails.
> >>>
> >>>
> >>> Gerry
> >>> ___
> >>> 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
> >
>
> ___
> 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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Mark, how is a couple of emails in the 3-4 week period following my
original query "bugging" someone? Especially when they had promised to get
back to me?

Gerry

On Wed Dec 17 2014 at 9:47:58 PM Dave Kilroy 
wrote:

> Gerry it's up to you how you take this forward, I don't agree with Mark's
> stance and don't think you have behaved unreasonably.
>
> Kind regards
>
> Dave
>
>
>
> -
> "Some are born coders, some achieve coding, and some have coding thrust
> upon them." - William Shakespeare & Hugh Senior
>
> --
> View this message in context: http://runtime-revolution.
> 278305.n4.nabble.com/Andre-Garcia-s-FacebookLib-tp4686859p4686868.html
> Sent from the Revolution - User mailing list archive at Nabble.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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Bob, it's not a LiveCode version problem. Facebook has changed something in
the way they do authentication. Andre needs to update the library.

Gerry
On Thu, 18 Dec 2014 at 7:11 am, Kevin Miller  wrote:

> We do monitor this list. However as ever our focus has to be on
> ³actionable intelligence², I.e. bug reports filed in the QA center with a
> recipe. We¹re extremely active responding on there.
>
> Kind regards,
>
> Kevin
>
> Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
> LiveCode: Everyone can create apps
>
>
>
>
> On 17/12/2014 19:19, "Bob Sneidar"  wrote:
>
> >Mine experience has been good as well. And I *really* like Livecode, so I
> >try to refrain from openly criticizing their work, and cringe when I see
> >others doing so. I think what they have produced is nothing short of
> >spectacular. I am not a ³software developer² by *any* means, and yet I
> >have produced at least two functional apps for use internally that both
> >have promise if I decide to commercially distribute them.
> >
> >Bob S
> >
> >
> >> On Dec 17, 2014, at 08:39 , Dave Kilroy 
> >>wrote:
> >>
> >> Bob, I certainly hope not! My experience of customer support from
> >>RunRev is
> >> that is has been uniformly excellent and their helpfulness compares very
> >> well with most other companies...
> >>
> >>
> >> Bob Sneidar-2 wrote
> >>> Thank goodness the software engineers do *NOT* monitor this list. They
> >>> would likely have become severely depressed by the criticism here, and
> >>>all
> >>> given up out of despair and depression. They would probably be in
> >>>therapy
> >>> by now.
> >>
> >>
> >>
> >>
> >>
> >> -
> >> "Some are born coders, some achieve coding, and some have coding thrust
> >>upon them." - William Shakespeare & Hugh Senior
> >>
> >> --
> >> View this message in context:
> >>http://runtime-revolution.278305.n4.nabble.com/Andre-
> Garcia-s-FacebookLib
> >>-tp4686859p4686886.html
> >> Sent from the Revolution - User mailing list archive at Nabble.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
>
___
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: Andre Garcia's FacebookLib

2014-12-17 Thread Gerry
Andre has responded. So hopefully the issue will be sorted out soon.

Gerry


On Thu, 18 Dec 2014 at 7:15 am, Gerry  wrote:

> Bob, it's not a LiveCode version problem. Facebook has changed something
> in the way they do authentication. Andre needs to update the library.
>
> Gerry
> On Thu, 18 Dec 2014 at 7:11 am, Kevin Miller  wrote:
>
>> We do monitor this list. However as ever our focus has to be on
>> ³actionable intelligence², I.e. bug reports filed in the QA center with a
>> recipe. We¹re extremely active responding on there.
>>
>> Kind regards,
>>
>> Kevin
>>
>> Kevin Miller ~ ke...@livecode.com ~ http://www.livecode.com/
>> LiveCode: Everyone can create apps
>>
>>
>>
>>
>> On 17/12/2014 19:19, "Bob Sneidar"  wrote:
>>
>> >Mine experience has been good as well. And I *really* like Livecode, so I
>> >try to refrain from openly criticizing their work, and cringe when I see
>> >others doing so. I think what they have produced is nothing short of
>> >spectacular. I am not a ³software developer² by *any* means, and yet I
>> >have produced at least two functional apps for use internally that both
>> >have promise if I decide to commercially distribute them.
>> >
>> >Bob S
>> >
>> >
>> >> On Dec 17, 2014, at 08:39 , Dave Kilroy 
>> >>wrote:
>> >>
>> >> Bob, I certainly hope not! My experience of customer support from
>> >>RunRev is
>> >> that is has been uniformly excellent and their helpfulness compares
>> very
>> >> well with most other companies...
>> >>
>> >>
>> >> Bob Sneidar-2 wrote
>> >>> Thank goodness the software engineers do *NOT* monitor this list. They
>> >>> would likely have become severely depressed by the criticism here, and
>> >>>all
>> >>> given up out of despair and depression. They would probably be in
>> >>>therapy
>> >>> by now.
>> >>
>> >>
>> >>
>> >>
>> >>
>> >> -
>> >> "Some are born coders, some achieve coding, and some have coding thrust
>> >>upon them." - William Shakespeare & Hugh Senior
>> >>
>> >> --
>> >> View this message in context:
>> >>http://runtime-revolution.278305.n4.nabble.com/Andre-Garci
>> a-s-FacebookLib
>> >>-tp4686859p4686886.html
>> >> Sent from the Revolution - User mailing list archive at Nabble.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
>>
>
___
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: [ANN] ControlManager video

2014-12-22 Thread Gerry
This product comes with awesome support - Hugh spend an hour and a half
with me on Skype trying to find a solution to a bug, and lots more time on
the problem after that conversation.

Highly recommended!

Gerry
On Tue, 23 Dec 2014 at 3:06 am, FlexibleLearning.com <
ad...@flexiblelearning.com> wrote:

> As requested, a short introductory video of ControlManager in action...
>
> http://youtu.be/QtrhtSXCsfk
>
> Further details and purchasing options at...
> www.FlexibleLearning.com/controlmanager
> or https://livecode.com/store/marketplace/controlManager-1-0-0
>
>
> Hugh Senior
> FLCo
>
>
> ___
> 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: [ANN] Free: Google-style typing filter for LiveCode

2014-12-24 Thread Gerry
I wrote an sql based version of this for an abandoned iPad app - it
displays the results in a datagrid from where they can be edited or
deleted. If I find time in the next little while I'll package it up as a
demo.

Gerry
On Thu, 25 Dec 2014 at 8:47 am, Peter Haworth  wrote:

> Thanks Hugh, very nice.
>
> I couldn't resist trying this using an SQLite database instead of the
> preloaded data.  I created a database with one table named Places with one
> column named Data that holds the preloaded data, then imported the
> preloaded data into it.
>
> The script changes were pretty minimal, just open the database at startup,
> then instead of the filter command:
>
> put revDataFromQuery(,,gDBID,"SELECT Data FROM Places WHERE Data LIKE :1
> ORDER BY Data","tSearch")
>
> tSearch is the variable that holds the search string with "%" signs either
> after or before/after depending on the wildcard setting.
>
> The query takes an average of around 15 msecs vs the filter command taking
> perhaps 2msecs but neither time is noticeable to a user.
>
>
>
> Pete
> lcSQL Software <http://www.lcsql.com>
> Home of lcStackBrowser <http://www.lcsql.com/lcstackbrowser.html> and
> SQLiteAdmin <http://www.lcsql.com/sqliteadmin.html>
>
> On Tue, Dec 23, 2014 at 5:36 AM, FlexibleLearning.com <
> ad...@flexiblelearning.com> wrote:
>
> > Over the years, people keep asking about how to implement 'display as you
> > type' widget thang.
> >
> > So as a Christmas gift to you all, TypingFilter for LiveCode is fast,
> > flexible and FREE. The download with example implementation and
> screenshots
> > are available here...
> >
> > www.FlexibleLearning.com/typingfilter
> >
> >
> > Enjoy!
> >
> >
> > Hugh Senior
> > FLCo
> >
> >
> > ___
> > 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: [ANN] Free: Google-style typing filter for LiveCode

2014-12-25 Thread Gerry
Video of my project (turn the sound off unless you like dogs barking):

http://quick.as/erqospn9

I just do:

"SELECT * FROM companytable where company_name like " && "'%"&searchText&"%'
order by company_name"

...then get the result in an array and pop it into the datagrid, updating
as the user types. It's fast enough on a 1000 record database - that's
about as big as the database would ever get on that project.


Gerry

On Thu Dec 25 2014 at 10:54:04 AM Peter Haworth  wrote:

> Sounds interesting, I think Skip was interested in using a filter with a
> datagrid.
>
> I went a bit further with my test by using an FTS3 table and the snippet
> function to return the data.  The nice thing about that approach is that
> the parameters to the snippet function include the html to use before and
> after the matched text so I can skip the loop in the original code that
> hilites the matched text.
>
> Using that method, the time to display the results is about twice as fast
> as the the original code but as before, the difference is not noticeable to
> the user
>
> Pete
> lcSQL Software <http://www.lcsql.com>
> Home of lcStackBrowser <http://www.lcsql.com/lcstackbrowser.html> and
> SQLiteAdmin <http://www.lcsql.com/sqliteadmin.html>
>
> On Wed, Dec 24, 2014 at 2:22 PM, Gerry  wrote:
>
> > I wrote an sql based version of this for an abandoned iPad app - it
> > displays the results in a datagrid from where they can be edited or
> > deleted. If I find time in the next little while I'll package it up as a
> > demo.
> >
> > Gerry
> > On Thu, 25 Dec 2014 at 8:47 am, Peter Haworth  wrote:
> >
> > > Thanks Hugh, very nice.
> > >
> > > I couldn't resist trying this using an SQLite database instead of the
> > > preloaded data.  I created a database with one table named Places with
> > one
> > > column named Data that holds the preloaded data, then imported the
> > > preloaded data into it.
> > >
> > > The script changes were pretty minimal, just open the database at
> > startup,
> > > then instead of the filter command:
> > >
> > > put revDataFromQuery(,,gDBID,"SELECT Data FROM Places WHERE Data LIKE
> :1
> > > ORDER BY Data","tSearch")
> > >
> > > tSearch is the variable that holds the search string with "%" signs
> > either
> > > after or before/after depending on the wildcard setting.
> > >
> > > The query takes an average of around 15 msecs vs the filter command
> > taking
> > > perhaps 2msecs but neither time is noticeable to a user.
> > >
> > >
> > >
> > > Pete
> > > lcSQL Software <http://www.lcsql.com>
> > > Home of lcStackBrowser <http://www.lcsql.com/lcstackbrowser.html> and
> > > SQLiteAdmin <http://www.lcsql.com/sqliteadmin.html>
> > >
> > > On Tue, Dec 23, 2014 at 5:36 AM, FlexibleLearning.com <
> > > ad...@flexiblelearning.com> wrote:
> > >
> > > > Over the years, people keep asking about how to implement 'display as
> > you
> > > > type' widget thang.
> > > >
> > > > So as a Christmas gift to you all, TypingFilter for LiveCode is fast,
> > > > flexible and FREE. The download with example implementation and
> > > screenshots
> > > > are available here...
> > > >
> > > > www.FlexibleLearning.com/typingfilter
> > > >
> > > >
> > > > Enjoy!
> > > >
> > > >
> > > > Hugh Senior
> > > > FLCo
> > > >
> > > >
> > > > ___
> > > > 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
> >
> ___
> 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


iOS push notifications: why are they asked for?

2015-01-08 Thread Gerry
My app does not have push notifications enabled in the app ID settings for the 
app on the Apple Developer, yet it asks for permission to accept them when the 
app is first opened. What gives? LC 6.7.1.

Gerry
___
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: iOS push notifications: why are they asked for?

2015-01-08 Thread Gerry
Thanks, but...

It's disabled in all those places!

Urg!

Gerry


> On 9 Jan 2015, at 12:36 pm, ethanl...@gmail.com wrote:
> 
> My experience is that there are three areas to check;
> - stand-alone application settings the profile used
> - stand-alone application settings the check box for push notifications
> - the application code 'pushNotificationReceived' etc.


___
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: iOS push notifications: why are they asked for?

2015-01-11 Thread Gerry
Just for LC apps, or all apps? Because I've install LOTS of other apps and 
never get this message from apps that don't have a obvious need for 
notification permissions.

g



> On 9 Jan 2015, at 11:23 pm, Sean Cole (Pi)  wrote:
> 
> This is now the norm in iOS8 applications it would seem.


___
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: Posting to php problem

2015-01-22 Thread Gerry
There's a httpHeaders bug in recent versions of LiveCode. Andre Garzia has been 
having problems with it in his Facebook lib - perhaps he has a workround?

Gerry 

Sent from my iPhone

> On 23 Jan 2015, at 4:33 am, William Prothero  wrote:
> 
> httpHeaders

___
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: newbie question about smartphone apps

2011-09-06 Thread Gerry
>
>
> Apparently it's possible to make iPhone and Android apps with LC.
> Apparently, there's a product called LiveCode Mobile, rather similar to LC,
> for this purpose. Do I have it right so far?
>

Android and iOS development is possible with add-on licenses. It's the same
app, just enabled for output to those devices.


> If I am able to create a conventional LC stack for my own use, similar to
> the hypothetical phone app, how much harder is it to develop a smartphone
> app?
>

In a sense it's easier, as smart phone apps generally do less than desktop
apps. That said, each OS has it's own quirks and issues, and of course you
have to take into account the user interface and user interaction
differences between desktop apps and touch-driven mobile device apps.


> Can I install a prototype on my own smart phone for testing purposes? (At
> the moment, I don't even own a smart phone, so please excuse the
> newbishness.)
>

Once you have the LC license(s), and the Android and/or iOS development SDKs
you can do that, and more. You can also run your apps in simulators on your
desktop machines (I think you need a Mac to do iOS development however). Not
sure about Android, but you would need to be a registered iOS developer if
you wanna do iOS apps - Apple charges $99/year for that.


> I would need professional assistance to get the hypothetical app
> error-free, attractive, and otherwise ready for prime time before it could
> be sold in an app store. What's the going rate for a consultant to help me
> get a final product ready? I assume this is normally an hourly rate.
>

I charge $7.2 million dollars an hour. (I have no idea what people
charge...just being silly). I'm no professional, but I have an app on the
store :)


> Is it realistic to hope that I could keep consulting fees down by doing
> much of the prototyping and easy coding myself, even though I am a
> self-taught amateur?
>

Possibly - hard to say without knowing your limitations :)


> Assuming the app is stable and reasonably functional and attractive and has
> some legitimate interest and value for at least a few tens of thousands of
> people (admittedly, I have a narrow purpose and interest group in mind) what
> are the chances that the powers that be will allow the app to be sold in
> their app stores?
>

If it complies with the app store rules, it'll be accepted.


> Does it matter much, in terms of acceptance, if me, the producer, is
> basically a nobody, as long as the app is good?
>

Worked for me :)

Gerry
___
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: User Preferences

2011-10-11 Thread Gerry
Or use an online method? Will your app be used in settings where a internet 
connection can be assumed?  

Gerry  



--  photos: http://gerryorkin.com

On Wednesday, 12 October 2011 at 11:35 AM, Björnke von Gierke wrote:

> To prevent copying, do not produce anything. It's the perfect counter 
> measure!  
>   

___
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: User Preferences

2011-10-11 Thread Gerry
My ISP gives out a new IP whenever I re-connect after e.g. a router restart. So 
that wouldn't work.   

Gerry 


Kee Nethery wrote: 
> Log all the server connections. Once a day examine the log files to see if 
> the same unlock code is coming from multiple IP addresses. If it is, that 
> means that person has handed out their unlock code. If you see an unlock code 
> that is rogue, create a text file and put it at that location on your server. 

___
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: So RunRev wants more of my money- what has been fixed?

2011-10-11 Thread Gerry
 Personally I'm angry that as an iOS-only developer I have to pay for the 
development of features that only those other pesky platforms like Mac, Windows 
and Linux can use :) 

Gerry 



--  photos: http://gerryorkin.com

On Wednesday, 12 October 2011 at 5:44 PM, Andrew Kluthe wrote:

> I was fairly unimpressed with what turned out to be "the big 5.0".
  
___
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: User Preferences

2011-10-12 Thread Gerry
Just to clarify, I'm not the original poster on the thread :) My point was - if 
I am using this software and I have an unstable internet connection where my 
machine's IP could change during the day, it would report to the authentication 
server that the same reg code is coming from multiple IPs. But I can see how 
your escalating check on suspect reg codes could account for that :)


Gerry 



--  photos: http://gerryorkin.com

On Thursday, 13 October 2011 at 9:22 AM, Kee Nethery wrote:

> 
> On Oct 11, 2011, at 10:59 PM, Gerry wrote:
> 
> > My ISP gives out a new IP whenever I re-connect after e.g. a router 
> > restart. So that wouldn't work. 
> 
> Not sure what you are saying. Your computer when you use your software might 
> have different IPs or your server is always moving around from IP to IP and 
> no one can connect to it?
> 
> If you are saying that people have IP addresses that change, that is not a 
> problem. The thing you are looking for is the same regcode coming from 
> multiple IPs during the same day. If your software only connects once a day, 
> and a reg code gets three hits in a day from different IPs, regardless what 
> the IPs are, you probably have three users with the same IP. Then if that 
> continues for a couple of days, flag that reg code and have those users 
> software check in more frequently than once a day. Then. if during the 
> intensive you get IP-a the IP-b then IP-c then IP-b then IP-a then IP-c etc 
> for the same reg code within the same day, you absolutely have multiple users 
> using one reg code.
> 
> Kee
> 
> > 
> > Gerry 
> > 
> > 
> > Kee Nethery wrote: 
> > > Log all the server connections. Once a day examine the log files to see 
> > > if the same unlock code is coming from multiple IP addresses. If it is, 
> > > that means that person has handed out their unlock code. If you see an 
> > > unlock code that is rogue, create a text file and put it at that location 
> > > on your server. 
> > 
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com (mailto: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 (mailto: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: drawing with a finger in iOS

2011-10-25 Thread Gerry
John has posted his code somewhere...perhaps the forums...?

On Wed, Oct 26, 2011 at 2:44 PM, Colin Holgate  wrote:

> It probably does. John Craig's app Spell With Kyle seems to manage to do
> what you want:
>
>
___
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: library folder ios and updates

2011-10-27 Thread Gerry
If you mean whether the library directory contents are retained when the user 
updates the app…yes.  

Gerry






--  photos: http://gerryorkin.com


On Friday, 28 October 2011 at 12:58 PM, ddas wrote:

> Hello All,
>  
> What happens to the stored files in the library folder with my unique app, 
> when i update the main app. Do they still exist?
>  
> Thanks,
> debdoot
>  
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com (mailto: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: iOS and Go Stack URL?

2011-11-04 Thread Gerry
Check this out on the forums:

http://forums.runrev.com/viewtopic.php?f=49&t=8934


--  photos: http://gerryorkin.com


On Saturday, 5 November 2011 at 10:15 AM, John Patten wrote:

> Hello All!
>  
> Is it possible to open a remote stack in iOS via Go Stack URL …? I'm thinking 
> no…but I thought I'd ask :-)  

___
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: iOS and Go Stack URL?

2011-11-04 Thread Gerry
Whoops. I wrote that stack and didn't notice that I'd left MobGUI in as a 
substack. It doesn't need it :) Plus I didn't do an environment test in the 
script to make sure it ran only in iOS - it was a quick hack to demonstrate a 
point.

g 



--  photos: http://gerryorkin.com


On Saturday, 5 November 2011 at 12:47 PM, Colin Holgate wrote:

> That thread has a link to a zip file, that downloads a stack called "Download 
> Stack". If you try it in LiveCode, to see it in action before trying it in 
> the simulator or on a phone, it fails to work, and then if you try on a phone 
> it still doesn't work. If you download the zip file again, and don't test it, 
> but instead make an app right away, then it works.
> 
> 
> On Nov 4, 2011, at 8:42 PM, Mark Schonewille wrote:
> 
> > Which stack are you talking about?
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com (mailto: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: "send message in 10" doesn't work properly

2014-01-18 Thread Gerry
Try

Send "doit" && myTarget in 10 ticks

Gerry

Sent from my iPad

> On 19 Jan 2014, at 12:03 pm, "Dr. Hawkins"  wrote:
> 
> After fighting this for a couple of hours, I finally found that my message
> sending of the form
> 
> 
>send "doit " & myTarget in 10
> 
> doesn't work properly--the "in 10" is ignored.
> 
> Contrary to the dictionary, it appears that it is necessary to specify a
> target--otherwise, it is executed immediately, before the new handler
> begins.
> 
> 
> -- 
> Dr. Richard E. Hawkins, Esq.
> (702) 508-8462
> ___
> 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: [OT] MIA

2014-01-20 Thread Gerry
Words are so inadequate but they are all we have. All the best to you and 
yours, and stay away as long as you need to. 

Gerry

Monte wrote:

>> I'm going to be off the reservation for a little while. For those that knew 
>> we had a baby due in a couple of weeks we lost her yesterday and I just need 
>> to focus on 

___
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: of possible Android interest

2014-02-04 Thread Gerry
It's now at $100. Maybe it was a mistake? I've not heard from them so I'm 
assuming I'm still getting mine at the $20 price :)

Gerry

Sent from my iPad

> On 4 Feb 2014, at 11:27 am, Mark Wieder  wrote:
> 
> This came up at work today. Not sure what to make of it, but it's sure hard
> to beat that price point.
> 
> Beidou LA-I2 4.0" Capacitive TFT Screen Android 4.0.4 Dual-Core Qualcomm
> 8225 1.2GHz 3G Smartphone with Wi-Fi, GPS, 5.0MP Camera (512MB RAM & 4GB
> ROM) (White)
> 
> <http://www.focalprice.com/MH0618W/Beidou_LA_I2_4.0_Capacitive_TFT_Screen_Android_4.0.4_Dual_Core_Qualcomm_8225.html>
> 
> -- 
> 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: Counting the number of checkboxes...

2014-04-21 Thread Gerry
Late to this party but I would have thought that the simplest solution was to 
have a field on one of the cards that has 0 in it at the start. 

Then in each check box button have a script that simply adds 1 to the value in 
that field when the check box is clicked on, and subtracts 1 from the field 
when the check box is clicked off. Whenever you need to know how many of the 
check boxes are on just get the number from that field. 

Gerry 
___
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: [ANN] Facebook Lib

2014-05-03 Thread Gerry
Mac. And no, not tried that. Also the FB authorisation window displays as blank 
before disappearing - it seems to authorise ok without me doing anything and 
lets me post from my app too. Not had a lot of time to look beyond the basics 
yet, and I'm really waiting for the iOS version :)

Gerry

Sent from my iPad

> On 3 May 2014, at 7:55 pm, Richard Miller  wrote:
> 
> Gerry,
> 
> Are you running in on a Mac or PC?
> 
> Have you been able to log out of one FB account and log back in under a 
> different one?
> 
> Thanks,
> Richard Miller
> 
> 
> 
> 
>> On 5/2/14, 5:48 PM, Gerry Orkin wrote:
>> Got mine - works so well and I can't wait till the mobile version.
>> 
>> Gerry
> 
> 
> ___
> 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


Swipe-able objects in iOS

2011-02-27 Thread Gerry
I'm new to LiveCode but I was a very active HyperCard and Director
programmer back when I was young and crazy. Now, 3 careers later, I'm
taking this stuff up again, as a hobby.

In HyperCard I used to use the "on mousestilldown" message to make
objects draggable. LiveCode has a zillion new language elements, so
before I go old school is there now a better way? This is for
something that'll end up in iOS.

Cheers

Gerry

___
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: Swipe-able objects in iOS

2011-02-27 Thread Gerry
Oh. I've found the dragImage stuff. So I can drag just an image,
then move the object to the mouseup/drop location?

g

On Mon, Feb 28, 2011 at 9:05 AM, Gerry  wrote:
> I'm new to LiveCode but I was a very active HyperCard and Director
> programmer back when I was young and crazy. Now, 3 careers later, I'm
> taking this stuff up again, as a hobby.
>
> In HyperCard I used to use the "on mousestilldown" message to make
> objects draggable. LiveCode has a zillion new language elements, so
> before I go old school is there now a better way? This is for
> something that'll end up in iOS.
>
> Cheers
>
> Gerry
>



-- 
photos: http://gerryorkin.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


iOS Simulation error

2011-02-28 Thread Gerry
I'm getting an error message when I try to simulate an iOS app. It reads:

"Unable to build app for simulation: could not find plist simulator for 4.3 
target"

It pops up immediately after I try build the app. I have the latest XCode 4.3 
beta SDK installed.

Any ideas?

Cheers

Gerry

-- photo site: http://gerryorkin.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


What's the best way to do objects?

2011-03-01 Thread Gerry
Years ago I used to use Macromedia Director, and got to be pretty good at 
programming objects (the kind that operated independently once they were 
birthed...sort of OOP). 

What's the best way of doing that sort of thing in LiveCode?

Cheers

Gerry



-- photo site: http://gerryorkin.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: Just starting out in iOs and LiveCode

2011-03-03 Thread Gerry
Just trying the put URL thing - pulling down a .txt file with UNIX line breaks, 
it seems to strip the line breaks out. How to I handle that?

g

-- photo site: http://gerryorkin.com

On Friday, 4 March 2011 at 9:48 AM, Nonsanity wrote: 
> There are many, many ways to do this. The barest minimum might be:
> 
> put url "http://myserver.org/updatedata/latest.txt"; into latestUpdateData
> 
> Then work with that data as you wish. 

___
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: Just starting out in iOs and LiveCode

2011-03-03 Thread Gerry
I'm embedding my own item delimiter character in the file for now (I'm using 
"\"). I then cycle through the text and grab each item one by one, putting them 
into lines of the field. It works, but there must be a better way.

Is the problem with my .txt file? I save it out of a text editor with Unix line 
breaks specified, and it's stored on dropbox.

Gerry



-- photo site: http://gerryorkin.com

On Friday, 4 March 2011 at 12:34 PM, Gerry wrote: 
> Just trying the put URL thing - pulling down a .txt file with UNIX line 
> breaks, it seems to strip the line breaks out. How to I handle that?
> 
> g
> 
> -- photo site: http://gerryorkin.com
> 
> On Friday, 4 March 2011 at 9:48 AM, Nonsanity wrote: 
> > There are many, many ways to do this. The barest minimum might be:
> > 
> > put url "http://myserver.org/updatedata/latest.txt"; into latestUpdateData
> > 
> > Then work with that data as you wish. 
> 


___
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


iOS button ink settings

2011-03-06 Thread Gerry
Hi folks, I'm using ink settings on some buttons with icons, and while they 
work in the stack they don't in the simulator or on my iPhone when I've 
installed the app. 

Are ink settings supported on iOS?


Gerry


-- photo site: http://gerryorkin.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


Location in iOS

2011-03-07 Thread Gerry
Has anyone seen (or made) an example stack that successfully uses location 
services in iOS? I need help!

g

-- photo site: http://gerryorkin.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


MySQL in iOS apps?

2011-03-09 Thread Gerry
I'm trying to read data from a MySQL database on a server into an iOS app. 
Works fine in the stack, but not in the app. Don't iOS apps support calls to 
remote databases? 

Gerry 

___
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: MySQL in iOS apps?

2011-03-09 Thread Gerry
Thanks :) Just another thing to learn. I'll Google .cgi and MySql (I've never 
written a .cgi) - but do you have an example of one that calls a SQL database 
in LiveCode?

Gerry

-- photo site: http://gerryorkin.com

On Wednesday, 9 March 2011 at 10:01 PM, paolo mazza wrote: 
> Gerry,
> the MySQL database plugin does not work in iOS apps.
> A way to read data from a MySQL database is through a cgi. You can
> have a CGI on the same server MySQL is, and call that CGI from an iOS
> app.
> 
> Paolo Mazza
> 
> ___
> 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


Arggggh. put Google maps URL weirdness

2011-03-11 Thread Gerry
This works:

put url 
"http://maps.google.com/maps/api/staticmap?center=canberra&zoom=8&size=512x512&maptype=roadmap&sensor=false";
 into someimage
put someimage into image 1



But when I use the text in a field in building the url it breaks - I get a "bad 
request 400 error" from the Google server:

put url "http://maps.google.com/maps/api/staticmap?center="; & fld "place" & 
"&zoom=8&size=512x512&maptype=roadmap&sensor=false" into someimage
put someimage into image 1

What am I missing? When I write the string out to the message box and then 
paste that into the url field in my browser, it works fine.

Argggh. 

Gerry







___
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: Arggggh. put Google maps URL weirdness

2011-03-11 Thread Gerry
That's it! I actually jumped out of bed to try that, and found your message 
suggesting the same thing!

Phew. Thanks for your response!

Gerry

-- photo site: http://gerryorkin.com

On Friday, 11 March 2011 at 10:05 PM, Alex Tweedly wrote: 
> Haven't tried, but I always use parentheses with URL, so try
> 
> put url ("http://maps.google.com/maps/api/staticmap?center="&; fld "place"& 
> "&zoom=8&size=512x512&maptype=roadmap&sensor=false") into someimage
> 
> 
> -- Alex.
> 
> On 11/03/2011 10:55, Gerry wrote:
> > This works:
> > 
> > put url 
> > "http://maps.google.com/maps/api/staticmap?center=canberra&zoom=8&size=512x512&maptype=roadmap&sensor=false";
> >  into someimage
> > put someimage into image 1
> > 
> > 
> > 
> > But when I use the text in a field in building the url it breaks - I get a 
> > "bad request 400 error" from the Google server:
> > 
> > put url "http://maps.google.com/maps/api/staticmap?center="&; fld "place"& 
> > "&zoom=8&size=512x512&maptype=roadmap&sensor=false" into someimage
> > put someimage into image 1
> > 
> > What am I missing? When I write the string out to the message box and then 
> > paste that into the url field in my browser, it works fine.
> > 
> > Argggh.
> > 
> > Gerry
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > ___
> > 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: Arggggh. put Google maps URL weirdness

2011-03-11 Thread Gerry
Yes, it's a blank image already on the card.

g

-- photo site: http://gerryorkin.com

On Saturday, 12 March 2011 at 8:59 AM, Bob Sneidar wrote: 
> Are you creating image 1 first before you do this?
> 
> Bob
> 
> 
> On Mar 11, 2011, at 1:22 PM, Gerry Orkin wrote:
> 
> > Bob, it's working here :)
> > 
> > Gerry
> 
> 
> ___
> 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


iOS iPhone Retina splash image

2011-03-20 Thread Gerry
Hi folks

My iPhone app uses a 960x640 .png as the splash screen image. In the standalone 
settings, I have the status bar set to visible, and the status bar style to 
default. The image appears but after a second or two it suddenly stretches 
vertically.

What am I doing wrong?

Cheers

Gerry



-- photo site: http://gerryorkin.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: iOS iPhone Retina splash image

2011-03-20 Thread Gerry
Tom
Or is this the Apple start up splash image that gets bundled with the app?
It's the Apple startup splash, as specified in the app settings window.
> When you run it in the emulator is the Status Bar visible? Not the setting in 
> the Standalone Settings but the actual Status Bar? 
The status bar cuts in after the splash image shows, and just after the image 
stretches. 

This app is only for use in portrait orientation. 


Gerry



> I code the status bar myself after one time setting it in the Standalone 
> settings and then it not working. After that I always code it myself. If this 
> is the problem then the screen should only stretch by 40 pixels.
> 
> The 960x640 is the right size for a horizontal view. With the Status Bar it 
> would be 960x600 since the the iPhoneRetina is 2x the size.
> 
> Dd you want the app to launch horizontal? If not then the size would be 
> 640x960.
> 
> Or is this the Apple start up splash image that gets bundled with the app?
> 
> Or if this is in your app then do you/ are you using a resizeStack handler? 
> Two resize stack handlers?
> 
> More info would help.
> 
> 
> -- Tom McGrath III
> http://lazyriver.on-rev.com
> 3mcgr...@comcast.net
> 
> On Mar 20, 2011, at 5:28 AM, Gerry wrote:
> 
> > Hi folks
> > 
> > My iPhone app uses a 960x640 .png as the splash screen image. In the 
> > standalone settings, I have the status bar set to visible, and the status 
> > bar style to default. The image appears but after a second or two it 
> > suddenly stretches vertically.
> > 
> > What am I doing wrong?
> > 
> > Cheers
> > 
> > Gerry
> > 
> > 
> > 
> > -- photo site: http://gerryorkin.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


Monitoring sound

2011-03-21 Thread Gerry
Hi again 

In iOS I have to monitor the playing of a sound while the user browses the app, 
going from one screen/card to the next. If a sound is playing, I show a button, 
but if the sound ends, I want the button to be hidden.

In Hypercard I would have used idle. Is that still a good way to implement this 
in LiveCode?

Cheers

Gerry 

___
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: Monitoring sound

2011-03-21 Thread Gerry
Scott, many thanks! I'm still dusting off the cobwebs, and trawling through the 
user guide.

g

-- photo site: http://gerryorkin.com

On Monday, 21 March 2011 at 7:29 PM, Scott Morrow wrote: 
> Hello Gerry,
> 
> From the docs:
> "If no audio clip is playing, the sound function returns done"
> 
> If you don't have any other sounds playing you could set up a "send in time" 
> loop to check if the sound was done which would be more efficient than using 
> idle.
> 
> For example:
> 
> local lPendingMessageQueue
> 
> --> your code here
> -- begin playing your sound here
> send IsSoundDone to me in 200 millisec -- or whatever time span works best
> -- capture the "send" message ID here if you want to cancel it later
> put CR & the result after lPendingMessageQueue
> --> more of your code here
> 
> 
> command IsSoundDone
>  if the sound is done then
>  -- hide the button
>  -- possibly cancel any pending message IDs if this command is sent from 
> multiple sources
>  -- put empty into lPendingMessageQueue
>  else
>  -- check again in a little bit
>  send IsSoundDone to me in 200 millisec -- or whatever time span works best
>  end if 
> end IsSoundDone
> 
> Note: this is untested pseudo code off the cuff...
> 
> 
> Scott Morrow
> 
> Elementary Software
> (Now with 20% less chalk dust!)
> web http://elementarysoftware.com/
> email sc...@elementarysoftware.com
> --
> 
> 
> 
> On Mar 21, 2011, at 12:59 AM, Gerry wrote:
> 
> > Hi again 
> > 
> > In iOS I have to monitor the playing of a sound while the user browses the 
> > app, going from one screen/card to the next. If a sound is playing, I show 
> > a button, but if the sound ends, I want the button to be hidden.
> > 
> > In Hypercard I would have used idle. Is that still a good way to implement 
> > this in LiveCode?
> > 
> > Cheers
> > 
> > Gerry 
> > 
> > ___
> > 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


libUrlDownloadToFile & urlProgress

2011-03-21 Thread Gerry
I'm using libUrlDownloadToFile to download some mp3s. As you might know 
libUrlDownloadToFile periodically sends the message "urlProgress" to the 
originating object so you can monitor the progress of downloads. 

It's working well, but I'm confused about when libUrlDownloadToFile stops 
sending the urlProgress message. Does it stop once the download is complete? Or 
do I have to explicitly kill it?

I ask because I'm getting some weird behaviour that is very hard to 
explain...but knowing how and when the urlProgress message stops being sent 
will assist me in troubleshooting :)

Oh, and I'm working off page 14 of the iOS release notes. The user guide 
entries for libUrlDownloadToFile just confuse me, as it appears to be 
documentation for a slightly different version of the libUrlDownloadToFile 
command.

Cheers

Gerry




___
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


Weird script behaviour (was libUrlDownloadToFile & urlProgress)

2011-03-21 Thread Gerry
So more messing about reveals that my problem wasn't with
libUrlDownloadToFile at all - but it's still weird.

I have a button that calls a command - upDateSongs - from its script.

If upDateSongs is in the stack script everything works fine. However
if it's in the card script the app goes mad - it starts processing the
card script from the top, running any code it encounters (my
urlProgress code was at the top of the card script, so it was
triggered by the sending of upDateSongs from the button - hence my
suspicions about libUrlDownloadToFile and urlProgress).

Crazy. And it makes me wonder if my stack is somehow corrupt. Anyone
seen that before?

Cheers

Gerry

On Tuesday, 22 March 2011 at 3:29 PM, Gerry wrote:
> I'm using libUrlDownloadToFile to download some mp3s. As you might know 
> libUrlDownloadToFile periodically sends the message "urlProgress" to the 
> originating object so you can monitor the progress of downloads.
>
> It's working well, but I'm confused about when libUrlDownloadToFile stops 
> sending the urlProgress message. Does it stop once the download is complete? 
> Or do I have to explicitly kill it?
>
> I ask because I'm getting some weird behaviour that is very hard to 
> explain...but knowing how and when the urlProgress message stops being sent 
> will assist me in troubleshooting :)
>
> Oh, and I'm working off page 14 of the iOS release notes. The user guide 
> entries for libUrlDownloadToFile just confuse me, as it appears to be 
> documentation for a slightly different version of the libUrlDownloadToFile 
> command.
>
> Cheers
>
> Gerry
>

___
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: Weird script behaviour (was libUrlDownloadToFile & urlProgress)

2011-03-23 Thread Gerry
This is the script that calls the handler:

on mouseup
set the blendLevel of me to "10"
updateSongsList
end mouseup

This is the handler that it calls (I've 'd out some domain details):

on updateSongsList
local songsOnDevice, songListOnServer
play empty
hide button "stopButton"
put "Checking for updates..." into field "messages"
put url "https://.com/hrabisms/songsupdate.txt"; into
songListOnServer
put the dgText of group "Songs" into songsOnDevice
if the number of lines in songListOnServer > the number of lines in
songsOnDevice then
put "Update received!" into field "messages"
wait 120
set the dgText of group "Songs" to songListOnServer
set the defaultFolder to specialFolderPath("Documents")
put songsOnServer into URL ("file:songs.txt")
else
put "No update received. Rats." into field "messages"
wait 120
end if
put "" into field "messages"
end updateSongsList


As I said previously, this script is not executed if it's in the card
script, but does when it's in the stack script. That's weird enough,
but if I place it in the card script and I use "Send updateSongsList
to this card" in the button script it starts executing the card script
from the top, and I can track that by setting a breakpoint against the
send command - it jumps from the button script into the card script,
and I can step through all the lines in that card script, executing
them as I go.

Like I said, totally crazy!

Gerry


-- photo site: http://gerryorkin.com

On Wednesday, 23 March 2011 at 4:40 PM, J. Landman Gay wrote:
> On 3/22/11 8:38 PM, Gerry Orkin wrote:
> > Jacqueline,
> >
> > As I mentioned, it goes crazy. Setting a breakpoint in the referring
> > button script jumps me to the top line of the card script, but not to
> > the handler being called. The trace shows that LiveCode is attempting
> > to evaluate every line of code in the card script, starting from the
> > top, and including blank lines.
>
> Are you using the "send" command instead of just calling handlers
> directly? Those won't break unless you put a breakpoint into the handler
> you're sending to. But in general you shouldn't need to use "send" for
> most things. Too many "send" commands in a row can set up a chain
> reaction and pending messages will run out of control.
>
> I've never heard of a problem like this, so it's hard to diagnose. If
> you post the part of your script where it goes off track maybe we'll see
> something.
>
> --
> 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


Building for the iPhone 3G

2011-03-23 Thread Gerry
I'm using the wonderful service at testflightapp.com to distribute iOS builds 
to a few testers. One has an iPhone 3g, and when trying to register his device 
he gets the message "Give your developers some time to create a build for this 
iPhone 3g. Testflight will e-mail you when they have."

Can we not build for the 3g? Or is there a setting I'm missing?

Cheers

Gerry 
-- photo site: http://gerryorkin.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: Weird script behaviour (was libUrlDownloadToFile & urlProgress)

2011-03-23 Thread Gerry
Jacq, the button is on the card, and isn't in a group.

g

-- photo site: http://gerryorkin.com

On Thursday, 24 March 2011 at 8:32 AM, J. Landman Gay wrote: 
> On 3/23/11 4:41 AM, Gerry wrote:
> > This is the script that calls the handler:
> > 
> > on mouseup
> > set the blendLevel of me to "10"
> > updateSongsList
> > end mouseup
> 
> Where is the button located? On the card? In a group?
> 
> > 
> > This is the handler that it calls (I've 'd out some domain details):
> > 
> > on updateSongsList
> > local songsOnDevice, songListOnServer
> > play empty
> > hide button "stopButton"
> > put "Checking for updates..." into field "messages"
> > put url "https://.com/hrabisms/songsupdate.txt"; into
> > songListOnServer
> > put the dgText of group "Songs" into songsOnDevice
> > if the number of lines in songListOnServer> the number of lines in
> > songsOnDevice then
> > put "Update received!" into field "messages"
> > wait 120
> > set the dgText of group "Songs" to songListOnServer
> > set the defaultFolder to specialFolderPath("Documents")
> > put songsOnServer into URL ("file:songs.txt")
> > else
> > put "No update received. Rats." into field "messages"
> > wait 120
> > end if
> > put "" into field "messages"
> > end updateSongsList
> 
> I don't see anything untoward there. Something else is going on.
> 
> > As I said previously, this script is not executed if it's in the card
> > script, but does when it's in the stack script. That's weird enough,
> 
> It's explainable if the button is farther back in the message hierarchy 
> than the card. The message path gets a little convoluted in background 
> groups.
> 
> > but if I place it in the card script and I use "Send updateSongsList
> > to this card" in the button script it starts executing the card script
> > from the top, and I can track that by setting a breakpoint against the
> > send command - it jumps from the button script into the card script,
> > and I can step through all the lines in that card script, executing
> > them as I go.
> > 
> > Like I said, totally crazy!
> 
> Did you happen to insert the card script into the message path?
> 
> If it isn't already, try moving your button so that it sits directly on 
> the card itself, not in any group. Keep its mouseup handler the way you 
> have it above. That will put the card into the message path. Put your 
> updateSongsList handler in the card.
> 
> I'm not sure what's going on, but it sounds like some kind of message 
> path conflict coupled with some kind of recursion.
> 
> -- 
> 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


Re: Building for the iPhone 3G

2011-03-23 Thread Gerry
I selected 3.1.3. This tester is on iOS 4.2.1 (8C148). 

g

-- photo site: http://gerryorkin.com

On Thursday, 24 March 2011 at 8:51 AM, Colin Holgate wrote: 
> 
> On Mar 23, 2011, at 5:32 PM, Gerry wrote:
> 
> > > Can we not build for the 3g? Or is there a setting I'm missing?
> 
> There is a good chance that LC is just building for ARM7 and not ARM6, but 
> also, what OS did you select? If it was 4.3 then that would rule out 3G too.
> 
> 
> 
> ___
> 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: Weird script behaviour (was libUrlDownloadToFile & urlProgress)

2011-03-23 Thread Gerry
Jacq

Figured it out. Later in the card script I set up a scroll control, and include 
this line in that setup script:

iphoneControlSet sScrollerId, "declerationRate", fast

The compiler doesn't like that line. If I comment it out or put "fast" in 
quotes, everything works fine.

My scroll control setup is taken from a demo stack I found on the runrev 
forums, and it works in that demo stack, and in mine. In my naivety and 
cluelessness (hell, I've been at this for 2-3 weeks in total, after many many 
years away from any form of programming or scripting) I assumed that the 
compile error I was getting against that line had something to do with the fact 
that I was running on a Mac - after all, on the iPhone the scroll control works 
fine with it included and I've seen other examples of scroll control scripts 
that include that line, apparently without problems.

So, sorry for bothering the list with my human error :) And thanks again for 
your interest.

Gerry

-- photo site: http://gerryorkin.com

On Thursday, 24 March 2011 at 10:13 AM, J. Landman Gay wrote: 
> On 3/23/11 4:57 PM, Gerry wrote:
> > Jacq, the button is on the card, and isn't in a group.
> 
> It's bizarre, I've never heard of anything like this. If you like, send 
> me a copy of the stack and I'll take a look. You've got me curious.
> 
> -- 
> 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


Re: Weird script behaviour (was libUrlDownloadToFile & urlProgress)

2011-03-23 Thread Gerry
Thanks Jacq :)

Back to libUrlDownloadToFile & urlProgress, I'm still interested to know how we 
stop the urlProgress being sent after we finish a download, as I think I'm 
still seeing something weird in relation to that. urlProgress returns 
"downloaded" when the download is done, but seems to continue processing. Or 
something.

Cheers

Gerry

-- photo site: http://gerryorkin.com

On Thursday, 24 March 2011 at 3:27 PM, J. Landman Gay wrote: 
> On 3/23/11 8:46 PM, Gerry wrote:
> > Jacq
> > 
> > Figured it out. Later in the card script I set up a scroll control,
> > and include this line in that setup script:
> > 
> > iphoneControlSet sScrollerId, "declerationRate", fast
> > 
> > The compiler doesn't like that line. If I comment it out or put
> > "fast" in quotes, everything works fine.
> 
> Interesting. I'm not sure why you didn't get an error instead, but those 
> commands are fairly new, and wired into the engine a little differently. 
> Rule of thumb in LiveCode though is to always quote literals. Some 
> people don't, but while the engine can be somewhat forgiving about that, 
> eventually it will bite you. It also speeds up your code, because the 
> engine doesn't have to figure out if the term is a literal or a variable.
> 
> > So, sorry for bothering the list with my human error :)
> 
> Not at all, that's why we're here. And I, at least, learned something. 
> Go ahead and make some more mistakes. :)
> 
> -- 
> 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


iOS quit app message?

2011-03-24 Thread Gerry
Hi all

Is there any way to detect the closing of an iOS app? As far as I can tell 
closestack and suspendstack don't work.

Cheers

Gerry

-- photo site: http://gerryorkin.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


[no subject]

2011-03-27 Thread Gerry
Has anyone got the new network reachability function to work in iOS? Contrary 
to page 34 of the new iOS release notes that come with LiveCode 4.6, I'm 
finding that the reachabilityInfo param of the reachabilityChanged command is 
empty when a network connection is present; the documentation claims that it 
should be empty when no connection is available.

Has anyone tried this?

Cheers

Gerry



___
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


Arghhh. Is this stack corrupt?

2011-03-29 Thread Gerry
I'm wanting to save the current card name out to a text file when my iOS app 
quits, so I can return there when the app re-opens.

I use:

on shutdown
 set the defaultFolder to specialFolderPath("Documents")
 put the short name of this card into URL ("file:shutdown.txt") 
end shutdown

That writes out e.g. "Songs" to the shutdown.txt file ("Songs" is one of the 
card names).

On openstack, I want to go to the card whose name is in that file. So I do:

on openstack
set the defaultFolder to specialFolderPath("Documents")
go card URL ("file:shutdown.txt") 
end openstack 

All works fine on my Mac, and on that platform I can see the correct value is 
being written out to the file, and being read in from the file on openstack.

Until this afternoon, it was working in iOS - now it's stopped. No matter what 
is being written out on shutdown in iOS, if I check the text read from the file 
on openstack (using answer URL ("file:shutdown.txt")) I always get the value 
"card id 1002".

I have no card id 1002 in my stack! 

What is going on?

Cheers

Gerry




___
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: Arghhh. Is this stack corrupt?

2011-03-29 Thread Gerry
Bernd

All my cards are properly named and none has the id 1002.

I call both openstack (where the file is read) and shutdown (where it is 
written) from the stack script. No other stacks in use, and no substacks.

Cheers

Gerry

-- photo site: http://gerryorkin.com

On Wednesday, 30 March 2011 at 3:35 AM, BNig wrote: 
> Hi Gerry,
> 
> the only thing I could think of is that you accidentally deleted the name of
> the first card of your stack. Happens occasionally in the inspector when one
> edits the properties and the inspector is still open and the name field has
> focus and you don't expect it.
> card id 1002 is the default for card 1 of a stack, if you accidentally
> delete the name it will revert to the default.
> 
> 
> Depending on your stack(s) there could be of course a lot of other reasons.
> What is the set up of you stack. How many cards/substacks, from what card
> are you trying to save, where is the shutdown handler? Stack script, card
> script? Do you use a stack as data stack, i.e. a saveable stack stored in
> "documents" as in a splashscreen set up?
> 
> Kind regards
> 
> Bernd
> 
> --
> View this message in context: 
> http://runtime-revolution.278305.n4.nabble.com/Arghhh-Is-this-stack-corrupt-tp3414863p3415409.html
> Sent from the Revolution - User mailing list archive at Nabble.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


Swapping one control type for another in a group

2011-04-03 Thread Gerry
I've go an iOS scrolling control working really well, except I now need to 
replace the text field it uses to display the text that scrolls with a 
datagrid. The text field is part of a group, so how do I swap it out for the 
datagrid, without changing anything else?

-- photos: http://gerryorkin.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: Check for first run

2011-04-17 Thread Gerry
Check for a local file - if it isn't there you can be sure that it is the first 
time the app has been launched. After you ask your user your questions, write 
the file. On subsequent launches when you check for the file...it's there, so 
skip the questions.

So on openstack do:


put specialfolderpath ("documents") & "/" &"firstlaunch.txt" into 
pathToLaunchFile
if there is not a file pathToLaunchFile then 
askYouQuestions
set the defaultFolder to specialFolderPath("Documents")
put "1" into URL (("file:firstlaunch.txt"))
else
doSomethingElse
end if

Gerry




-- photos: http://gerryorkin.com
On Sunday, 17 April 2011 at 4:42 PM, Maarten Koopmans wrote: 
> Hi,
> 
> Is there a best practice for checking if the application is on a
> first run for a standalone(especially one that will go to an App store
> eventually)?
> 
> I simply need to ask the user a few questions on first run (and set up
> a sqlite db).
> 
> Best, Maarten
> 
> ___
> 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


Copy files location in iOS

2011-04-19 Thread Gerry
I've read the release notes but I still can't work out how to refer to files 
I've included with the app in the Copy Files pane of the standalone settings. I 
think they are in the app's "library" folder, but I can't refer to them using 
e.g.:

specialfolderpath ("library") & "/myfile.mp3")

Help!

Gerry





-- photos: http://gerryorkin.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: iOS: UIScrollView and scrollable Data Grid

2011-04-20 Thread Gerry
No, that all sounds fine. But you are about to suffer frustration and 
disappointment :) Data grids are VERY slow to populate with text under iOS. For 
example, I have less than 50 lines of text to put into a data grid and it takes 
3-4 seconds. Useless :)

Cheers

Gerry

-- photos: http://gerryorkin.com
On Wednesday, 20 April 2011 at 8:02 PM, Giulio Mastrosanti wrote: 
> but now I'm wondering, before approaching the next steps, maybe I'm 
> accomplishing the thing on a comp'licated way?
> maybe there's a simples way to a have get the goal, or ( better ) some 
> example out there?
> 
> thanks for your attention,
> 
>  Giulio
> ___
> 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: Scrolling in an iOS text-field

2011-04-30 Thread Gerry
John

Here's a simple iOS scrolling text example:

http://dl.dropbox.com/u/67170/examples/TextScrollerExample.livecode

It's for iPhone Retina resolution screens - you will need to change some stuff 
to make it work on older iPhone screens.

I've commented the code but if you need further help just ask :)

Gerry



-- photos: http://gerryorkin.com
On Saturday, 30 April 2011 at 5:39 PM, John Allijn wrote:
> 
> Secondly, I can't seem to get the scroller to be displaced in the little part 
> of my screen where I want it to be. It runs of the screen on the bottom, 
> thereby messing up my navigation buttons, which are drawn on a image on the 
> background of the window.
> 
> Has anyone figured out what the best way is to scroll in a text field on 
> iOS???
___
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: Check iOS communications

2011-05-09 Thread Gerry
Refer them to the Settings app to do it for themselves :)

g

-- photos: http://gerryorkin.com
On Tuesday, 10 May 2011 at 7:55 AM, John Allijn wrote: 
> Too bad: I wanted the user to have an option to save battery-life and quickly 
> turn those services on when needed...
> 
> Thanks!!!
> 
> 
> On May 9, 2011, at 23:51, Gerry Orkin  wrote:
> 
> > I don't think Apple allows apps to turn those services on or off. 
> > 
> > Gerry
> > 
> > -- Sent from my iPhone. 
> > 
> > On 10/05/2011, at 7:18 AM, John Allijn  wrote:
> > 
> > > Hi,
> > > Is there a way to check if bluetooth and wifi are switched on or off on 
> > > iOS? Is so, is it possible to switch it on or off?
> > > 
> > > Best regards,
> > > John. 
> > > ___
> > > 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
> 
___
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: conference dilemma...

2013-02-27 Thread Gerry
To paraphrase David Sedaris:

I think of being on an airplane. The flight attendant comes down the aisle
with her food cart and, eventually, parks it beside my seat. ‘Can I
interest you in the chicken?’ she asks. ‘Or would you prefer the platter of
s—t with bits of broken glass in it?'

To be undecided about which conference to attend is to pause for a moment
and then ask how the chicken is cooked.


Gerry

On Thursday, February 28, 2013, Heather Laine wrote:

> Colin, I'm surprised you even hesitated for a moment. There's just no
> contest.
>
> Heather
>
> On 27 Feb 2013, at 19:36, Colin Holgate
>


-- 
photos: http://gerryorkin.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: Building apps for iOS 7?

2015-02-02 Thread Gerry
I can build for iOS 7.1 using LC 6.7.1 and xCode 6.1.1.

g

On Mon Feb 02 2015 at 12:02:20 PM Terry Judd 
wrote:

> Xcode went and did that automatic update thing on me again and while I
> managed to download and install past versions and have LiveCode recognise
> them I don't seem to be able to build for anything before iOS 8.1. I'm
> using LC 6.6.5 but I'm getting the same response for all previous 6.6
> versions as well. I can still select 7.1 as the target in the simulator and
> test against that but when I go to build the app it will only let me create
> an 8.1 compatible app. If I remove Xcode 6.1 from the list of iOS SDKs then
> it won't let me  build at all.
>
> Any clues on how to be able to build against an earlier version of the iOS
> SDK again?
>
> Terry...
> ___
> 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


iOS app rejection issue

2015-02-05 Thread Gerry
Hi all

I’ve just submitted an app to Apple using LC 6.7.2 (rc 2) and the latest 
version of xCode (6.1.1). That xCode version is the only one set in the mobile 
prefs for LiveCode. The app build requirement is set to iOS 8 or later. 

I’m getting the following error messages back from Apple with the requirement 
that I fix the problem before submitting again. I have no idea what the problem 
is - can anyone help?:

Minimum OS Version Mismatch - The minimum OS version (LC_VERSION_MIN_IPHONEOS) 
in the binary ('4.3') for architecture ('armv7') differs from the 
MinimumOSVersion ('8.0') in the Info.plist.

Minimum OS Version Mismatch - The minimum OS version (LC_VERSION_MIN_IPHONEOS) 
in the binary ('7.0') for architecture ('arm64') differs from the 
MinimumOSVersion ('8.0') in the Info.plist.

Cheers

Gerry
___
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: iOS app rejection issue

2015-02-05 Thread Gerry
Update: Submitting with the minimum supported OS set to 7.0 I just get the
first error back.

Gerry



On Fri Feb 06 2015 at 1:52:25 PM Gerry  wrote:

> Hi all
>
> I've just submitted an app to Apple using LC 6.7.2 (rc 2) and the latest
> version of xCode (6.1.1). That xCode version is the only one set in the
> mobile prefs for LiveCode. The app build requirement is set to iOS 8 or
> later.
>
> I'm getting the following error messages back from Apple with the
> requirement that I fix the problem before submitting again. I have no idea
> what the problem is - can anyone help?:
>
> Minimum OS Version Mismatch - The minimum OS version
> (LC_VERSION_MIN_IPHONEOS) in the binary ('4.3') for architecture ('armv7')
> differs from the MinimumOSVersion ('8.0') in the Info.plist.
>
> Minimum OS Version Mismatch - The minimum OS version
> (LC_VERSION_MIN_IPHONEOS) in the binary ('7.0') for architecture ('arm64')
> differs from the MinimumOSVersion ('8.0') in the Info.plist.
>
> Cheers
>
> Gerry
___
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: [OT)ish iOS app rejection issue

2015-02-08 Thread Gerry
What was the reason given for the rejection?

g

On Sat Feb 07 2015 at 1:45:41 AM Ralph DiMola 
wrote:

> I submitted 2 apps on the same day last week. Both apps are identical in
> every way except for the data set. One was approved, one was rejected???
>
> Just an FYI on the inconsistency of the review process.
>
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
>
>
> ___
> livecode-dev mailing list
> livecode-...@lists.runrev.com
> http://lists.runrev.com/mailman/listinfo/livecode-dev
>
___
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: iOS voice-to-text

2015-02-26 Thread Gerry
Alain

Put Richard's code into an open card handler to make the native field
appear when you first open the card. The rect of the field in his code is
set to match the rect of a field named "note" - I do the same kind of thing
because it lets you easily change the size and position of the native field
just by changing the size and position of that field - and of course you
need to set the visible of the field "note" to false.

To delete the native field you would do:

mobileControlDelete  "displayInput" (using his example).

You can also hide the native field with:

 mobileControlSet "displayInput", "visible", "false".

Gerry

On Fri, 27 Feb 2015 at 07:53 Richard Miller  wrote:

>mobileControlCreate "multiline", "displayInput"
>mobileControlSet "displayInput", "rect", the rect of fld "note"
>mobileControlSet "displayInput", "vScroll", "0"
>mobileControlSet "displayInput", "visible", "true"
>mobileControlSet "displayInput", "autocorrectionType", "no"
>mobileControlSet "displayInput", "editable", "true"
>mobileControlSet "displayInput", "fontsize", 18
>mobileControlSet "displayInput", "backgroundColor", "yellow"
>mobileControlSet "displayInput", "borderStyle", "line"
>mobileControlSet "displayInput", "scrollingEnabled", true
>mobileControlSet "displayInput", "enabled", true
>mobileControlSet "displayInput", "text", ""
>
>
> On 2/26/15 12:50 PM, Alain Vezina wrote:
> > How do you make a native iOS field?
> >
> > Alain Vézina, directeur
> > Logilangue
> > www.logilangue.com
> >
> > Le 2015-02-26 à 10:30, Richard Miller  a écrit :
> >
> >> Solved the problem. I was using a standard LC text field instead of a
> native iOS field.
> >>
> >>
> >> On 2/26/15 8:01 AM, Richard Miller wrote:
> >>> I've noticed that the built in voice-to-text feature on an iPhone
> doesn't work in a standard LC text field. When I tap the icon on the iPhone
> keyboard to the left of the spacebar and then speak, no text comes into the
> field. Anyone know how to enable this feature?
> >>>
> >>> ___
> >>> 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
>
> ___
> 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: RELEASE 6.7.3 / 7.0.3

2015-02-26 Thread Gerry
Monte and RunRev have been working on this. He has to re-build his
externals before this'll work. I've been waiting 4 weeks for RunRev to fix
this and now, through no fault of his, I have to wait until Monte gets his
wonderful externals updated.

Gerry

On Fri, 27 Feb 2015 at 05:21 William Prothero 
wrote:

> The revBrowserCEF is still not ready for prime time. Crashes the IDE.
> There is a bug report on it.
> Bill
>
> > On Feb 26, 2015, at 8:20 AM, Chris Sheffield 
> wrote:
> >
> > Actually, in this case it turned out to be related to the mergExt
> externals (sorry, Monte). An error occurs when building the app *only* if
> these externals are included (this is LC 6.7.3 and 7.0.3 only; LC 6.7.2
> builds just fine). So I'm not sure if there is an actual bug in LC or if
> there's a problem with the externals or what. I just submitted a new report
> with a sample stack. We'll see what they say.
> >
> > http://quality.runrev.com/show_bug.cgi?id=14694 <
> http://quality.runrev.com/show_bug.cgi?id=14694>
> >
> > Chris
> >
> >> On Feb 26, 2015, at 9:01 AM, Dave Kilroy 
> wrote:
> >>
> >> Hi Chris, sounds like you may be experiencing one of these bugs:
> >>
> >> This bug (related to sqlite external)
> >> http://quality.runrev.com/show_bug.cgi?id=14675
> >>
> >> Or this one (related to revzip)
> >> http://quality.runrev.com/show_bug.cgi?id=14625
> >>
> >> In both cases the trick is ensure that the minimum iOS version is set to
> >> "6.1 or later"  (or an earlier version, but no later...). I only
> experienced
> >> this bug in 6.7.2 stable, the rc versions were fine...
> >>
> >> Kind regards
> >>
> >> Dave
> >>
> >>
> >>
> >>
> >>
> >> -
> >> "Some are born coders, some achieve coding, and some have coding thrust
> upon them." - William Shakespeare & Hugh Senior
> >>
> >> --
> >> View this message in context: http://runtime-revolution.
> 278305.n4.nabble.com/RELEASE-6-7-3-7-0-3-tp4689336p4689345.html
> >> Sent from the Revolution - User mailing list archive at Nabble.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
___
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: RELEASE 6.7.3 / 7.0.3

2015-02-26 Thread Gerry
*Sound of cheering and clapping*

On Fri, 27 Feb 2015 at 14:45 Monte Goulding 
wrote:

>
> On 27 Feb 2015, at 12:53 pm, Monte Goulding 
> wrote:
>
> > Yes, and I'm having a spot of bother working out the right settings to
> use so what I hoped would be a quick compile and release might not be ;-(
>
> OK, I worked out the issue and my build script is running. It takes a
> while to build everything for all the different SDKs etc but hopefully I'll
> have new versions up tonight or in the morning.
>
> --
> M E R Goulding
> Software development services
> Bespoke application development for vertical markets
>
> mergExt - There's an external for that!
>
> ___
> 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: RELEASE 6.7.3 / 7.0.3

2015-03-01 Thread Gerry
Hey Monte, do you have an ETA for the new versions?

Gerry

OK, I worked out the issue and my build script is running. It takes a while
> to build everything for all the different SDKs etc but hopefully I'll have
> new versions up tonight or in the morning.
>
>
___
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: RELEASE 6.7.3 / 7.0.3

2015-03-01 Thread Gerry
thanks :)


> On 2 Mar 2015, at 10:46 am, Monte Goulding  
> wrote:
> 
> 
> On 2 Mar 2015, at 10:25 am, Gerry  wrote:
> 
>> Hey Monte, do you have an ETA for the new versions?
> 
> Hopefully today, most of them built fine but there are a few that I need to 
> massage a little.
 
___
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


  1   2   3   4   >