Re: I can't send a message with a field to another handler

2012-08-03 Thread Kay C Lan
On Fri, Aug 3, 2012 at 9:14 AM, Dr. Hawkins

 Just to be clear here, it's not the mechanics of getting it there, but
 rather the content format of the message.


I believe the tricks are:

1) send the parameters as long names
2) you then have to use 'the text of' to get the numbers
3) you then need to 'set the text of' to change the content - it is a
property you are dealing with

so

on closeField
  --it's on this card
  put the long name of field SubTotal into tRef1
  --it's on another card
  put the long name of field GrandTotal of card Summary into tRef2

  dlrAdd me, tRef1, tRef2

 --any other stuff

end closeField

In a stack or library script:

on dlrAdd pAmt, tRef1, tRef2
   set the text of tRef2 to pAmt + the text of tRef1
end dlrAdd


HTH
___
use-livecode mailing list
use-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: I can't send a message with a field to another handler

2012-08-03 Thread Terry Judd

On 03/08/2012, at 04:21 PM, Kay C Lan wrote:

 On Fri, Aug 3, 2012 at 9:14 AM, Dr. Hawkins
 
 Just to be clear here, it's not the mechanics of getting it there, but
 rather the content format of the message.
 
 
 I believe the tricks are:
 
 1) send the parameters as long names
 2) you then have to use 'the text of' to get the numbers
 3) you then need to 'set the text of' to change the content - it is a
 property you are dealing with
 
 so
 
 on closeField
  --it's on this card
  put the long name of field SubTotal into tRef1
  --it's on another card
  put the long name of field GrandTotal of card Summary into tRef2
 
  dlrAdd me, tRef1, tRef2
 
 --any other stuff
 
 end closeField
 
 In a stack or library script:
 
 on dlrAdd pAmt, tRef1, tRef2
   set the text of tRef2 to pAmt + the text of tRef1
 end dlrAdd


set the text of tRef2 to pAmt+value(tRef1)

will also work

Terry...

Dr Terry Judd
Senior Lecturer in Medical Education
Medical Eduction Unit
Faculty of Medicine, Dentistry  Health Sciences
The University of Melbourne





___
use-livecode mailing list
use-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: Secure Login

2012-08-03 Thread Pierre Sahores
Hi,

The ways to go are the same we can use in any other n-tiers development 
contexts. The best is to set up a mix of the bellow ways to go :

1.- login/password where the credentials are send over the network as hashed 
data to be tested against server-side localhost-accessible SQL stored reference 
(the first time - no direct connexion between the client and the SQL backend 
but client to LC-server and LC-server to SQL backend in localhost mode. It's 
there preferable to rely on an ACID-SQL RDBMS alike PostgreSQL, Sybase, Oracle, 
etc...)
2.- if matching, a token based SQL stored session is started for further 
exchanges all along the time the client will have to exchange data with the 
server (time 2 to n) where a cookie/SQL session is used
3.- as an option, the HTTPS encryption can be add to 1 + 2, if your mobile 
application follows the Apple's iTunes rules in about encryption uses but, no 
one should be encouraged to use 3.- without 1.- + 2.- as long as HTTPS is't as 
secure anymore as it use to be in the past...
4.- the session have to ends up with the client logout + a default timeout 
option to be set in the LC coded authentication workflow.

As long as this authentication worklow matches, the data exchange between the 
client and the server continues and else it's interrupted and the client is 
prompted to login again to open a new trustable connexion.

Best regards,

Le 3 août 2012 à 00:10, ddas a écrit :

 Greetings All,
 
 Is there a preferred way of securely logging in and exchanging data between 
 rev IOS client and rev server.
 
 Thanks,
 Debdoot
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode

--
Pierre Sahores
mobile : 06 03 95 77 70
www.sahores-conseil.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


UITextField - Text Appears Shifted?

2012-08-03 Thread Scott Rossi
Anyone know why the text of a UITextField (input) appears shifted up?  Is
there any way to shift it down?

There's very little on the card -- just a group and a graphic to define the
region in which to display the text.

http://www.tactilemedia.com/download/uitextfield.png

The clearbutton for the control is displayed, and this appears in the proper
position, but for some reason the text is appearing shifted upward about 4
pixels.  It appears the same in both the simulator and on a device.

Any suggestions for a fix?

Thanks  Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design



___
use-livecode mailing list
use-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: physical books...

2012-08-03 Thread Rod McCall
Hi Colin,

Good to hear that your book is out, I also just ordered it on my Kindle.

Also as many others have already said, congrats on getting your first
book published.

Cheers,

Rod

-- 
Dr Rod McCall
Researcher in in-car, mixed reality technology and gaming
Interdisciplinary Centre for Security, Reliability and Trust
University of Luxembourg
Blog: www.rodmc.com twitter:rodlux
Publications and Information available on my blog

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


AW: UITextField - Text Appears Shifted?

2012-08-03 Thread Tiemo Hollmann TB
Hi Scott,

I experienced this phenomenom after changing the textsize and size of the
field by script in LC 4.6.2. After clicking into the field it was positioned
again in the center. I solved it by select after ...
I don't know if this is a bug or a feature and if my solution works for you,
but perhaps you can give it a try
Tiemo

 -Ursprüngliche Nachricht-
 Von: use-livecode-boun...@lists.runrev.com [mailto:use-livecode-
 boun...@lists.runrev.com] Im Auftrag von Scott Rossi
 Gesendet: Freitag, 3. August 2012 12:41
 An: LiveCode Mail List
 Betreff: UITextField - Text Appears Shifted?
 
 Anyone know why the text of a UITextField (input) appears shifted up?  Is
 there any way to shift it down?
 
 There's very little on the card -- just a group and a graphic to define
 the region in which to display the text.
 
 http://www.tactilemedia.com/download/uitextfield.png
 
 The clearbutton for the control is displayed, and this appears in the
 proper position, but for some reason the text is appearing shifted upward
 about 4 pixels.  It appears the same in both the simulator and on a
 device.
 
 Any suggestions for a fix?
 
 Thanks  Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 
 
 ___
 use-livecode mailing list
 use-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


iCloud external :-)

2012-08-03 Thread Maarten Koopmans
Folks,

I have spent a lot of time on it over the last two months, but I
finally have an iOS iCloud external working. One of the things I've
learned is that iCloud works (by itself), but it is very easy to make
a mistake - hence the apps that behave so badly with iCloud.

Anyway, the external can:

- give back your app name, team prefix, bundle identifier
- put files in your app's container
- manipulate and query the apps container (evict files, force
download, modification dates, list files...)
- put files in a shared container across apps - so you have shared
data across iOS apps [ yes ... that's right!!!]
- manipulate and query the shared container
- put files in a container or shared container up for download for two
weeks [ yes, you read this correctly as well]

I can do two things:
1) continue with my main project as I will eventually
2) spend even more time and put the external up for sale for $49

As this really has been a LOT of work I don't want to put something up
for sale if nobody is interested, so consider this a poll. Personally,
I find the shared storage across apps and public data publishing is
pretty awesome.

