Scripting Mozilla

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • lvirden@yahoo.com

    Scripting Mozilla

    I've a personal application I would like to script, that would
    bring up a particular web page (which happens to have a Flash application
    on it), then every 15 minutes or so generate the equivalent of
    clicking on a button (causing the application to retrieve and display
    the latest info).

    Anyone know of any articles or howtos on the web for writing such an
    application?
    --
    <URL: http://purl.org/net/lvirden/ > <URL: http://wiki.tcl.tk/ >
    Even if explicitly stated to the contrary, nothing in this posting
    should be construed as representing my employer's opinions.
    <URL: mailto:lvirden@ yahoo.com > <URL: http://www.purl.org/NET/lvirden/ >
  • swp

    #2
    Re: Scripting Mozilla

    lvirden@yahoo.c om wrote in message news:<blcl61$3c $1@srv38.cas.or g>...[color=blue]
    > I've a personal application I would like to script, that would
    > bring up a particular web page (which happens to have a Flash application
    > on it), then every 15 minutes or so generate the equivalent of
    > clicking on a button (causing the application to retrieve and display
    > the latest info).
    >
    > Anyone know of any articles or howtos on the web for writing such an
    > application?[/color]

    the "refresh" meta tag should do this.
    <META HTTP-EQUIV="Refresh" CONTENT="900;UR L=whatever.html ">

    hope this helps,
    swp

    Comment

    • lvirden@yahoo.com

      #3
      Re: Scripting Mozilla


      According to swp <DSAsteve@aol.c om>:
      :lvirden@yahoo. com wrote in message news:<blcl61$3c $1@srv38.cas.or g>...
      :> clicking on a button (causing the application to retrieve and display
      :> the latest info).
      :>
      :> Anyone know of any articles or howtos on the web for writing such an
      :> application?
      :
      :the "refresh" meta tag should do this.
      :<META HTTP-EQUIV="Refresh" CONTENT="900;UR L=whatever.html ">

      In my specific case, the refresh won't do the job - a flash
      application button needs to be 'pressed'.

      So, is there a way via javascript to script interactions with flash
      applications?

      --
      <URL: http://purl.org/net/lvirden/ > <URL: http://wiki.tcl.tk/ >
      Even if explicitly stated to the contrary, nothing in this posting
      should be construed as representing my employer's opinions.
      <URL: mailto:lvirden@ yahoo.com > <URL: http://www.purl.org/NET/lvirden/ >

      Comment

      • W d'Anjos

        #4
        Re: Scripting Mozilla

        Try posting your message in the ActionScript Flash Support Forum:



        I hope this helps.

        Wagner

        lvirden@yahoo.c om wrote in message news:<blh558$jl t$1@srv38.cas.o rg>...[color=blue]
        > According to swp <DSAsteve@aol.c om>:
        > :lvirden@yahoo. com wrote in message news:<blcl61$3c $1@srv38.cas.or g>...
        > :> clicking on a button (causing the application to retrieve and display
        > :> the latest info).
        > :>
        > :> Anyone know of any articles or howtos on the web for writing such an
        > :> application?
        > :
        > :the "refresh" meta tag should do this.
        > :<META HTTP-EQUIV="Refresh" CONTENT="900;UR L=whatever.html ">
        >
        > In my specific case, the refresh won't do the job - a flash
        > application button needs to be 'pressed'.
        >
        > So, is there a way via javascript to script interactions with flash
        > applications?[/color]

        Comment

        Working...