RE: odd and even numbers

2013-08-06 Thread Paul D. DeRocco
 From: Mark Wieder
 
 Hmmm... for now, just ignore my benchmarks. I'm getting quite
 different results with LC 4.6.4 and LC 6.1rc1, and I think there's
 some garbage collection going on in the background. Plus I found half
 a dozen LC update processes running.
 
 I'm currently seeing fairly consistent results with all the different
 options, even with the mod and trunc functions thrown in the mix.

I hope the engine is smart enough that repeat 1 times doesn't convert
the count back and forth between a string and a number ten thousand times.

-- 

Ciao,   Paul D. DeRocco
Paulmailto:pdero...@ix.netcom.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: spot my mistake?

2013-08-06 Thread Monte Goulding

On 06/08/2013, at 3:55 PM, Jim sims wrote:

 *on* mouseUp
 
   *put* specialFolderPath(documents) into imageFolder
 
   *put* http://ezpzapps.com/hagar/a1010_1.jpg; into tImageToGet
 
   *put* binfile: before tImageToGet
^ here's one... getting binfile:http:?
 
   *put* tImageToGet into fld toget
 
   *put* specialFolderPath(documents) into tDoc
 
   *put* file:tDoc/a1010_1.jpg into tFileLoc
^ here's another.. should be binfile:
 
   *put*  url tImageToGet into url tFileLoc
 
   *set* the defaultFolder to imageFolder
 
   *put* the Files into tFls
 
   *answer* the files arecr tFLs *-- THIS GIVES a1010_1.jpg*

I suspect it's 0 bytes.
 
   *put* imageFolder  /  a1010_1.jpg into tFLoad
 
   *set* the filename of image testerz to tFLoad
 
 *end*  mouseUp

Cheers

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


Alternative cursor shapes

2013-08-06 Thread Paul D. DeRocco
I created some alternative cursor shapes as .png files, with transparency,
and added them to my main stack. They work fine on my Win7 machines, both in
the LC environment or when exported as standalones. I tried them on an old
WinXP laptop, and they instantly terminate the program. The LC environment
terminates as soon as I load the .rev file. Has anyone had problems with
embedding .png files?

-- 

Ciao,   Paul D. DeRocco
Paulmailto:pdero...@ix.netcom.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: spot my mistake?

2013-08-06 Thread Jim sims
Gawd. Back to school for me.
 Stupido. Idiota.

Thanks a bunch Monte!
Of course your changes work perfectly.

sims

On Tuesday, August 6, 2013, Monte Goulding wrote:


 On 06/08/2013, at 3:55 PM, Jim sims wrote:

  *on* mouseUp
 
*put* specialFolderPath(documents) into imageFolder
 
*put* http://ezpzapps.com/hagar/a1010_1.jpg; into tImageToGet
 
*put* binfile: before tImageToGet
 ^ here's one... getting binfile:http:?
 
*put* tImageToGet into fld toget
 
*put* specialFolderPath(documents) into tDoc
 
*put* file:tDoc/a1010_1.jpg into tFileLoc
 ^ here's another.. should be binfile:
 
*put*  url tImageToGet into url tFileLoc
 
*set* the defaultFolder to imageFolder
 
*put* the Files into tFls
 
*answer* the files arecr tFLs *-- THIS GIVES a1010_1.jpg*

 I suspect it's 0 bytes.
 
*put* imageFolder  /  a1010_1.jpg into tFLoad
 
*set* the filename of image testerz to tFLoad
 
  *end*  mouseUp

 Cheers

 --
 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 javascript:;
 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: odd and even numbers

2013-08-06 Thread Mark Wieder
Paul-

Monday, August 5, 2013, 10:59:27 PM, you wrote:

 I hope the engine is smart enough that repeat 1 times doesn't convert
 the count back and forth between a string and a number ten thousand times.

repeat with the number of bottles of beer on the wall
  take one down
  convert it to a number
  subtract 1 from it
  convert it to a string
  put it back on the wall
end repeat

-- 
-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: odd and even numbers