Let me know if you're interested - otherwise I'll simply enjoy my weekend ;-)

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


Re: physical books...

2012-08-03 Thread Colin Holgate
Thanks for letting me know. I've downloaded that one too now. It doesn't look 
as nice as the PDF, they have simplified some of the layout styles, but it does 
have hyperlinks between the contents and the pages, so that's good.

The fill-justified paragraphs are somewhat disturbing in landscape, reading it 
in portrait is much better.


On Aug 3, 2012, at 7:19 AM, Rod McCall rodmccall...@googlemail.com wrote:

 
 Good to hear that your book is out, I also just ordered it on my Kindle.

___
use-livecode mailing list
use-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: physical books...

2012-08-03 Thread Colin Holgate
By the way, I bought the iBooks version too. It's more expensive than the 
Kindle one, but it's lot nicer layout.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


AW: physical books...

2012-08-03 Thread Tiemo Hollmann TB
Congrats to your book!
I just had a look into the preview at amazon. Great work.
Tiemo

 -Ursprüngliche Nachricht-
 Von: use-livecode-boun...@lists.runrev.com [mailto:use-livecode-
 boun...@lists.runrev.com] Im Auftrag von Colin Holgate
 Gesendet: Freitag, 3. August 2012 01:50
 An: How to use LiveCode
 Betreff: physical books...
 
 The publisher sent three copies of my book to me. I wasn't expecting them
 this soon, so that was a pleasant surprise when I signed for two packages
 (I already knew about another package). I showed the books to the security
 guard and some neighbors!
 ___
 use-livecode mailing list
 use-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: iCloud external :-)

2012-08-03 Thread William de Smet
Hi Maarten,

I am very much interested in this Cloud external.
Do you have any information and screenshots online already?

groeten,

William


2012/8/3 Maarten Koopmans maarten.koopm...@gmail.com:
 Folks,

 I have spent a lot of time on it over the last two months, but I
 finally have an iOS iCloud external working. One of the things I've
 learned is that iCloud works (by itself), but it is very easy to make
 a mistake - hence the apps that behave so badly with iCloud.

 Anyway, the external can:

 - give back your app name, team prefix, bundle identifier
 - put files in your app's container
 - manipulate and query the apps container (evict files, force
 download, modification dates, list files...)
 - put files in a shared container across apps - so you have shared
 data across iOS apps [ yes ... that's right!!!]
 - manipulate and query the shared container
 - put files in a container or shared container up for download for two
 weeks [ yes, you read this correctly as well]

 I can do two things:
 1) continue with my main project as I will eventually
 2) spend even more time and put the external up for sale for $49

 As this really has been a LOT of work I don't want to put something up
 for sale if nobody is interested, so consider this a poll. Personally,
 I find the shared storage across apps and public data publishing is
 pretty awesome.

 Let me know if you're interested - otherwise I'll simply enjoy my weekend ;-)

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


Re: iCloud external :-)

2012-08-03 Thread Maarten Koopmans
Hi Willem,

Screenshots with iCLoud are next-to-near impossible, but here's some
code from handlers in my demo/test stack.

First, getting some basic information:

on mouseUp
   answer Trying to fetch basic app/team info, and so some setup
   put setupUbiquityDocumentsFolder() into tSetup
   answer Setting up ubiquity document url succeeded:   tSetup
   put getApplicationIdentifier() into tAppID
   answer App ID:   tAppID
   put getAppName() into tAppName
   answer App Name:   tAppName
   put getTeamPrefix() into tTeamPrefix
   answer Team prefix:   tTeamPrefix
   answer Containerized name:   containerize(my.com.SharedStorage)
end mouseUp

Next, publishing a file publicly via iCloud:

on mouseUp
   answer In as public file handler
   set the defaultFolder to specialFolderPath(documents)
   answer default folder set
   put HelloCloudPublic.txt into tLocalFilePath
   open file tLocalFilePath for write
   write Hello iCloud! to file tLocalFilePath
   close file tLocalFilePath
   answer tLocalFilePath
   --Note that here we effectively use the FULL path... Different from
setUbiquitous
   put asPublicCloudFile(tLocalFilePath) into tSharedURL
   answer Your public iCloud URL for the next two weeks is:   tSharedURL
   revMail y...@who.net,,miCloud link,tSharedURL
end mouseUp

And the killer - publishing a file in a shared storage container
(shared with other apps):

on mouseUp
   answer In make ubiquitous (1) handler
   set the defaultFolder to specialFolderPath(documents)
   get setupUbiquityDocumentsFolder()
   answer default folder set, setup succeeded =   it
   put HelloCloudUbiqOrLocal.txt into tLocalFilePath
   answer Local file url:   getLocalFileURL(tLocalFilePath)
   open file tLocalFilePath for write
   write Hello iCloud! to file tLocalFilePath
   close file tLocalFilePath
   --This is needed because our routines magically create the correct file path.
   --Whereas LC on opening the file puts the full path into tLocalFilePath
   put HelloCloudUbiqOrLocal.txt into tLocalFilePath
   --Check, check, double check
   answer tLocalFilePath
   --test and show that the file is local
   answer File is local:isLocal(tLocalFilePath)
   -- get its file url
   put getFileURL(tLocalFilepath) into tFileURL
   answer Local file URL =   tFileURL
   --make the file ubiquitous, 1= true, rest = false
   get setUbiquitousForFile(1,tLocalFilePath)
   answer Set ubiquitous, done
   --test to see if it is local or ubiquitous (really, the result
coming back from iCloud in setUbiquitous is less trustworthy)--test to
see if it is local
   answer File is local:isLocal(tLocalFilePath)
   --test to see if it is ubiquitous
   answer File is ubquitous:isUbiquitousDocument(tLocalFilePath)
   --get the file url, again (should be ubiquitous now...)
   put getFIleURL(tLocalFilepath) into tFileURL
   answer Now... Ubiquitous file URL =   tFileURL
   --get the modification date
   answer modification data =   getModificationDateForURL(tFileURL)
   --list the documents container contents
   answer getContentsOfUbiquityDocumentsFolder()
   --delete the ubiquitous document instance
   get setUbiquitousForFileInContainer(0,tLocalFilePath,tContainer)
   answer Remove ubiquitous, done
   --at this point the file is only local...
end mouseUp

Doe this wet your appetite(s)?

Cheers,

Maarten

