Re: Is RevOnLine update broken?

2012-03-17 Thread Richmond

On 03/17/2012 08:00 AM, Bill Vlahos wrote:

I'm trying to upload a newer version of the Encryption Made Easy stack and it 
is stuck uploading and doesn't really get started and never finishes.

Is there a problem with it?

Bill Vlahos
_



Various people, including myself, have been making funny noises about 
RevOnline for quite
some time: but it would seem that the good people in Embro have other 
fish to fry right now.


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


Re: Is RevOnLine update broken?

2012-03-17 Thread René Micout

Le 17 mars 2012 à 07:52, Richmond a écrit :

 Various people, including myself, have been making funny noises about 
 RevOnline for quite
 some time: but it would seem that the good people in Embro have other fish to 
 fry right now.

Yes ! I think that since 9th december 2011...


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


Re: MySQL joined select

2012-03-17 Thread Mark Schonewille
Hi,

First, you need to create one big table. You do this with

SELECT * FROM table1,table2

This table will be way too big, so you need to add a way to select only the 
relevant rows from that very big table, e.g.

SELECT * FROM table1,table2 WHERE table1.key = table2.key

You need to test and change it until you really get only rows that make sense. 
Now you can add a condition and determine which columns to select:

SELECT A,B,C,D FROM table1,table2 WHERE table1.key = table2.key AND table2.C  
table1.B

and that completes the query.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker Plugin 1.7 for LiveCode here http://qery.us/za

On 17 mrt 2012, at 11:44, Marek Reichenbach wrote:

 I'm trying to do in LiveCode with MySQL:
 how to use data from other table in the same query for filtering:
 
 SELECT A, B ,C, (SELECT D FROM TABLE2 WHERE C[from table2]  B[from
 table1]) FROM TABLE1; -- the stucture of query
 
 help please :/
 ___
 use-livecode mailing list
 use-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: MySQL joined select

2012-03-17 Thread Mark Schonewille
Hi,

You need something to identify the rows in the tables. Somehow you need to know 
which rows belong together. If this doesn't help you, then you need to be more 
specific about the type of data in your two tables and what you are trying to 
achieve.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker Plugin 1.7 for LiveCode here http://qery.us/za

On 17 mrt 2012, at 12:47, Marek Reichenbach wrote:

 Hi Mark, thank you for the reply.
 I'm going to try it in your way.
 
 I didn't understand one thing:
 WHERE table1.key = table2.key   WHERE table1.key = table2.key AND table2.C
  table1.B
 
 the table.key is... ?


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


Re: MySQL joined select

2012-03-17 Thread Marek Reichenbach
I'll try.

Thanks Mark.

On 17 March 2012 14:05, Mark Schonewille
m.schonewi...@economy-x-talk.comwrote:

 Hi,

 If the unique numbers are the same in both tables and indicate that the
 respective records belong together, then it is what I'm talking about.

 --
 Best regards,

 Mark Schonewille

 Economy-x-Talk Consulting and Software Engineering
 Homepage: http://economy-x-talk.com
 Twitter: http://twitter.com/xtalkprogrammer
 KvK: 50277553

 Download the Installer Maker Plugin 1.7 for LiveCode here
 http://qery.us/za

 On 17 mrt 2012, at 12:58, Marek Reichenbach wrote:

  Well, there is a unique number in both tables. Is it this what you're
  talking about ?


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


Failing to understand the oddities of the line chunk

2012-03-17 Thread Alex Tweedly

This code

 put a  CR into t; put b into line 2 of t; put t

produces (as I would expect)

a
b

BUT
put a  CR into t;  put  b into line 2 to -1 of t; put t 

produces

ba
Why should adding the to -1 change this to put the new data before 
what was there before ?


I can see that there is no line 2, so saying line 2 to -1  does need 
to be interpreted. But if you specify a line number higher than exists, 
normally the string will be padded with enough CRs to make it work, e.g.

put a CR into t;  put  b into line 3 of t; put t

