Welcome to MacForumz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

Leopard, Firefox & Applescript

 
   Macintosh computer (Home) -> Apple Scripts RSS
Related Topics:
New to Applescript - Hello, I'm brand new to - I've done a lot with VBS but never touched Are there some good script online? Editors? Manuals? Any help will be greatly TIA, Bill

Applescript RSS - Is there any way to acquire an RSS feed using I'd like to be able to specify the RSS URL, then have consume the most recent 5 entries. Thanks, A

applescript for search with google - Hello, I'm a newbie to Macs and Mac In TextEdit, under there's an item called Search with Google. Does anyone know whether this is an and if so, what it says? I'm hoping to adapt it to another text editing..

Can Applescript tell if computer is online? - Hi there, I would like to write a The script would trigger itself every few hours and if the computer is not connected to the Internet I would like it to execute some code. I have a bit of with AS but have no idea how..

Is there a quick reference to applescript - hello, i'm looking for a reference to i have read for absolute (bert but it was too less in it. what i want is a more approach. i want to know about ALL types and ALL
Next:  Apple Scripts: Applescript RSS  
Author Message
The Wolf

External


Since: Feb 05, 2007
Posts: 50



(Msg. 1) Posted: Wed Oct 31, 2007 4:40 pm
Post subject: Leopard, Firefox & Applescript
Archived from groups: alt>comp>lang>applescript (more info?)

Can anyone tell me why a script I wrote to log in to my bank no longer works
in Firefox since I installed Leopard?

Can it by fixed?
Thanks

 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
Jerry Kindall

External


Since: Jul 09, 2003
Posts: 922



(Msg. 2) Posted: Wed Oct 31, 2007 7:35 pm
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <C34E6064.1D046%elvisp@compuserve.com>, The Wolf
<elvisp.RemoveThis@compuserve.com> wrote:

> Can anyone tell me why a script I wrote to log in to my bank no longer works
> in Firefox since I installed Leopard?

Hard to say without seeing the script.

> Can it by fixed?

Probably.

--
Jerry Kindall, Seattle, WA <http://www.jerrykindall.com/>

Send only plain text messages under 32K to the Reply-To address.
This mailbox is filtered aggressively to thwart spam and viruses.

 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
The Wolf

External


Since: Feb 05, 2007
Posts: 50



(Msg. 3) Posted: Thu Nov 01, 2007 6:15 am
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

tell application "Firefox"
Get URL "http://www.com/"
end tell
tell application "System Events"
tell process "Firefox"
set frontmost to true
delay 5
keystroke "xxx"
keystroke (ASCII character 13)
delay 10
keystroke (ASCII character 13)
end tell
end tell

Name of bank and password set to generic



On 10/31/07 7:35 PM, in article
311020071935155078%jerrykindall@nospam.invalid, "Jerry Kindall"
<jerrykindall DeleteThis @nospam.invalid> wrote:

> In article <C34E6064.1D046%elvisp@compuserve.com>, The Wolf
> <elvisp DeleteThis @compuserve.com> wrote:
>
>> Can anyone tell me why a script I wrote to log in to my bank no longer works
>> in Firefox since I installed Leopard?
>
> Hard to say without seeing the script.
>
>> Can it by fixed?
>
> Probably.
 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
Dave Balderstone

External


Since: Mar 21, 2006
Posts: 2689



(Msg. 4) Posted: Thu Nov 01, 2007 8:23 am
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Imported from groups: per prev. post (more info?)

Back to top
Login to vote
has

External


Since: Nov 01, 2007
Posts: 6



(Msg. 5) Posted: Thu Nov 01, 2007 12:28 pm
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On 1 Nov, 13:15, The Wolf <elv....DeleteThis@compuserve.com> wrote:

> Name of bank and password set to generic

Bummer.
 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
Patrick Stadelmann

External


Since: Nov 12, 2003
Posts: 358



(Msg. 6) Posted: Thu Nov 01, 2007 4:02 pm
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <011120070823454594%dave@N_O_T_T_H_I_Sbalderstone.ca>,
Dave Balderstone <dave RemoveThis @N_O_T_T_H_I_Sbalderstone.ca> wrote:

> In article <C34F1F86.1D19A%elvisp@compuserve.com>, The Wolf
> <elvisp RemoveThis @compuserve.com> wrote:
>
> > tell application "Firefox"
> > Get URL "http://www.com/"
> > end tell
> > tell application "System Events"
> > tell process "Firefox"
> > set frontmost to true
> > delay 5
> > keystroke "xxx"
> > keystroke (ASCII character 13)
> > delay 10
> > keystroke (ASCII character 13)
> > end tell
> > end tell
> >
> > Name of bank and password set to generic
>
>
> What error are you seeing?
>
> Is the cursor actually in the first field you want to enter text into?

Note that "ASCII character" is obsolete in Leopard due to full Unicode
support in the language. See the new AppleScrit release note. I don't
know if it is not valid anymore or just not recommended.

Anyway, storing a bank account password in an AppleScript is not very
secure.

Patrick
--
Patrick Stadelmann <Patrick.Stadelmann RemoveThis @unine.ch>
 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
Martin Schlueter

External


Since: Sep 13, 2005
Posts: 7



(Msg. 7) Posted: Thu Nov 01, 2007 10:31 pm
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The Wolf <elvisp.RemoveThis@compuserve.com> schrieb:

> tell application "Firefox"
> Get URL "http://www.com/"
> end tell
> tell application "System Events"
> tell process "Firefox"
> set frontmost to true
> delay 5
> keystroke "xxx"
> keystroke (ASCII character 13)
> delay 10
> keystroke (ASCII character 13)
> end tell
> end tell

I hope you know that to get this to work, you have to check the box
that says "Enable access for assistive devices" in the Universal
Access preferences pane.

Maybe the upgrade to Leopard has changed this setting.

ciao

Martin
 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
The Wolf

External


Since: Feb 05, 2007
Posts: 50



(Msg. 8) Posted: Thu Nov 01, 2007 11:08 pm
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Martin,

Thank you, that seems to have fixed things.

Something changed between Tiger & Leopard.


On 11/1/07 3:31 PM, in article
F743E199-0D0B-4F62-ABB1-E3888B4DB3E9%schlueter@gmx.org, "Martin Schlueter"
<schlueter DeleteThis @gmx.org> wrote:

> The Wolf <elvisp DeleteThis @compuserve.com> schrieb:
>
>> tell application "Firefox"
>> Get URL "http://www.com/"
>> end tell
>> tell application "System Events"
>> tell process "Firefox"
>> set frontmost to true
>> delay 5
>> keystroke "xxx"
>> keystroke (ASCII character 13)
>> delay 10
>> keystroke (ASCII character 13)
>> end tell
>> end tell
>
> I hope you know that to get this to work, you have to check the box
> that says "Enable access for assistive devices" in the Universal
> Access preferences pane.
>
> Maybe the upgrade to Leopard has changed this setting.
>
> ciao
>
> Martin
>
>
 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
The Wolf

External


Since: Feb 05, 2007
Posts: 50



(Msg. 9) Posted: Fri Nov 02, 2007 5:37 am
Post subject: Re: Leopard, Firefox & Applescript [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Firefox just updated and now it's not working again?

Enable access for assistive devices" in the Universal
> Access preferences pane.
> is enabled.


On 11/1/07 3:31 PM, in article
F743E199-0D0B-4F62-ABB1-E3888B4DB3E9%schlueter@gmx.org, "Martin Schlueter"
<schlueter.RemoveThis@gmx.org> wrote:

> The Wolf <elvisp.RemoveThis@compuserve.com> schrieb:
>
>> tell application "Firefox"
>> Get URL "http://www.com/"
>> end tell
>> tell application "System Events"
>> tell process "Firefox"
>> set frontmost to true
>> delay 5
>> keystroke "xxx"
>> keystroke (ASCII character 13)
>> delay 10
>> keystroke (ASCII character 13)
>> end tell
>> end tell
>
> I hope you know that to get this to work, you have to check the box
> that says "Enable access for assistive devices" in the Universal
> Access preferences pane.
>
> Maybe the upgrade to Leopard has changed this setting.
>
> ciao
>
> Martin
>
>
 >> Stay informed about: Leopard, Firefox & Applescript 
Back to top
Login to vote
Display posts from previous:   
   Macintosh computer (Home) -> Apple Scripts All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]