On Fri, Aug 3, 2012 at 2:31 PM, William de Smet williamdes...@gmail.com wrote:
 Hi Maarten,

 I am very much interested in this Cloud external.
 Do you have any information and screenshots online already?

 groeten,

 William


 2012/8/3 Maarten Koopmans maarten.koopm...@gmail.com:
 Folks,

 I have spent a lot of time on it over the last two months, but I
 finally have an iOS iCloud external working. One of the things I've
 learned is that iCloud works (by itself), but it is very easy to make
 a mistake - hence the apps that behave so badly with iCloud.

 Anyway, the external can:

 - give back your app name, team prefix, bundle identifier
 - put files in your app's container
 - manipulate and query the apps container (evict files, force
 download, modification dates, list files...)
 - put files in a shared container across apps - so you have shared
 data across iOS apps [ yes ... that's right!!!]
 - manipulate and query the shared container
 - put files in a container or shared container up for download for two
 weeks [ yes, you read this correctly as well]

 I can do two things:
 1) continue with my main project as I will eventually
 2) spend even more time and put the external up for sale for $49

 As this really has been a LOT of work I don't want to put something up
 for sale if nobody is interested, so consider this a poll. Personally,
 I find the shared storage across apps and public data publishing is
 pretty awesome.

 Let me know if you're interested - otherwise I'll simply enjoy my weekend ;-)

 --Maarten

 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit 

Re: iCloud external :-)

2012-08-03 Thread William de Smet
Hi Maarten,

This seem pretty straight forward.
I reckon you can get a file from iCloud as well?

groeten,

William


2012/8/3 Maarten Koopmans maarten.koopm...@gmail.com:
 Hi Willem,

 Screenshots with iCLoud are next-to-near impossible, but here's some
 code from handlers in my demo/test stack.

 First, getting some basic information:

 on mouseUp
answer Trying to fetch basic app/team info, and so some setup
put setupUbiquityDocumentsFolder() into tSetup
answer Setting up ubiquity document url succeeded:   tSetup
put getApplicationIdentifier() into tAppID
answer App ID:   tAppID
put getAppName() into tAppName
answer App Name:   tAppName
put getTeamPrefix() into tTeamPrefix
answer Team prefix:   tTeamPrefix
answer Containerized name:   containerize(my.com.SharedStorage)
 end mouseUp

 Next, publishing a file publicly via iCloud:

 on mouseUp
answer In as public file handler
set the defaultFolder to specialFolderPath(documents)
answer default folder set
put HelloCloudPublic.txt into tLocalFilePath
open file tLocalFilePath for write
write Hello iCloud! to file tLocalFilePath
close file tLocalFilePath
answer tLocalFilePath
--Note that here we effectively use the FULL path... Different from
 setUbiquitous
put asPublicCloudFile(tLocalFilePath) into tSharedURL
answer Your public iCloud URL for the next two weeks is:   tSharedURL
revMail y...@who.net,,miCloud link,tSharedURL
 end mouseUp

 And the killer - publishing a file in a shared storage container
 (shared with other apps):

 on mouseUp
answer In make ubiquitous (1) handler
set the defaultFolder to specialFolderPath(documents)
get setupUbiquityDocumentsFolder()
answer default folder set, setup succeeded =   it
put HelloCloudUbiqOrLocal.txt into tLocalFilePath
answer Local file url:   getLocalFileURL(tLocalFilePath)
open file tLocalFilePath for write
write Hello iCloud! to file tLocalFilePath
close file tLocalFilePath
--This is needed because our routines magically create the correct file 
 path.
--Whereas LC on opening the file puts the full path into tLocalFilePath
put HelloCloudUbiqOrLocal.txt into tLocalFilePath
--Check, check, double check
answer tLocalFilePath
--test and show that the file is local
answer File is local:isLocal(tLocalFilePath)
-- get its file url
put getFileURL(tLocalFilepath) into tFileURL
answer Local file URL =   tFileURL
--make the file ubiquitous, 1= true, rest = false
get setUbiquitousForFile(1,tLocalFilePath)
answer Set ubiquitous, done
--test to see if it is local or ubiquitous (really, the result
 coming back from iCloud in setUbiquitous is less trustworthy)--test to
 see if it is local
answer File is local:isLocal(tLocalFilePath)
--test to see if it is ubiquitous
answer File is ubquitous:isUbiquitousDocument(tLocalFilePath)
--get the file url, again (should be ubiquitous now...)
put getFIleURL(tLocalFilepath) into tFileURL
answer Now... Ubiquitous file URL =   tFileURL
--get the modification date
answer modification data =   getModificationDateForURL(tFileURL)
--list the documents container contents
answer getContentsOfUbiquityDocumentsFolder()
--delete the ubiquitous document instance
get setUbiquitousForFileInContainer(0,tLocalFilePath,tContainer)
answer Remove ubiquitous, done
--at this point the file is only local...
 end mouseUp

 Doe this wet your appetite(s)?

 Cheers,

 Maarten

 On Fri, Aug 3, 2012 at 2:31 PM, William de Smet williamdes...@gmail.com 
 wrote:
 Hi Maarten,

 I am very much interested in this Cloud external.
 Do you have any information and screenshots online already?

 groeten,

 William


 2012/8/3 Maarten Koopmans maarten.koopm...@gmail.com:
 Folks,

 I have spent a lot of time on it over the last two months, but I
 finally have an iOS iCloud external working. One of the things I've
 learned is that iCloud works (by itself), but it is very easy to make
 a mistake - hence the apps that behave so badly with iCloud.

 Anyway, the external can:

 - give back your app name, team prefix, bundle identifier
 - put files in your app's container
 - manipulate and query the apps container (evict files, force
 download, modification dates, list files...)
 - put files in a shared container across apps - so you have shared
 data across iOS apps [ yes ... that's right!!!]
 - manipulate and query the shared container
 - put files in a container or shared container up for download for two
 weeks [ yes, you read this correctly as well]

 I can do two things:
 1) continue with my main project as I will eventually
 2) spend even more time and put the external up for sale for $49

 As this really has been a LOT of work I don't want to put something up
 for sale if nobody is interested, so consider this a poll. Personally,
 I find the shared storage across apps and 

Re: iCloud external :-)

2012-08-03 Thread Maarten Koopmans
Hi Willem,

Files from iCLoud are downloaded automagically. You just list the
contents of the ubiquitous container, look at the dates or names and
open whatever you want. That's the beauty of it: you just put the data
there, and it automatically updates all devices.

Of course, beware of versioning conflicts. But this is where Livecode
(with its excellent text processing) excels.

--Maarten

On Fri, Aug 3, 2012 at 3:31 PM, William de Smet williamdes...@gmail.com wrote:
 Hi Maarten,

 This seem pretty straight forward.
 I reckon you can get a file from iCloud as well?

 groeten,

 William


 2012/8/3 Maarten Koopmans maarten.koopm...@gmail.com:
 Hi Willem,

 Screenshots with iCLoud are next-to-near impossible, but here's some
 code from handlers in my demo/test stack.

 First, getting some basic information:

 on mouseUp
answer Trying to fetch basic app/team info, and so some setup
put setupUbiquityDocumentsFolder() into tSetup
answer Setting up ubiquity document url succeeded:   tSetup
put getApplicationIdentifier() into tAppID
answer App ID:   tAppID
put getAppName() into tAppName
answer App Name:   tAppName
put getTeamPrefix() into tTeamPrefix
answer Team prefix:   tTeamPrefix
answer Containerized name:   containerize(my.com.SharedStorage)
 end mouseUp

 Next, publishing a file publicly via iCloud:

 on mouseUp
