Re: Notarize Helper Stack in LC lesson updated

2022-03-28 Thread General 2018 via use-livecode
Used MrSign and made successful notarised .pkg

Works fine on my machine but when I emailed a beta tester the .pkg it showed 
delevoper unidentifiable message and com.apple.installer.pagecontroller error -1

Any idea ?

Regards
Camm

> On 8 Feb 2022, at 23:48, matthias rebbe via use-livecode 
>  wrote:
> 
> Camm,
> 
> if i am not completely  wrong then this is a problem that can occur when you 
> try the pkg installer on the same machine on which you've created it.
> If the installer finds the same .app already somewhere on the hard disk it 
> updates that app and does not install it into Applications folder.
> 
> So the best thing is to test the installer on an other machine. Or you could 
> try the following:
> After successful notarizing delete the app bundle of your standalone (you 
> could make a zip file as backup first) and empty your trash. Make sure that 
> there is no other copy of your .app even older ones. If there are others then 
> delete them also and empty the trash.
> 
> Now try to run the .pkg installer. The app should now be installed in 
> Applications folder.
> 
> Matthias
> 
> 
>> Am 08.02.2022 um 22:23 schrieb General 2018 via use-livecode 
>> :
>> 
>> Hi ,
>> 
>> Just a question on the .pkg install location.
>> 
>> When I execute the .pkg made by mrSign the installer completes okay but I 
>> cannot find app ? not in /Applications or anywhere.
>> 
>> If I use 3rd party “Packages” to make a .pkg it’s installs app to 
>> /Applications.
>> 
>> Any clue ? 
>> 
>> Regards Camm
>> 
 On 3 Feb 2022, at 22:17, matthias rebbe via use-livecode 
 mailto:use-livecode@lists.runrev.com>> 
 wrote:
>>> 
>>> Hi Camm,
>>> 
>>> great to hear that you were able to successfully notarize.
>>> 
>>> Regards,
>>> Matthias
>>> 
>>> 
 Am 03.02.2022 um 21:54 schrieb General 2018 via use-livecode 
 :
 
 Update  Success.
 
 Tried everything, then read a post that pointed to :-
 Apple Worldwide Developer Relations Certification Authority Cert
 Developer ID Certification Authority Cert
 
 In Keychain my existing expired 2027, I downloaded and installed the 
 latest expiring 2030/2031 - re run mrSign and notarization success.
 
 Status = Success 0 
 Status Code = Pac 
 Status Message = Age Approved
 
 Regards
 Camm
 
>> On 29 Jan 2022, at 22:41, matthias rebbe via use-livecode 
>>  wrote:
> 
> Hm, interesting. Seems to be a problem with a wrong or missing 
> timestamp. So maybe adding --timestamp parameter will fix this.
> 
> Could you please change the following lines in the stack script of the 
> NotarizeHelper stack and try again after that?
> 
> 
> line 904
> put "codesign --deep --force --verify --verbose --sign 
> ##developerIDApplication## --options runtime  --entitlements 
> ##entitlementsplist## ##myapp##" into tShell
> with this line
> put "codesign --timestamp --deep --force --verify --verbose --sign 
> ##developerIDApplication## --options runtime  --entitlements 
> ##entitlementsplist## ##myapp##" into tShell
> 
> 
> 
> line 908
> put "codesign --deep --force --verify --verbose --sign 
> ##developerIDApplication## --options runtime ##myapp##" into tShell
> with
> put "codesign --timestamp --deep --force --verify --verbose --sign 
> ##developerIDApplication## --options runtime ##myapp##" into tShell
> 
> line 953
> put "codesign --deep --force --verify --verbose --sign 
> ##developerIDApplication## --options runtime ##myDMG##" into tShell
> with
> put "codesign --timestamp --deep --force --verify --verbose --sign 
> ##developerIDApplication## --options runtime ##myDMG##" into tShell
> 
> 
>> Am 29.01.2022 um 22:17 schrieb General 2018 via use-livecode 
>> :
>> 
>> Tried all these, result the same.
>> 
>> In show “Notarization requests” for each :-
>> 
>> Status = invalid 2
>> Status Code = Pac
>> Status Message = age invalid
>> 
>> Regards Camm
>> 
 On 29 Jan 2022, at 20:37, matthias rebbe via use-livecode 
  wrote:
>>> 
>> ___
>> use-livecode mailing list
>> use-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 
 

Re: Getting Webpage Information

2022-03-28 Thread Rick Harrison via use-livecode
Hi Tom,

I found htmltext gave me html not just text.

I tried the following, and it yielded a lot of formatting junk, plus some 
useable text.

set the HTMLText of field  “MyTestTextField" to the HTMLtext of widget  
“MyWebBrowser"

Bob is correct about javascript variable contents not coming across. 
I have found that aspect to be a source of much frustration.  If we could
just have a command that would copy and paste from the widget like a human
we would be able to capture those javascript variable values.

Thanks for the suggestions.

Rick


> On Mar 28, 2022, at 4:38 PM, Tom Glod via use-livecode 
>  wrote:
> 
> Rick,
> 
> try the htmltext property instead of text. I just tested it, it works and
> text does not.

___
use-livecode mailing list
use-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: Getting Webpage Information

2022-03-28 Thread Bob Sneidar via use-livecode
It seems to me that in order for the browser widget to DISPLAY all the text, 
even in Javascript objects, it must KNOW what the text is. If it KNOWS, maybe 
there is a way to update the widget to make that information available in a 
property? 

Bob S


> On Mar 28, 2022, at 13:50 , Bob Sneidar via use-livecode 
>  wrote:
> 
> I get the web page text, but not any of the values in the fields, nor even 
> any of the body text. I think that is because the page I am looking at is 
> Java based. I'd LOVE to figure out a way to get THAT text as it would make my 
> job of backing up copier data during installs MUCH quicker. 
> 
> Bob S
> 
> 
>> On Mar 28, 2022, at 13:38 , Tom Glod via use-livecode 
>>  wrote:
>> 
>> Rick,
>> 
>> try the htmltext property instead of text. I just tested it, it works and
>> text does not.
>> 
>> 
>> On Sun, Mar 27, 2022 at 5:53 PM Rick Harrison via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>> 
>>> Hi Keith,
>>> 
>>> Yes, I have tried that several times and ways.  It doesn’t seem to work.
>>> One would think that would work fine.
>>> 
>>> Other ideas?
>>> 
>>> Thanks,
>>> 
>>> Rick
>>> 
 On Mar 27, 2022, at 3:58 PM, Keith Clarke via use-livecode <
>>> use-livecode@lists.runrev.com> wrote:
 
 Hi Rick,
 Maybe try 'put the text of widget "youtBrowserName" into field
>>> "yourFieldName" ' to get the plain text? If you need the html source, try
>>> '...the htmlText' of widget...
 Best,
 Keith
>>> 
>>> ___
>>> use-livecode mailing list
>>> use-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: Getting Webpage Information

2022-03-28 Thread Bob Sneidar via use-livecode
I get the web page text, but not any of the values in the fields, nor even any 
of the body text. I think that is because the page I am looking at is Java 
based. I'd LOVE to figure out a way to get THAT text as it would make my job of 
backing up copier data during installs MUCH quicker. 

Bob S


> On Mar 28, 2022, at 13:38 , Tom Glod via use-livecode 
>  wrote:
> 
> Rick,
> 
> try the htmltext property instead of text. I just tested it, it works and
> text does not.
> 
> 
> On Sun, Mar 27, 2022 at 5:53 PM Rick Harrison via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> Hi Keith,
>> 
>> Yes, I have tried that several times and ways.  It doesn’t seem to work.
>> One would think that would work fine.
>> 
>> Other ideas?
>> 
>> Thanks,
>> 
>> Rick
>> 
>>> On Mar 27, 2022, at 3:58 PM, Keith Clarke via use-livecode <
>> use-livecode@lists.runrev.com> wrote:
>>> 
>>> Hi Rick,
>>> Maybe try 'put the text of widget "youtBrowserName" into field
>> "yourFieldName" ' to get the plain text? If you need the html source, try
>> '...the htmlText' of widget...
>>> Best,
>>> Keith
>> 
>> ___
>> use-livecode mailing list
>> use-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: Getting Webpage Information