2013-08-06 Thread Paul D. DeRocco
 From: Mark Wieder
 
 Paul-
 
 Monday, August 5, 2013, 10:59:27 PM, you wrote:
 
  I hope the engine is smart enough that repeat 1 times 
 doesn't convert
  the count back and forth between a string and a number ten 
 thousand times.
 
 repeat with the number of bottles of beer on the wall
   take one down
   convert it to a number
   subtract 1 from it
   convert it to a string
   put it back on the wall
 end repeat

Exactly!

-- 

Ciao,   Paul D. DeRocco
Paulmailto:pdero...@ix.netcom.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: Alternative cursor shapes

2013-08-06 Thread Paul D. DeRocco
 From: Paul D. DeRocco
 
 I created some alternative cursor shapes as .png files, with 
 transparency,
 and added them to my main stack. They work fine on my Win7 
 machines, both in
 the LC environment or when exported as standalones. I tried 
 them on an old
 WinXP laptop, and they instantly terminate the program. The 
 LC environment
 terminates as soon as I load the .rev file. Has anyone had 
 problems with embedding .png files?

I found that my problem was caused by the fact that I had embedded these
images as references to the files, and not copied the files. When I imported
them so that the image data would be embedded in the stack, then they
worked.

However, when I create a new stack, and just give it an image object that
refers to a file, and then delete the file, it doesn't crash. Since I can't
reproduce this crash with a simple example, I can't report it as a bug.

-- 

Ciao,   Paul D. DeRocco
Paulmailto:pdero...@ix.netcom.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


MobGui and Resolution Indipendence