answer In as public file handler
set the defaultFolder to specialFolderPath(documents)
answer default folder set
put HelloCloudPublic.txt into tLocalFilePath
open file tLocalFilePath for write
write Hello iCloud! to file tLocalFilePath
close file tLocalFilePath
answer tLocalFilePath
--Note that here we effectively use the FULL path... Different from
 setUbiquitous
put asPublicCloudFile(tLocalFilePath) into tSharedURL
answer Your public iCloud URL for the next two weeks is:   tSharedURL
revMail y...@who.net,,miCloud link,tSharedURL
 end mouseUp

 And the killer - publishing a file in a shared storage container
 (shared with other apps):

 on mouseUp
answer In make ubiquitous (1) handler
set the defaultFolder to specialFolderPath(documents)
get setupUbiquityDocumentsFolder()
answer default folder set, setup succeeded =   it
put HelloCloudUbiqOrLocal.txt into tLocalFilePath
answer Local file url:   getLocalFileURL(tLocalFilePath)
open file tLocalFilePath for write
write Hello iCloud! to file tLocalFilePath
close file tLocalFilePath
--This is needed because our routines magically create the correct file 
 path.
--Whereas LC on opening the file puts the full path into 
 tLocalFilePath
put HelloCloudUbiqOrLocal.txt into tLocalFilePath
--Check, check, double check
answer tLocalFilePath
--test and show that the file is local
answer File is local:isLocal(tLocalFilePath)
-- get its file url
put getFileURL(tLocalFilepath) into tFileURL
answer Local file URL =   tFileURL
--make the file ubiquitous, 1= true, rest = false
get setUbiquitousForFile(1,tLocalFilePath)
answer Set ubiquitous, done
--test to see if it is local or ubiquitous (really, the result
 coming back from iCloud in setUbiquitous is less trustworthy)--test to
 see if it is local
answer File is local:isLocal(tLocalFilePath)
--test to see if it is ubiquitous
answer File is ubquitous:isUbiquitousDocument(tLocalFilePath)
--get the file url, again (should be ubiquitous now...)
put getFIleURL(tLocalFilepath) into tFileURL
answer Now... Ubiquitous file URL =   tFileURL
--get the modification date
answer modification data =   getModificationDateForURL(tFileURL)
--list the documents container contents
answer getContentsOfUbiquityDocumentsFolder()
--delete the ubiquitous document instance
get setUbiquitousForFileInContainer(0,tLocalFilePath,tContainer)
answer Remove ubiquitous, done
--at this point the file is only local...
 end mouseUp

 Doe this wet your appetite(s)?

 Cheers,

 Maarten

 On Fri, Aug 3, 2012 at 2:31 PM, William de Smet williamdes...@gmail.com 
 wrote:
 Hi Maarten,

 I am very much interested in this Cloud external.
 Do you have any information and screenshots online already?

 groeten,

 William


 2012/8/3 Maarten Koopmans maarten.koopm...@gmail.com:
 Folks,

 I have spent a lot of time on it over the last two months, but I
 finally have an iOS iCloud external working. One of the things I've
 learned is that iCloud works (by itself), but it is very easy to make
 a mistake - hence the apps that behave so badly with iCloud.

 Anyway, the external can:

 - give back your app name, team prefix, bundle identifier
 - put files in your app's container
 - manipulate and query the apps container (evict files, force
 download, modification dates, list files...)
 - put files in a shared container across apps - so you have shared
 data across iOS apps [ yes ... that's right!!!]
 - manipulate and 

Re: physical books...

2012-08-03 Thread Matthias Rebbe
Hi,

congrats on your book.

i purchased the bundle (ebook and print version) from Packt on the 26th after 
your announcement here on the list. The printed version arrived here (germany) 
today.
I did not expect it that early.

Regards,

Matthias
Am 03.08.2012 um 01:50 schrieb Colin Holgate co...@verizon.net:

 The publisher sent three copies of my book to me. I wasn't expecting them 
 this soon, so that was a pleasant surprise when I signed for two packages (I 
 already knew about another package). I showed the books to the security guard 
 and some neighbors!
 ___
 use-livecode mailing list
 use-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: iCloud external :-)

2012-08-03 Thread Matthias Rebbe
Maarten,

i will definitely buy it.

Regards,

Matthias

Am 03.08.2012 um 13:53 schrieb Maarten Koopmans maarten.koopm...@gmail.com:

 Folks,
 
 I have spent a lot of time on it over the last two months, but I
 finally have an iOS iCloud external working. One of the things I've
 learned is that iCloud works (by itself), but it is very easy to make
 a mistake - hence the apps that behave so badly with iCloud.
 
 Anyway, the external can:
 
 - give back your app name, team prefix, bundle identifier
 - put files in your app's container
 - manipulate and query the apps container (evict files, force
 download, modification dates, list files...)
 - put files in a shared container across apps - so you have shared
 data across iOS apps [ yes ... that's right!!!]
 - manipulate and query the shared container
 - put files in a container or shared container up for download for two
 weeks [ yes, you read this correctly as well]
 
 I can do two things:
 1) continue with my main project as I will eventually
 2) spend even more time and put the external up for sale for $49
 
 As this really has been a LOT of work I don't want to put something up
 for sale if nobody is interested, so consider this a poll. Personally,
 I find the shared storage across apps and public data publishing is
 pretty awesome.
 
 Let me know if you're interested - otherwise I'll simply enjoy my weekend ;-)
 
 --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


Re: physical books...

2012-08-03 Thread Colin Holgate
You'll be amused to hear that the acquisition editor at Packt hasn't received 
her paper versions yet! 


On Aug 3, 2012, at 10:35 AM, Matthias Rebbe matthias_livecode_150...@m-r-d.de 
wrote:

 i purchased the bundle (ebook and print version) from Packt on the 26th 
 after your announcement here on the list. The printed version arrived here 
 (germany) today.
 I did not expect it that early.

___
use-livecode mailing list
use-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: physical books...

2012-08-03 Thread Alejandro Tejada
Well, plant a tree, have a child, and write a book. :-D



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/physical-books-tp4653303p4653328.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


Re: physical books...

2012-08-03 Thread Matthias Rebbe
Oh, i thought it was: Plant a tree, have a child and create at least one 
LiveCode app. ;)


Am 03.08.2012 um 16:57 schrieb Alejandro Tejada capellan2...@gmail.com:

 Well, plant a tree, have a child, and write a book. :-D
 
 
 
 --
 View this message in context: 
 http://runtime-revolution.278305.n4.nabble.com/physical-books-tp4653303p4653328.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: ANN: GLX2 3.0.10

2012-08-03 Thread Bob Sneidar
No no problem, it's just that it's fairly typical to only be able to undo back 
to the last save. I can see myself in a fit of undo's after making some 
horrible coding error that made everything go wrong, hitting undo lots of 
times. I guess I will have to avoid that. :-)

