Bug in 5.5.3: creating universal arm failed with lipo

2012-11-01 Thread Debdoot Das
Hi,

I am getting an error when I try to compile with 5.5.3 but not with 5.5.2.

It says "creating universal arm failed with lipo livecode:" plus can't find 
file etc.

Any ideas

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


Not an Open Socket - While Checking for Internet

2011-09-24 Thread debdoot das
Hi All,

This script returns the IP address on the computer but on iphone simulator it 
returns "not an open socket." 

Anyway to make this work?

on mouseUp
   put "255.255.255.255:4" into mySock
  open datagram socket to mySock
  put hostAddress(mySock) into myIP1
  close socket mySock
  if myIP1 is "127.0.0.1" then
   put "Connection not successful" into cd fld "updates"
put myIP1 into cd fld "updates2"
   else
  put "Connection successful" into cd fld "updates"
  put myIP1 into cd fld "updates2"
  end if
end mouseUp

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


Re: Blocking in iOS and libUrlDownloadToFile

2011-09-07 Thread debdoot das
Thanks Gerry. I avoid taking away control from the user but have to it seems.

On Sep 7, 2011, at 2:10 AM, Gerry Orkin wrote:

> You have to prevent the user from interrupting the download - I do that by 
> showing a transparent rect over the whole screen so they can't interact with 
> the app until the download is done. I think by "blocking" they mean you can't 
> request another download until this one is complete.
> 
> Gerry
> 
> On 07/09/2011, at 8:19 AM, debdoot das wrote:
> 
>> In relation to blocking.
>> 
>> This what the release notes say:
>> 
>> libUrlDownloadToFile url, filename
>> 
>> Unlike the libUrl command of the same name, this command will block until 
>> the download is complete, and will notify progress through the urlProgress 
>> message as described above.
>> 
>> However I was able to click away in the middle of a download in the 
>> simulator resulting in a partially downloaded files. Can anyone please 
>> confirm whether this is the way it should be.
>> 
>> Regards,
>> 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
> 
> 
> ___
> use-livecode mailing list
> use-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


Blocking in iOS and libUrlDownloadToFile

2011-09-06 Thread debdoot das
In relation to blocking.

This what the release notes say:

libUrlDownloadToFile url, filename

Unlike the libUrl command of the same name, this command will block until the 
download is complete, and will notify progress through the urlProgress message 
as described above.

However I was able to click away in the middle of a download in the simulator 
resulting in a partially downloaded files. Can anyone please confirm whether 
this is the way it should be.

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


Re: urlProgress error message

2011-09-06 Thread debdoot das
Thanks Mark. I was following the iOS release notes. However i did look up 
urlStatus in the dictionary.

I was wondering when

urlProgress url, "error", errorMessage

if there was a list of errorMessage

Regards,
Debdoot

On Sep 6, 2011, at 5:29 PM, Mark Schonewille wrote:

> Hi,
> 
> I think you mean urlStatus and the answer is yes. Just search the LC 
> dictionary for urlStatus.
> 
> --
> Best regards,
> 
> Mark Schonewille
> 
> Economy-x-Talk Consulting and Software Engineering
> Homepage: http://economy-x-talk.com
> Twitter: http://twitter.com/xtalkprogrammer
> KvK: 50277553
> 
> Send me a friend request on Facebook if you like 
> https://www.facebook.com/marksch
> 
> On 6 sep 2011, at 20:55, debdoot das wrote:
> 
>> Salutations,
>> 
>> Is there a list of all the possible urlProgress error messages.
>> 
>> 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

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


urlProgress error message

2011-09-06 Thread debdoot das
Salutations,

Is there a list of all the possible urlProgress error messages.

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