produces

a

b

but

put a CR into t;  put  b into line 3 to -1 of t; put t

again produces

ba






-- Alex.

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


Re: MySQL joined select

2012-03-17 Thread Marek Reichenbach
Sorry Mark, one more question. Is there a way for example to do: SELECT
A,B,C,D FROM table1 WHERE AB... BUT in the result SHOW only A column
result. HIDE B column
?
Please.

On 17 March 2012 14:08, Marek Reichenbach reichenbach.ma...@gmail.comwrote:

 I'll try.

 Thanks Mark.


 On 17 March 2012 14:05, Mark Schonewille m.schonewi...@economy-x-talk.com
  wrote:

 Hi,

 If the unique numbers are the same in both tables and indicate that the
 respective records belong together, then it is what I'm talking about.

 --
 Best regards,

 Mark Schonewille

 Economy-x-Talk Consulting and Software Engineering
 Homepage: http://economy-x-talk.com
 Twitter: http://twitter.com/xtalkprogrammer
 KvK: 50277553

 Download the Installer Maker Plugin 1.7 for LiveCode here
 http://qery.us/za

 On 17 mrt 2012, at 12:58, Marek Reichenbach wrote:

  Well, there is a unique number in both tables. Is it this what you're
  talking about ?


 ___
 use-livecode mailing list
 use-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: MySQL joined select

2012-03-17 Thread Mark Schonewille
Hi,

Sure, just don't include B in your column list:

SELECT A,C,D FROM table1,table2 WHERE table1.key = table2.key AND
table2.C  table1.B

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

Download the Installer Maker Plugin 1.7 for LiveCode here http://qery.us/za

On 17 mrt 2012, at 14:42, Marek Reichenbach wrote:

 Sorry Mark, one more question. Is there a way for example to do: SELECT
 A,B,C,D FROM table1 WHERE AB... BUT in the result SHOW only A column
 result. HIDE B column
 ?
 Please.


___
use-livecode mailing list
use-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: queryregistry problem win

2012-03-17 Thread Klaus on-rev
Hi Mr. Thunder,

Am 17.03.2012 um 03:59 schrieb Thunder:

 answer queryregistry(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
 NT\CurrentVersion\DefaultProductKey\ProductId) 
 Works OK on Win7 (logged on as Admin). Copy from webpage and paste into
 messagebox LiveCode 5.0.2

answer 
queryregistry(HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\DefaultProductKey\ProductId)
 
NOT Works OK HERE on my Win7 (logged on as Admin). Tediously typed every single 
character manually into messagebox
LiveCode 5.0.2

:-)


Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.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: queryregistry problem win

2012-03-17 Thread Thunder
Do you have read permission ?


Check this :
Start regedit.exe
Right click DefaultProductKey
Click on permission


--
View this message in context: 
http://runtime-revolution.278305.n4.nabble.com/queryregistry-problem-win-tp4475724p4480707.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


outputting unicode text fields to unicode text files

2012-03-17 Thread rand valentine
Hi, all. I'm stymied in my efforts to save a field of Unicode text to a text
file. I'm working with Windows (7) and the latest version of Livecode.

 

The field has Unicode text in it which which I can readily copy and paste
into Word and Wordpad and preserve all of the Unicode characters. But if I
try to save it to a binfile I simply cannot get the correct text.

 

If I code

 

put the unicodeText of fld x into url theFile

 

it seems to not recognize that the fld is already Unicode text, and outputs
each character with a space after it as if it has tried to create Unicode
text from simple text. So the file is garbage.

 

But if I code

 

put fld x into url theFile

 

I also don't get the Unicode characters rendering correctly in a textfile.
What alternative is there to output this Unicode text to a Unicode text
file? Thanks.

 

rand valentine

university of wisconsin-madison

 

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


solved my own unicode problem