Bob


On Aug 2, 2012, at 6:00 PM, Mark Wieder wrote:

 Bob-
 
 Thursday, August 2, 2012, 10:40:51 AM, you wrote:
 
 Mark, is the undo array reset when saving the script, or saving the stack, 
 or neither?
 
 Ah, neither. You can undo back past saves. Hmmm... is that a problem?
 
 -- 
 -Mark Wieder
 mwie...@ahsoftware.net
 
 
 ___
 use-livecode mailing list
 use-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


The RunRev store

2012-08-03 Thread Peter Haworth
I have been trying for several months to get a couple of my apps accepted
to the RunRev store.  I got an initial response about the process and TC's
but have not heard anything since despite sending off the apps and sending
several emails to inquire about status, acceptance, rejection.

Is this normal and if so, I wonder what the point of having a store is?

Pete
lcSQL Software http://www.lcsql.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: The RunRev store

2012-08-03 Thread Bob Sneidar
Have you contacted Heather? She may be able to help. 

Bob


On Aug 3, 2012, at 10:50 AM, Peter Haworth wrote:

 I have been trying for several months to get a couple of my apps accepted
 to the RunRev store.  I got an initial response about the process and TC's
 but have not heard anything since despite sending off the apps and sending
 several emails to inquire about status, acceptance, rejection.
 
 Is this normal and if so, I wonder what the point of having a store is?
 
 Pete
 lcSQL Software http://www.lcsql.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: The RunRev store

2012-08-03 Thread Peter Haworth
Heather has been my contact right from the start.
Pete
lcSQL Software http://www.lcsql.com



On Fri, Aug 3, 2012 at 11:03 AM, Bob Sneidar b...@twft.com wrote:

 Have you contacted Heather? She may be able to help.

 Bob


 On Aug 3, 2012, at 10:50 AM, Peter Haworth wrote:

  I have been trying for several months to get a couple of my apps accepted
  to the RunRev store.  I got an initial response about the process and
 TC's
  but have not heard anything since despite sending off the apps and
 sending
  several emails to inquire about status, acceptance, rejection.
 
  Is this normal and if so, I wonder what the point of having a store is?
 
  Pete
  lcSQL Software http://www.lcsql.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: ANN: GLX2 3.0.10

2012-08-03 Thread Ian Wood
A stupid question, not having used GLX since LiveCode was Rev Studio/Enterprise 
etc.

How do I install it? There appear to be no instructions in the download at all, 
other than some mentions of a plugin folder in the GLX2 Macros.txt file.