2022-03-28 Thread Tom Glod via use-livecode
Rick,

try the htmltext property instead of text. I just tested it, it works and
text does not.


On Sun, Mar 27, 2022 at 5:53 PM Rick Harrison via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Hi Keith,
>
> Yes, I have tried that several times and ways.  It doesn’t seem to work.
> One would think that would work fine.
>
> Other ideas?
>
> Thanks,
>
> Rick
>
> > On Mar 27, 2022, at 3:58 PM, Keith Clarke via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Hi Rick,
> > Maybe try 'put the text of widget "youtBrowserName" into field
> "yourFieldName" ' to get the plain text? If you need the html source, try
> '...the htmlText' of widget...
> > Best,
> > Keith
>
> ___
> use-livecode mailing list
> use-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: Signing With Apple on iOS Woes

2022-03-28 Thread Colin Holgate via use-livecode
There are a couple of ideas here:

https://stackoverflow.com/questions/16073519/nsurlerrordomain-error-code-999-in-ios
 


The simpler suggestion is that you’re sending two requests, the second one 
going before the first one has completed.


> On Mar 28, 2022, at 11:00 AM, Dan Friedman via use-livecode 
>  wrote:
> 
> I am trying to user a browser widget to do a login with Apple.  When I load 
> my page (that redirects to apple with the appropriate keys) on my desktop (in 
> the IDE) it works perfect!   When I load the URL in the iOS Simulator, I get 
> a browserDocumentLoadFailed message and the error is "navigation request 
> cancelled" and then the page loads and seems to respond correctly.  However, 
> on a actual iPhone, we get the browserDocumentLoadFailed with the error "The 
> operation couldn't be completed. (NSUELErrorDomain error -999).
> 
> Anyone have any advice on this issue?
> 
> ___
> use-livecode mailing list
> use-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


Signing With Apple on iOS Woes

2022-03-28 Thread Dan Friedman via use-livecode
I am trying to user a browser widget to do a login with Apple.  When I load my 
page (that redirects to apple with the appropriate keys) on my desktop (in the 
IDE) it works perfect!   When I load the URL in the iOS Simulator, I get a 
browserDocumentLoadFailed message and the error is "navigation request 
cancelled" and then the page loads and seems to respond correctly.  However, on 
a actual iPhone, we get the browserDocumentLoadFailed with the error "The 
operation couldn't be completed. (NSUELErrorDomain error -999).

Anyone have any advice on this issue?

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


FW: [GolfDay - The Premiere Golf Course Guide] Comment: "Phil Deserves a Pass"

2022-03-28 Thread Ralph DiMola via use-livecode
This look good to me?

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net
Phone: 518-636-3998 Ex:11
Cell: 518-796-9332


-Original Message-
From: cybersport [mailto:wordpr...@golfday.us] 
Sent: Friday, March 25, 2022 8:55 AM
To: rdim...@evergreeninfo.net
Subject: [GolfDay - The Premiere Golf Course Guide] Comment: "Phil Deserves a 
Pass"

New comment on your post "Phil Deserves a Pass"
Author: cybersport (IP address: 71.185.3.149, 
static-71-185-3-149.phlapa.fios.verizon.net)
Email: writerr...@zohomail.com
URL: 
Comment: 
He was  not off the record talking to Shipnunck. He was bering interviewed for 
a book.  That's not off the record. For all the good things he has done the was 
a major screwup on his part and the criticism he received was deserved.

You can see all comments on this post here:
https://golfday.us/blog/phil-deserves-a-pass/#comments

Permalink: https://golfday.us/blog/phil-deserves-a-pass/#comment-6342
Trash it: 
https://golfday.us/blog/wp-admin/comment.php?action=trash=6342#wpbody-content
Spam it: 
https://golfday.us/blog/wp-admin/comment.php?action=spam=6342#wpbody-content


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