2012-03-17 Thread rand valentine
I just wrote asking for Unicode help, and found a solution in one of Devin
Asay's helps. I'm writing scripts to help my students move simple Unicode
text files (if there is such a thing) into a Windows-based linguistic
program called Toolbox. This program seems to only recognize UTF8 text. So
using Devin's command

 

put unidecode(the unicodeText of fld x,utf8) into url theFile

 

The file opens with the correct rendering in Toolbox. I so wish Livecode
could just 'do Unicode' without my having to hassle with so many coding
tricks, but I think this is not so much a Livecode issue, as living in the
complex world of Unicode.

 

rand

___
use-livecode mailing list
use-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: solved my own unicode problem

2012-03-17 Thread J. Landman Gay

On 3/17/12 11:07 AM, rand valentine wrote:


I so wish Livecode
could just 'do Unicode' without my having to hassle with so many coding
tricks, but I think this is not so much a Livecode issue, as living in the
complex world of Unicode.


I think you'll be happy with the upcoming 5.5 release. Very, very happy.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: Failing to understand the oddities of the line chunk

2012-03-17 Thread J. Landman Gay

On 3/17/12 8:16 AM, Alex Tweedly wrote:

This code

put a  CR into t; put b into line 2 of t; put t

produces (as I would expect)

a
b

BUT

put a  CR into t; put b into line 2 to -1 of t; put t

produces

ba

Why should adding the to -1 change this to put the new data before
what was there before ?


It's because of how the engine ignores trailing delimiters. The variable 
t contains only one line, so line 2 to -1 evaluates to line 2 to 1.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: App Rejected: Crash reports

2012-03-17 Thread J. Landman Gay

On 3/17/12 6:58 AM, Sergio Schvarstein wrote:

Hi,

I've submitted an app to the AppStore and it was rejected because
several crashes were found.

This is the Apple rejection message:

We found that your app crashed on iPhone 4 and iPad 2 running iOS
5.1, which is not in compliance with the App Store Review
Guidelines. Your app crashed intermittently on both Wi-Fi and
cellular networks.

They've also sent 4 crash reports, which I couldn't descifrate.

In all my exhaustive tests in several devices and iOS versions I
never found any crash.

Here are the 4 crash reports:
http://dl.dropbox.com/u/592829/Projects/IndexBook/crash_reports.zip

Is there any way for knowing the crash origins ?


The engineers don't monitor this list, so you need to submit a bug 
report. If you are a member of the developer program you can do that 
yourself at http://quality.runrev.com. Otherwise, send an email to 
support supp...@runrev.com and enclose your crash log files.


That's the only way the team will know there is a problem.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: Failing to understand the oddities of the line chunk

2012-03-17 Thread dunbarx
What Jacque said.



answer the number of items of 1,2, --give 2


Same with line delimiters.


Craig Newman



-Original Message-
From: J. Landman Gay jac...@hyperactivesw.com
To: How to use LiveCode use-livecode@lists.runrev.com
Sent: Sat, Mar 17, 2012 12:35 pm
Subject: Re: Failing to understand the oddities of the line chunk


On 3/17/12 8:16 AM, Alex Tweedly wrote:
 This code
 put a  CR into t; put b into line 2 of t; put t
 produces (as I would expect)
 a
 b
 BUT
 put a  CR into t; put b into line 2 to -1 of t; put t
 produces
 ba
 Why should adding the to -1 change this to put the new data before
 what was there before ?

It's because of how the engine ignores trailing delimiters. The variable 
t contains only one line, so line 2 to -1 evaluates to line 2 to 1.

-- 
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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

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


IphoneDeviceScale

2012-03-17 Thread J. Landman Gay

What does iPhoneDeviceScale return on the new iPad? Four?

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re:

2012-03-17 Thread Pete
SELECT A,B,C,TABLE2.D FROM TABLE1 LEFT JOIN TABLE2 ON TABLE2.C  TABLE1.B
On Mar 17, 2012 3:44 AM, Marek Reichenbach reichenbach.ma...@gmail.com
wrote:

 I'm trying to do in LiveCode with MySQL:
 how to use data from other table in the same query for filtering:

 SELECT A, B ,C, (SELECT D FROM TABLE2 WHERE C[from table2]  B[from
 table1]) FROM TABLE1; -- the stucture of query

 help please :/
 ___
 use-livecode mailing list
 use-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: App Rejected: Crash reports

2012-03-17 Thread Dar Scott
I think this is LiveCode engine problem.  It seems to be the use of a NULL 
pointer, probably from an error that is not expected and never checked.  For 
example, a request for memory might be made and a NULL is returned when none is 
available.  A programmer might be able to prove that an error cannot occur, but 
the Apple test environment might generate one anyway.  Report this to RunRev as 
Jacque suggested.

In the mean time, you can increase stresses to try to force crashes on your 
setup.  I'm not sure how to do that.  You can try very large data.  If you are 
using http, then try opening chargen (port 19) on a system with simple services 
enabled.  You can also try to connect to computers that do not exist or do not 
a listener (service) on that port of that computer.  If you can make lots of 
connections, do that.  

It might be a random bug in your code related to native controls or externals.  

Dar


On Mar 17, 2012, at 5:58 AM, Sergio Schvarstein wrote:

 I've submitted an app to the AppStore and it was rejected because several 
 crashes were found.
 
 This is the Apple rejection message:
 
 We found that your app crashed on iPhone 4 and iPad 2 running iOS 5.1, which 
 is not in compliance with the App Store Review Guidelines.
 Your app crashed intermittently on both Wi-Fi and cellular networks.
 
 They've also sent 4 crash reports, which I couldn't descifrate.
 
 In all my exhaustive tests in several devices and iOS versions I never found 
 any crash.
 
 Here are the 4 crash reports:
 http://dl.dropbox.com/u/592829/Projects/IndexBook/crash_reports.zip
 
 Is there any way for knowing the crash origins ?



___
use-livecode mailing list
use-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: New Xcode 4.3.1

2012-03-17 Thread Edward D Lavieri Jr
Hi Tom,

Sorry to be a simpleton on this, but I cannot seem to get this to work. 

Your statement that we can get 4.3.1 to work with LC 5.5rc2 is encouraging. 
Would you mind providing more specifics  regarding what files/folders need to 
be copied from/to each location?

On my Mac Pro, I see /Library/Developer/ with the following subdirectories:
/4.0
/4.2
/4.2.1
/Documentation
/Shared

I see the /Platforms directory in the Xcode.app package. What do I copy from 
there and to where?

Thanks much,
Ed


On Mar 16, 2012, at 8:42 PM, Thomas McGrath III wrote:

 4.3.1 does work with LC 5.5rc2 -IF you copy over both the iOS 5.0 simulator 
 SDK and the iOS 5.0 developer SDK to their appropriate folders in the 4.3.1 
 app bundle. That said, You can then check out how your app will look in the 
 retina size for iPad only in the simulator using Simulator 5.1 But you will 
 only be able to build with 5.0 for the device and not 5.1-- LC will do that 
 for you if all four SDKs are available.
 
 To say again it is iOS 5.1 that is not supported yet by LC for device builds. 
 But with a little copying you can still use xCode 4.3.1 with BOTH the 5.0 for 
 device builds and 5.1 SDKs for the Simulator.
 
 
 -- Tom McGrath III
 http://lazyriver.on-rev.com
 3mcgr...@comcast.net
 
 On Mar 16, 2012, at 7:39 PM, Pierre Sahores wrote:
 
 Using :
 
 MBP i7, OSX 10.6.8, XCode 4.2, Android SDK API 8 to 15, LC 5.5 rc2
 
 Devices addressed trough the XCode Organizer : iPad 1, iPod Touch
 Devices directly addressed via the LC test button : iPhone/iPad simulator, 
 Galaxy S2
 
 --
 Pierre Sahores
 mobile : 06 03 95 77 70
 www.spimsco.net : la première solution saas open source et commerciale de 
 développement sémantique préprogrammé
 
 Le 16 mars 2012 à 19:46, Mike Kerner a écrit :
 
 Sergio,
 
 4.3.1 is not supported yet.  4.3 is.  You can download 4.3 from Apple's dev
 site.  As of today, there is no solution (despite multiple attempts) for
 using 4.3.1.
 
 
 -- 
 On the first day, God created the heavens and the Earth
 On the second day, God created the oceans.
 On the third day, God put the animals on hold for a few hours,
 and did a little diving.
 And God said, This is good.
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your 
 subscription preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-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: Failing to understand the oddities of the line chunk