:-(

Ian
___
use-livecode mailing list
use-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: LC Android FC on Samsung s 3 sph-l 710. Android version 4.0.4

2012-08-03 Thread Ralph DiMola
The problem was that the user has predictive typing on. This was mentioned
on the list a one point and I forgot. I am now implementing the native
controls and see if this will eliminate the restriction. The field object is
MUCH nicer but if using the native input control fixes the problem I will
live with it.

Thanks all.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


___
use-livecode mailing list
use-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: GLX2 3.0.10

2012-08-03 Thread Mark Wieder
Ian Wood revlist@... writes:

 
 A stupid question, not having used GLX since LiveCode was Rev
Studio/Enterprise etc.
 
 How do I install it? There appear to be no instructions in the download at
all, other than some mentions of a
 plugin folder in the GLX2 Macros.txt file.

There's a wiki at:
https://bitbucket.org/mwieder/glx2/wiki/Home

which points to documentation at:
http://glx2.ahsoftware.net/

the first link there is installation instructions.
(http://mwieder.on-rev.com/WordPress/?incsub_wiki=glx2-installation)

But thanks for the prod... I'll add the installation text to the next release.

-- 
 Mark Wieder
 mwie...@ahsoftware.net


___
use-livecode mailing list
use-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: GLX2 3.0.10

2012-08-03 Thread Ian Wood

On 3 Aug 2012, at 20:19, Mark Wieder wrote:

 There's a wiki at:
 https://bitbucket.org/mwieder/glx2/wiki/Home
 
 which points to documentation at:
 http://glx2.ahsoftware.net/
 
 the first link there is installation instructions.
 (http://mwieder.on-rev.com/WordPress/?incsub_wiki=glx2-installation)
 
 But thanks for the prod... I'll add the installation text to the next release.

Ah, I missed the wiki tab when looking at that page which meant i never saw the 
links. Google just kept giving me forum and list links. :-(

Thanks again,

Ian


___
use-livecode mailing list
use-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: The RunRev store

2012-08-03 Thread Monte Goulding
Hi Peter

Hang in there. Heather has a super high work load and support must take 
priority to marketplace. I got frustrated a bit with this too but eventually it 
was all sorted out. Don't forget that those three months would have included 
the conference.

Cheers

--
M E R Goulding
Software development services

mergExt - There's an external for that!

On 04/08/2012, at 4:12 AM, Peter Haworth p...@lcsql.com wrote:

 Heather has been my contact right from the start.
 Pete
 lcSQL Software http://www.lcsql.com
 
 
 
 On Fri, Aug 3, 2012 at 11:03 AM, Bob Sneidar b...@twft.com wrote:
 
 Have you contacted Heather? She may be able to help.
 
 Bob
 
 
 On Aug 3, 2012, at 10:50 AM, Peter Haworth wrote:
 
 I have been trying for several months to get a couple of my apps accepted
 to the RunRev store.  I got an initial response about the process and
 TC's
 but have not heard anything since despite sending off the apps and
 sending
 several emails to inquire about status, acceptance, rejection.
 
 Is this normal and if so, I wonder what the point of having a store is?
 
 Pete
 lcSQL Software http://www.lcsql.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


Need beta testers for new database library

2012-08-03 Thread Andre Garzia
Hello Folks,

I need some beta testers for the new database library that I am
releasing. I just want some more opinions before releasing it. Anyone
wants to join? Send me a private email at an...@andregarzia.com

It is the library that I've shown during the last conference.

=D
Andre

-- 
http://www.andregarzia.com -- All We Do Is Code.
http://fon.nu -- minimalist url shortening service.

___
use-livecode mailing list
use-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: UITextField - Text Appears Shifted?

2012-08-03 Thread Terry Judd

On 03/08/2012, at 08:41 PM, Scott Rossi wrote:

 Anyone know why the text of a UITextField (input) appears shifted up?  Is
 there any way to shift it down?
 
 There's very little on the card -- just a group and a graphic to define the
 region in which to display the text.
 
 http://www.tactilemedia.com/download/uitextfield.png
 
 The clearbutton for the control is displayed, and this appears in the proper
 position, but for some reason the text is appearing shifted upward about 4
 pixels.  It appears the same in both the simulator and on a device.
 
 Any suggestions for a fix?

Hi Scott - I seem to recall struggling with this some time ago when I had to 
implement user and password fields using the native controls. What I seem to 
have done is create an appropriately sized background to sit behind the control 
and then used a LC field to position/align the entry text correctly - with the 
textHeight of the LC field set to the same value as the fontSize. I then create 
the native control and set its rect to the rect of the LC field and its 
fontSize to the LC field's fontSize. This seems to work for me.

Terry...

 
 Thanks  Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 

Dr Terry Judd
Senior Lecturer in Medical Education
Medical Eduction Unit
Faculty of Medicine, Dentistry  Health Sciences
The University of Melbourne





___
use-livecode mailing list
use-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: UITextField - Text Appears Shifted?

2012-08-03 Thread Scott Rossi
Thanks for the suggestion Terry (and everyone else).

I've since learned that the field portion of the input control always stays
aligned to the top of its region, regardless of the control's height, while
the clearbutton stays aligned to the vertical center of its height.  I think
this means the input control needs to be carefully sized to position its
text and icon/s correctly (I assumed the text and icon would always appear
vertically centered, but obviously this is isn't the case).

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design



Recently, Terry Judd wrote:

 
 On 03/08/2012, at 08:41 PM, Scott Rossi wrote:
 
 Anyone know why the text of a UITextField (input) appears shifted up?  Is
 there any way to shift it down?
 
 There's very little on the card -- just a group and a graphic to define the
 region in which to display the text.
 
 http://www.tactilemedia.com/download/uitextfield.png
 
 The clearbutton for the control is displayed, and this appears in the proper
 position, but for some reason the text is appearing shifted upward about 4
 pixels.  It appears the same in both the simulator and on a device.
 
 Any suggestions for a fix?
 
 Hi Scott - I seem to recall struggling with this some time ago when I had to
 implement user and password fields using the native controls. What I seem to
 have done is create an appropriately sized background to sit behind the
 control and then used a LC field to position/align the entry text correctly -
 with the textHeight of the LC field set to the same value as the fontSize. I
 then create the native control and set its rect to the rect of the LC field
 and its fontSize to the LC field's fontSize. This seems to work for me.
 
 Terry...
 
 
 Thanks  Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 Dr Terry Judd
 Senior Lecturer in Medical Education
 Medical Eduction Unit
 Faculty of Medicine, Dentistry  Health Sciences
 The University of Melbourne
 
 
 
 
 
 ___
 use-livecode mailing list
 use-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: LC Android FC on Samsung s 3 sph-l 710. Android version 4.0.4

2012-08-03 Thread Ken Corey
FWIW, the same behaviour I saw before. (Samsung Galaxy Tab 2 10, 4.0.4 
stock, with the default Samsung keyboard.)


When predictive text is on, no text entered shows in the text entry 
widget.  Turn off predictive text, and you're off and running.


Just as a data point, I installed SwiftKey 3 and tried that.  No 
problems at all.


I had logcat going the whole time, and again, didn't see anything untoward.

I went through selecting one of the rows returned, and the map was 
pulled up, as well as trying to add the phone number to my contact list 
(since it couldn't be called on the tab).


Not an in-depth testing session, but it certainly would have thrown up a 
problem if it were going to.


Just for grins, I tried it on my Nexus 7 running Jelly bean.  Sure 
enough, it crashes upon launch, so I can't tell if the input would hvae 
worked there.


Best of luck.

-Ken

On 02/08/2012 23:55, Ralph DiMola wrote:

Last message has a bad link again. This time I tested it. Sorry folks.

Oops. UK is in.

Username:u...@rr.com
Password:Dfdf77

Also @ this link
http://evergreeninfo.on-rev.com/JBT/x0Ak_ayLA_knQL/JBT_Red_Book_248.apk



Thanks.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


-Original Message-
From: use-livecode-boun...@lists.runrev.com
[mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Ken Corey
Sent: Thursday, August 02, 2012 5:18 PM
To: use-livecode@lists.runrev.com
Subject: Re: LC Android FC on Samsung s 3 sph-l 710. Android version 4.0.4

Uh...I don't know.  The tablet is certainly a touch screen.

Let's see...I don't see any limitations in the 'Standalone Application
Settings'.  I opened the AndroidManifest.xml, and it supp0orts large
screens.

When you uploaded the app to the market, which countries did you list?

I'm in the UK.

I can't think of anything else that would limit it.

Anyone else have any idea?

If you wanted to email me a standalone, I could have a run real quick and
let you know what happens.

-Ken

On 02/08/2012 21:46, Ralph DiMola wrote:

What do I need to set in standalone apps setting so your tablet is
available. The only think I have required is the touch screen. Did you
search for just JBT?


___
use-livecode mailing list
use-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: LC Android FC on Samsung s 3 sph-l 710. Android version 4.0.4

2012-08-03 Thread Ralph DiMola
Thanks Ken!

Did you try to rotate the display? Just interested how my resizing code is
holding up. Note: The details card has a different layout.

Thanks again!!

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


-Original Message-
From: use-livecode-boun...@lists.runrev.com
[mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Ken Corey
Sent: Friday, August 03, 2012 6:28 PM
To: use-livecode@lists.runrev.com
Subject: Re: LC Android FC on Samsung s 3 sph-l 710. Android version 4.0.4

FWIW, the same behaviour I saw before. (Samsung Galaxy Tab 2 10, 4.0.4
stock, with the default Samsung keyboard.)

When predictive text is on, no text entered shows in the text entry widget.
Turn off predictive text, and you're off and running.

Just as a data point, I installed SwiftKey 3 and tried that.  No problems at
all.

I had logcat going the whole time, and again, didn't see anything untoward.

I went through selecting one of the rows returned, and the map was pulled
up, as well as trying to add the phone number to my contact list (since it
couldn't be called on the tab).

Not an in-depth testing session, but it certainly would have thrown up a
problem if it were going to.

Just for grins, I tried it on my Nexus 7 running Jelly bean.  Sure enough,
it crashes upon launch, so I can't tell if the input would hvae worked
there.

Best of luck.

-Ken

On 02/08/2012 23:55, Ralph DiMola wrote:
 Last message has a bad link again. This time I tested it. Sorry folks.

 Oops. UK is in.

 Username:u...@rr.com
 Password:Dfdf77

 Also @ this link
 http://evergreeninfo.on-rev.com/JBT/x0Ak_ayLA_knQL/JBT_Red_Book_248.ap
 k



 Thanks.

 Ralph DiMola
 IT Director
 Evergreen Information Services
 rdim...@evergreeninfo.net


 -Original Message-
 From: use-livecode-boun...@lists.runrev.com
 [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Ken Corey
 Sent: Thursday, August 02, 2012 5:18 PM
 To: use-livecode@lists.runrev.com
 Subject: Re: LC Android FC on Samsung s 3 sph-l 710. Android version 
 4.0.4

 Uh...I don't know.  The tablet is certainly a touch screen.

 Let's see...I don't see any limitations in the 'Standalone Application 
 Settings'.  I opened the AndroidManifest.xml, and it supp0orts large 
 screens.

 When you uploaded the app to the market, which countries did you list?

 I'm in the UK.

 I can't think of anything else that would limit it.

 Anyone else have any idea?

 If you wanted to email me a standalone, I could have a run real quick 
 and let you know what happens.

 -Ken

 On 02/08/2012 21:46, Ralph DiMola wrote:
 What do I need to set in standalone apps setting so your tablet is 
 available. The only think I have required is the touch screen. Did 
 you search for just JBT?

 ___
 use-livecode mailing list
 use-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: UITextField - Text Appears Shifted?

2012-08-03 Thread Monte Goulding
Hi Scott

Padding is a non-standard property of UITextField. RunRev could use a category 
to give us padding if they wanted. See 
http://stackoverflow.com/questions/3727068/set-padding-for-uitextfield-with-uitextborderstylenone

I don't know of its possible for me to add a category to a class the engine 
uses and it work. It's worth an attempt but I think unless the external is 
linked in a certain way it would fail. It would be nice to be able to add a 
global UITextField padding command ;-)

Cheers

--
M E R Goulding
Software development services

mergExt - There's an external for that!

On 04/08/2012, at 8:17 AM, Scott Rossi sc...@tactilemedia.com wrote:

 Thanks for the suggestion Terry (and everyone else).
 
 I've since learned that the field portion of the input control always stays
 aligned to the top of its region, regardless of the control's height, while
 the clearbutton stays aligned to the vertical center of its height.  I think
 this means the input control needs to be carefully sized to position its
 text and icon/s correctly (I assumed the text and icon would always appear
 vertically centered, but obviously this is isn't the case).
 
 Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 
 
 Recently, Terry Judd wrote:
 
 
 On 03/08/2012, at 08:41 PM, Scott Rossi wrote:
 
 Anyone know why the text of a UITextField (input) appears shifted up?  Is
 there any way to shift it down?
 
 There's very little on the card -- just a group and a graphic to define the
 region in which to display the text.
 
 http://www.tactilemedia.com/download/uitextfield.png
 
 The clearbutton for the control is displayed, and this appears in the proper
 position, but for some reason the text is appearing shifted upward about 4
 pixels.  It appears the same in both the simulator and on a device.
 
 Any suggestions for a fix?
 
 Hi Scott - I seem to recall struggling with this some time ago when I had to
 implement user and password fields using the native controls. What I seem to
 have done is create an appropriately sized background to sit behind the
 control and then used a LC field to position/align the entry text correctly -
 with the textHeight of the LC field set to the same value as the fontSize. I
 then create the native control and set its rect to the rect of the LC field
 and its fontSize to the LC field's fontSize. This seems to work for me.
 
 Terry...
 
 
 Thanks  Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 Dr Terry Judd
 Senior Lecturer in Medical Education
 Medical Eduction Unit
 Faculty of Medicine, Dentistry  Health Sciences
 The University of Melbourne
 
 
 
 
 
 ___
 use-livecode mailing list
 use-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: UITextField - Text Appears Shifted?

2012-08-03 Thread Monte Goulding
Having a play with this and I can't actually duplicate what your getting. Could 
you post a link to your stack.

On 04/08/2012, at 8:03 AM, Terry Judd wrote:

 
 On 03/08/2012, at 08:41 PM, Scott Rossi wrote:
 
 Anyone know why the text of a UITextField (input) appears shifted up?  Is
 there any way to shift it down?
 
 There's very little on the card -- just a group and a graphic to define the
 region in which to display the text.
 
 http://www.tactilemedia.com/download/uitextfield.png
 
 The clearbutton for the control is displayed, and this appears in the proper
 position, but for some reason the text is appearing shifted upward about 4
 pixels.  It appears the same in both the simulator and on a device.
 
 Any suggestions for a fix?
 
 Hi Scott - I seem to recall struggling with this some time ago when I had to 
 implement user and password fields using the native controls. What I seem to 
 have done is create an appropriately sized background to sit behind the 
 control and then used a LC field to position/align the entry text correctly - 
 with the textHeight of the LC field set to the same value as the fontSize. I 
 then create the native control and set its rect to the rect of the LC field 
 and its fontSize to the LC field's fontSize. This seems to work for me.
 
 Terry...
 
 
 Thanks  Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 Dr Terry Judd
 Senior Lecturer in Medical Education
 Medical Eduction Unit
 Faculty of Medicine, Dentistry  Health Sciences
 The University of Melbourne
 
 
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode

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


Re: UITextField - Text Appears Shifted?

2012-08-03 Thread Scott Rossi
Hi Monte:

My issue is already solved, but all you should have to do is size a native
input field to something like 100 pixels tall, with its clear button
enabled.  Once you start typing, you should see the text appear at the top
of the field, while the clear button is drawn in the vertical center of the
field.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design



Recently, Monte Goulding wrote:

 Having a play with this and I can't actually duplicate what your getting.
 Could you post a link to your stack.
 
 On 04/08/2012, at 8:03 AM, Terry Judd wrote:
 
 
 On 03/08/2012, at 08:41 PM, Scott Rossi wrote:
 
 Anyone know why the text of a UITextField (input) appears shifted up?  Is
 there any way to shift it down?
 
 There's very little on the card -- just a group and a graphic to define the
 region in which to display the text.
 
 http://www.tactilemedia.com/download/uitextfield.png
 
 The clearbutton for the control is displayed, and this appears in the proper
 position, but for some reason the text is appearing shifted upward about 4
 pixels.  It appears the same in both the simulator and on a device.
 
 Any suggestions for a fix?
 
 Hi Scott - I seem to recall struggling with this some time ago when I had to
 implement user and password fields using the native controls. What I seem to
 have done is create an appropriately sized background to sit behind the
 control and then used a LC field to position/align the entry text correctly -
 with the textHeight of the LC field set to the same value as the fontSize. I
 then create the native control and set its rect to the rect of the LC field
 and its fontSize to the LC field's fontSize. This seems to work for me.
 
 Terry...
 
 
 Thanks  Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 Dr Terry Judd
 Senior Lecturer in Medical Education
 Medical Eduction Unit
 Faculty of Medicine, Dentistry  Health Sciences
 The University of Melbourne
 
 
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 --
 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: ANN: GLX2 3.0.10

2012-08-03 Thread Mark Wieder
Bob-

Friday, August 3, 2012, 8:38:03 AM, you wrote:

 No no problem, it's just that it's fairly typical to only be able
 to undo back to the last save. I can see myself in a fit of undo's
 after making some horrible coding error that made everything go
 wrong, hitting undo lots of times. I guess I will have to avoid
 that. :-)

OK. I'll put that on my to-do list. I was thinking that keeping the
undo list back as far as possible was a benefit, but I can't come up
with much of a use case where I'd want to keep it past the last save.

-- 
-Mark Wieder
 mwie...@ahsoftware.net


___
use-livecode mailing list
use-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: GLX2 3.0.10

2012-08-03 Thread Warren Samples

On 08/03/2012 07:55 PM, Mark Wieder wrote:

Bob-

Friday, August 3, 2012, 8:38:03 AM, you wrote:


No no problem, it's just that it's fairly typical to only be able
to undo back to the last save. I can see myself in a fit of undo's
after making some horrible coding error that made everything go
wrong, hitting undo lots of times. I guess I will have to avoid
that. :-)


OK. I'll put that on my to-do list. I was thinking that keeping the
undo list back as far as possible was a benefit, but I can't come up
with much of a use case where I'd want to keep it past the last save.




Would this be affected by the GLX autosave preference? Save Every x 
compiles If so, might this not limit the value of undo? How convenient 
would it be to allow the user to set the number of undos, which would be 
independent of any saves?


Warren

___
use-livecode mailing list
use-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: UITextField - Text Appears Shifted?

2012-08-03 Thread Terry Judd

On 04/08/2012, at 10:01 AM, Scott Rossi wrote:
 
 My issue is already solved, but all you should have to do is size a native
 input field to something like 100 pixels tall, with its clear button
 enabled.  Once you start typing, you should see the text appear at the top
 of the field, while the clear button is drawn in the vertical center of the
 field.

I wasn't even aware that there was a clear button, but now I see it I have to 
agree that is pretty annoying that its vertical alignment differs from that of 
the text. Seems like a bug to me.

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


Re: UITextField - Text Appears Shifted?

2012-08-03 Thread Monte Goulding
Tried a variety of sizes and it seems to be padding nicer than your screenshot. 
Not centered but at least not right up in the corner. One of us may be setting 
some property that the other isn't.

--
M E R Goulding
Software development services

mergExt - There's an external for that!

On 04/08/2012, at 11:45 AM, Terry Judd terry.j...@unimelb.edu.au wrote:

 
 On 04/08/2012, at 10:01 AM, Scott Rossi wrote:
 
 My issue is already solved, but all you should have to do is size a native
 input field to something like 100 pixels tall, with its clear button
 enabled.  Once you start typing, you should see the text appear at the top
 of the field, while the clear button is drawn in the vertical center of the
 field.
 
 I wasn't even aware that there was a clear button, but now I see it I have to 
 agree that is pretty annoying that its vertical alignment differs from that 
 of the text. Seems like a bug to me.
 
 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


Re: UITextField - Text Appears Shifted?

2012-08-03 Thread Scott Rossi
I didn't see any padding option in the release notes (believe me, I looked) is 
there one?.  The only thing I was wondering was if this one of those if you 
don't set ALL the properties, it won't work right kind of situations, like 
some of the other native controls.

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design

On Aug 3, 2012, at 6:52 PM, Monte Goulding mo...@sweattechnologies.com wrote:

 Tried a variety of sizes and it seems to be padding nicer than your 
 screenshot. Not centered but at least not right up in the corner. One of us 
 may be setting some property that the other isn't.
 
 --
 M E R Goulding
 Software development services
 
 mergExt - There's an external for that!
 
 On 04/08/2012, at 11:45 AM, Terry Judd terry.j...@unimelb.edu.au wrote:
 
 
 On 04/08/2012, at 10:01 AM, Scott Rossi wrote:
 
 My issue is already solved, but all you should have to do is size a native
 input field to something like 100 pixels tall, with its clear button
 enabled.  Once you start typing, you should see the text appear at the top
 of the field, while the clear button is drawn in the vertical center of the
 field.
 
 I wasn't even aware that there was a clear button, but now I see it I have 
 to agree that is pretty annoying that its vertical alignment differs from 
 that of the text. Seems like a bug to me.
 
 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


scroll ball or wheel script

2012-08-03 Thread Kathy Jaqua


I need a script that adds a vScrollbar script that adds a scroll 
bar after the field is full.

I also need a scroll ball or wheel (3ed button) script that allows for 
scrolling 
up and down in that field.
I am on a Mac but it would be needed for windows.

Thank you, Thank you
___
use-livecode mailing list
use-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: UITextField - Text Appears Shifted?

2012-08-03 Thread Monte Goulding
I'm not setting them all. That's why I wanted to check your code. There's no 
padding property but what I see is definitely more padded than your capture.

--
M E R Goulding
Software development services

mergExt - There's an external for that!

On 04/08/2012, at 12:09 PM, Scott Rossi sc...@tactilemedia.com wrote:

 I didn't see any padding option in the release notes (believe me, I looked) 
 is there one?.  The only thing I was wondering was if this one of those if 
 you don't set ALL the properties, it won't work right kind of situations, 
 like some of the other native controls.
 
 Regards,
 
 Scott Rossi
 Creative Director
 Tactile Media, UX Design
 
 On Aug 3, 2012, at 6:52 PM, Monte Goulding mo...@sweattechnologies.com 
 wrote:
 
 Tried a variety of sizes and it seems to be padding nicer than your 
 screenshot. Not centered but at least not right up in the corner. One of us 
 may be setting some property that the other isn't.
 
 --
 M E R Goulding
 Software development services
 
 mergExt - There's an external for that!
 
 On 04/08/2012, at 11:45 AM, Terry Judd terry.j...@unimelb.edu.au wrote:
 
 
 On 04/08/2012, at 10:01 AM, Scott Rossi wrote:
 
 My issue is already solved, but all you should have to do is size a native
 input field to something like 100 pixels tall, with its clear button
 enabled.  Once you start typing, you should see the text appear at the top
 of the field, while the clear button is drawn in the vertical center of the
 field.
 
 I wasn't even aware that there was a clear button, but now I see it I have 
 to agree that is pretty annoying that its vertical alignment differs from 
 that of the text. Seems like a bug to me.
 
 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

___
use-livecode mailing list
use-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: scroll ball or wheel script

2012-08-03 Thread Scott Morrow
On Aug 3, 2012, at 7:58 PM, Kathy Jaqua wrote:
 I need a script that adds a vScrollbar script that adds a scroll 
 bar after the field is full.
 
 I also need a scroll ball or wheel (3ed button) script that allows for 
 scrolling 
 up and down in that field.
 I am on a Mac but it would be needed for windows.

Maybe this will get you started:

both of these scripts use me so they need to be placed inside the field script

  -- show or hide a  vert scrollbar
-- this could be triggered from several events
-- as an example, it is placed in the rawKeyDown handler
command ShowHideScrollBar
   if (the formattedHeight of me)(the height of me) then
  set the vScrollBar of me to true
   else
  set the vScrollBar of me to false
   end if
end ShowHideScrollBar


   -- use the mouseWheel
on rawKeyDown theKeyNumber
   ShowHideScrollBar

   if theKeyNumber is 65308 then put 15 into tScrollInc -- increaseScroll -- 
mouse wheel down
   if theKeyNumber is 65309 then put -15 into tScrollInc -- decreaseScroll -- 
mouse wheel up
   if tScrollInc is empty then pass rawKeyDown -- don't forget this!
   
   set the vScroll of me to (the vScroll of me + tScrollInc)
   
end rawKeyDown


--
Scott Morrow

Elementary Software
(Now with 20% less chalk dust!)
web   http://elementarysoftware.com/
email sc...@elementarysoftware.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