2013-08-06 Thread paolo mazza
Hi all,
consider  to buid an  iOS  app for iPod-IPhone and iPad.
Alternative layouts for different screen sizes are needed.  (see
http://www.iosres.com/)
How to deal with all the different screeen resolution of these devices?
Will MobGui plugin take care of this effectively?
What is the the best practice in Livecode development?
Best regards,
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


AW: How to split an array to get a special column as index?

2013-08-06 Thread Tiemo Hollmann TB
Hello Mike,
thanks for answering. Thats what I am doing and it's not a too big deal. I
just wondered, if there is a more straight forward way, what most times is.
But this time it seems, it is not.
Thanks
Tiemo


 -Ursprüngliche Nachricht-
 Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im
Auftrag
 von Mike Bonner
 Gesendet: Montag, 5. August 2013 11:55
 An: How to use LiveCode
 Betreff: Re: How to split an array to get a special column as index?
 
 Someone will probably correct me, but I suspect a re-arrangement is the
 only way. And if you're doing that, you might as well just use a repeat
for
 each line loop and manually build the array as you go.
 
 
 On Mon, Aug 5, 2013 at 1:55 AM, Tiemo Hollmann TB
 toolb...@kestner.dewrote:
 
  Hello,
 
  when having a simple table, I can split this table into an one
  dimensional array by using return and the table separator, e.g.
 
  split myTable by return and ;
 
  to get the first column of the table as the array index.
 
  Is there any trick to split the same table getting any other column as
  the array index? Or do I have to create a copy of the table first and
  rearrange the columns, so that always the wanted index is the first
 column?
 
  Thanks for any hints.
 
  Tiemo
 
 
 
 
 
  ___
  use-livecode mailing list
  use-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


Japanese Font Menu 04

2013-08-06 Thread in...@kenjikojima.com
Hi,

This is a Japanese font menu stack 04 for Mac OS and Windows.

go to url http://kenjikojima.com/livecode/download/jpFontMenu04.livecode;

Added sub munes.
--
Kenji Kojima / 小島健治
http://www.kenjikojima.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


Odin down again?

2013-08-06 Thread Martin Koob
Hi

Is anyone else seeing that Odin is down?   I have already sent in an
emergency support request thru the website. 

http://www.on-rev.com/support/contact-us/

I noticed it was down about 8:40 EST

Martin


 



--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Odin-down-again-tp4668393.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: odd and even numbers

2013-08-06 Thread Mike Kerner
I think you forgot to pass it around.


On Tue, Aug 6, 2013 at 2:25 AM, Paul D. DeRocco pdero...@ix.netcom.comwrote:

  From: Mark Wieder
 
  Paul-
 
  Monday, August 5, 2013, 10:59:27 PM, you wrote:
 
   I hope the engine is smart enough that repeat 1 times
  doesn't convert
   the count back and forth between a string and a number ten
  thousand times.
 
  repeat with the number of bottles of beer on the wall
take one down
convert it to a number
subtract 1 from it
convert it to a string
put it back on the wall
  end repeat

 Exactly!

 --

 Ciao,   Paul D. DeRocco
 Paulmailto:pdero...@ix.netcom.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




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


Re: MobGui and Resolution Indipendence

2013-08-06 Thread Andrew Kluthe
I haven't messed with it at all, but I believe Monte's mApp framework is
accomplishing this. Also, I believe we aren't far off from built in
resolution independence from the livecode dev team.


On Tue, Aug 6, 2013 at 3:48 AM, paolo mazza mazzapaoloit...@gmail.comwrote:

 Hi all,
 consider  to buid an  iOS  app for iPod-IPhone and iPad.
 Alternative layouts for different screen sizes are needed.  (see
 http://www.iosres.com/)
 How to deal with all the different screeen resolution of these devices?
 Will MobGui plugin take care of this effectively?
 What is the the best practice in Livecode development?
 Best regards,
 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




-- 
Regards,

Andrew Kluthe
and...@ctech.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


textStyle with native iOS fields

2013-08-06 Thread Thomas McGrath III
Has anyone been able to get textStyles to work with native iOS fields?

Thanks Tom

-- Tom McGrath III
http://lazyriver.on-rev.com
mcgra...@mac.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: textStyle with native iOS fields

2013-08-06 Thread Mike Kerner
you mean instead of using iphonecontrolset?  I haven't had any issues with
iphonecontrolset to change properties for native fields.


On Tue, Aug 6, 2013 at 11:54 AM, Thomas McGrath III mcgra...@mac.comwrote:

 Has anyone been able to get textStyles to work with native iOS fields?

 Thanks Tom

 -- Tom McGrath III
 http://lazyriver.on-rev.com
 mcgra...@mac.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




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


Re: textStyle with native iOS fields

2013-08-06 Thread Thomas McGrath III
Mike, iPhoneControlSet does not have a textStyle property. I need Bold Italic 
Underline Mixed for NATIVE text fields in an iOS app.

Tom

-- Tom McGrath III
http://lazyriver.on-rev.com
mcgra...@mac.com

On Aug 6, 2013, at 12:04 PM, Mike Kerner mikeker...@roadrunner.com wrote:

 you mean instead of using iphonecontrolset?  I haven't had any issues with
 iphonecontrolset to change properties for native fields.
 
 
 On Tue, Aug 6, 2013 at 11:54 AM, Thomas McGrath III mcgra...@mac.comwrote:
 
 Has anyone been able to get textStyles to work with native iOS fields?
 
 Thanks Tom
 


___
use-livecode mailing list
use-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: MobGui and Resolution Indipendence

2013-08-06 Thread Roger Eller
Go LiveCode Team!  I despise having to use separate platform-specific
solutions.

~Roger


On Tue, Aug 6, 2013 at 11:39 AM, Andrew Kluthe and...@ctech.me wrote:

 I haven't messed with it at all, but I believe Monte's mApp framework is
 accomplishing this. Also, I believe we aren't far off from built in
 resolution independence from the livecode dev team.
 --
 Regards,

 Andrew Kluthe
 and...@ctech.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: textStyle with native iOS fields

2013-08-06 Thread Mike Kerner
HMM.  I'm not aware of a way to do that.  Sorry.


On Tue, Aug 6, 2013 at 12:09 PM, Thomas McGrath III mcgra...@mac.comwrote:

 Mike, iPhoneControlSet does not have a textStyle property. I need Bold
 Italic Underline Mixed for NATIVE text fields in an iOS app.

 Tom

 -- Tom McGrath III
 http://lazyriver.on-rev.com
 mcgra...@mac.com

 On Aug 6, 2013, at 12:04 PM, Mike Kerner mikeker...@roadrunner.com
 wrote:

  you mean instead of using iphonecontrolset?  I haven't had any issues
 with
  iphonecontrolset to change properties for native fields.
 
 
  On Tue, Aug 6, 2013 at 11:54 AM, Thomas McGrath III mcgra...@mac.com
 wrote:
 
  Has anyone been able to get textStyles to work with native iOS fields?
 
  Thanks Tom
 


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




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


revUp Newsletter- call for articles

2013-08-06 Thread Heather Laine
Dear List Folks,

As you may or may not have noticed, normal service has now resumed with our 
interesting and informative twice monthly newsletter. I'm now looking for new 
content for immediate publication and to bank for future issues. If you have 
something you'd like to write about, some code tip to share with the community, 
an interesting app story, essentially anything with a LiveCode slant that other 
community members might like to read about, please contact me on 
edi...@runrev.com. You can read previous issues here to get inspiration and 
some idea of what we're looking for:

http://livecode.com/community/newsletters/

I'd love to hear from you!

Warm Regards,

Heather
 
Heather Laine
Customer Services Manager
http://www.livecode.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: revUp Newsletter- call for articles

2013-08-06 Thread Randy Hengst
Hi Heather,

I'm a professor in the education department of a small, liberal arts college… 
we've been using LiveCode to develop apps for use in a Kindergarten Number 
Sense Project… we began several years ago and I wrote apps for desktop… we've 
moved now to iPads… the elementary education majors are required to buy an 
iPad… they also influence app design and modifications based on their work with 
kindergarten students… here are two web addresses if you'd like some more info. 
If you'd think it appropriate, the article link could be reduced in length 
with an emphasis on the two new apps that were developed this past school year.

The website for the NumberSense Project outlines the details and is available 
at http://www.augustana.edu/numbersense

A recent article I co-authored with Mike Egan about our work can be found here: 
http://www.citejournal.org/vol12/iss3/currentpractice/article1.cfm.


be well,
randy
-
On Aug 6, 2013, at 11:55 AM, Heather Laine heat...@runrev.com wrote:

 Dear List Folks,
 
 As you may or may not have noticed, normal service has now resumed with our 
 interesting and informative twice monthly newsletter. I'm now looking for new 
 content for immediate publication and to bank for future issues. If you have 
 something you'd like to write about, some code tip to share with the 
 community, an interesting app story, essentially anything with a LiveCode 
 slant that other community members might like to read about, please contact 
 me on edi...@runrev.com. You can read previous issues here to get inspiration 
 and some idea of what we're looking for:
 
 http://livecode.com/community/newsletters/
 
 I'd love to hear from you!
 
 Warm Regards,
 
 Heather
 
 Heather Laine
 Customer Services Manager
 http://www.livecode.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: odd and even numbers

2013-08-06 Thread Dr. Hawkins
On Tue, Aug 6, 2013 at 8:01 AM, Mike Kerner mikeker...@roadrunner.com wrote:
 I think you forgot to pass it around.

Maybe it was a good brand?


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


Re: odd and even numbers

2013-08-06 Thread Mike Kerner
golf clap/  #winner


On Tue, Aug 6, 2013 at 2:10 PM, Dr. Hawkins doch...@gmail.com wrote:

 On Tue, Aug 6, 2013 at 8:01 AM, Mike Kerner mikeker...@roadrunner.com
 wrote:
  I think you forgot to pass it around.

 Maybe it was a good brand?


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




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


Re: Odin down again?

2013-08-06 Thread Martin Koob
Just updating

Odin was back up around 10:50 EST

Martin




--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/Odin-down-again-tp4668393p4668406.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: textStyle with native iOS fields

2013-08-06 Thread Monte Goulding

On 07/08/2013, at 2:09 AM, Thomas McGrath III mcgra...@mac.com wrote:

 Mike, iPhoneControlSet does not have a textStyle property. I need Bold Italic 
 Underline Mixed for NATIVE text fields in an iOS app.

Last I looked into this even Objective C developers hack webviews to do it. 
There are some open source styled text editors around I think so you could use 
an external...

Cheers

--
Monte Goulding

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


Re: MobGui and Resolution Indipendence

2013-08-06 Thread Monte Goulding

On 07/08/2013, at 2:31 AM, Roger Eller roger.e.el...@sealedair.com wrote:

 Go LiveCode Team!  I despise having to use separate platform-specific
 solutions.

Actually mApp is quite capable of being used as a desktop framework too. Right 
at the moment I'm in a quandary about extending it some more for desktop to 
give it the features I'll miss from GLX or splitting the project I'm 
considering this for. The thing that mApp doesn't do which the OP was about I 
think is pretty buttons etc. That's up to you. It won't become redundant when 
resolution independence is released BTW it will just change the scaling code to 
whatever minor things need to be done for the resolution independence stuff to 
work.

Cheers

--
Monte Goulding

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


With Apple script no longer supported, how do I....

2013-08-06 Thread Jim Hurley
Election season is fact approaching in my county. I do a lot of election DB 
work.

One thing I have long relied on was the ability to extract data stored 
Filemaker and put it into a LC stack, (where the scripting language is not 
idiotic.)

I have done  this with something like this (below) executed as Apple Script:

set theDatabase to choose file with prompt Please locate a FileMaker Pro 
database file to open:
tell application FileMaker Pro
with transaction
try
open theDatabase
go to layout list
get every record of layout list
end try
end transaction
end tell

It was slow but it worked.

With Apple script gone, will there remain a way to script in LC a way to 
extract  info from FM?

Please tell me this is a naive question, and the answer is easy.

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


unable to start simulation on iOS

2013-08-06 Thread Malte Brill
I wanted to work I created a while back. It fails to open in the simulator with 
the following error:

unable to start Simulation: Could not install the app (in german, so the 
english wording might be a little different). A vanilla new stack launches just 
fine in the Simulator. I already deleted the standalone settings custom 
property, but to no avail. Anybody got an idea what is happening here?
___
use-livecode mailing list
use-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: unable to start simulation on iOS

2013-08-06 Thread Monte Goulding

On 07/08/2013, at 9:05 AM, Malte Brill wrote:

 I wanted to work I created a while back. It fails to open in the simulator 
 with the following error:
 
 unable to start Simulation: Could not install the app (in german, so the 
 english wording might be a little different). A vanilla new stack launches 
 just fine in the Simulator. I already deleted the standalone settings custom 
 property, but to no avail. Anybody got an idea what is happening here?


Try changing the app identifier. The simulator doesn't like different apps that 
have the same identifier.

Cheers

--
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: With Apple script no longer supported, how do I....

2013-08-06 Thread Ian Wood
I'm probably misunderstanding something here, but as long as you're not selling 
your app via the Mac App Store I though sandboxing isn't going to affect your 
app's ability to run AppleScript?

Ian


On 6 Aug 2013, at 23:55, Jim Hurley jhurley0...@sbcglobal.net wrote:

 Election season is fact approaching in my county. I do a lot of election DB 
 work.
 
 One thing I have long relied on was the ability to extract data stored 
 Filemaker and put it into a LC stack, (where the scripting language is not 
 idiotic.)
 
 I have done  this with something like this (below) executed as Apple Script:
 
 set theDatabase to choose file with prompt Please locate a FileMaker Pro 
 database file to open:
 tell application FileMaker Pro
with transaction
try
open theDatabase
go to layout list
get every record of layout list
end try
end transaction
 end tell
 
 It was slow but it worked.
 
 With Apple script gone, will there remain a way to script in LC a way to 
 extract  info from FM?
 
 Please tell me this is a naive question, and the answer is easy.
 
 Jim Hurley
 ___
 use-livecode mailing list
 use-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: With Apple script no longer supported, how do I....

2013-08-06 Thread Geoff Canyon
Would it work to export from within FileMaker, and then import that file
into LC? That would mean writing a (very simple) script in FileMaker, or
just manually exporting using the specified layout as a template, and then
writing a simple importer in LC.


On Tue, Aug 6, 2013 at 5:55 PM, Jim Hurley jhurley0...@sbcglobal.netwrote:

 Election season is fact approaching in my county. I do a lot of election
 DB work.

 One thing I have long relied on was the ability to extract data stored
 Filemaker and put it into a LC stack, (where the scripting language is not
 idiotic.)

 I have done  this with something like this (below) executed as Apple
 Script:

 set theDatabase to choose file with prompt Please locate a FileMaker Pro
 database file to open:
 tell application FileMaker Pro
 with transaction
 try
 open theDatabase
 go to layout list
 get every record of layout list
 end try
 end transaction
 end tell

 It was slow but it worked.

 With Apple script gone, will there remain a way to script in LC a way to
 extract  info from FM?

 Please tell me this is a naive question, and the answer is easy.

 Jim Hurley
 ___
 use-livecode mailing list
 use-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