2012-03-17 Thread Alex Tweedly
Thanks Jacque. I kept seeing it as line 2  to the end and so expected 
it to go there.


I now see it; so I can simply do

constant infinity=99
put a  CR into t; put b into line 2 to infinity of t

and I get the right (i.e. desired :-)  answer.

Thanks !!
-- Alex

On 17/03/2012 16:33, J. Landman Gay wrote:

On 3/17/12 8:16 AM, Alex Tweedly wrote:

This code

put a  CR into t; put b into line 2 of t; put t

produces (as I would expect)

a
b

BUT

put a  CR into t; put b into line 2 to -1 of t; put t

produces

ba

Why should adding the to -1 change this to put the new data before
what was there before ?


It's because of how the engine ignores trailing delimiters. The 
variable t contains only one line, so line 2 to -1 evaluates to 
line 2 to 1.





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


Re: IphoneDeviceScale

2012-03-17 Thread J. Landman Gay

On 3/17/12 3:27 PM, Chris Sheffield wrote:

Two.

Sent from my iPhone

On Mar 17, 2012, at 10:50 AM, J. Landman Gayjac...@hyperactivesw.com  wrote:


What does iPhoneDeviceScale return on the new iPad? Four?


Thanks Chris. I wonder if that's what it should be.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: New Xcode 4.3.1

2012-03-17 Thread J. Landman Gay

On 3/17/12 4:31 PM, Thomas McGrath III wrote:

OK, You must have xCode 4.3  xCode 4.3.1

There are two copies to perform,


Alas, those of us still in Snow Leopard can't run XCode 4.3.1 at all. I 
tried copying the files the other direction (5.1 SDK into XCode 4.2) and 
the simulator works fine but LiveCode won't open it. It flips the 
simulator back to 5.0.


I don't want Lion. Apparently that's moot.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

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


Re: New Xcode 4.3.1

2012-03-17 Thread stephen barncard
And Lion is the current system! What can an ordinary developer do?

I have tried twice to try out Mountain Lion beta ( on a separate drive of
course ) - both times TOTAL CRASH - debugger, then black screen of death.
 (did I just blow my NDA?)

checked the logs... at the top was a reference to the 'Free' DAZ software.

perhaps it's that global again.

sqb

On 17 March 2012 19:25, J. Landman Gay jac...@hyperactivesw.com wrote:

 On 3/17/12 4:31 PM, Thomas McGrath III wrote:

 OK, You must have xCode 4.3  xCode 4.3.1

 There are two copies to perform,


 Alas, those of us still in Snow Leopard can't run XCode 4.3.1 at all. I
 tried copying the files the other direction (5.1 SDK into XCode 4.2) and
 the simulator works fine but LiveCode won't open it. It flips the simulator
 back to 5.0.

 I don't want Lion. Apparently that's moot.

 --
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com


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




-- 



Stephen Barncard
San Francisco Ca. USA

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


Can't set minimizeWindow to true on systemWindow

2012-03-17 Thread Bill Vlahos
If the systemWindow property is set to true (or the window is a plugin) the 
minimizeWindow button (yellow traffic light on Mac OS X) is disabled. Is there 
any way to turn it back on in a plugin?

I can minimize a plugin window but I can't set the decoration to show it.

Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life 
information with you, accessible, and secure.


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