Inman Flash Replacement and print stylesheets

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • la_haine

    Inman Flash Replacement and print stylesheets

    Hello,

    Just a quick question; I'm using the Inman Flash Replacement technique
    on my website for headlines, but when it comes to printing, Opera
    doesn't print the headlines at all and IE prints the flash image -
    what I'd like is for just the plain text to be printed, and there be
    no flash images at all on the printed copy.

    Is there anybody else who's using this technique and knows of a solution?

    --
    'I contend that we are both atheists. I just believe in one fewer god than
    you do. When you understand why you dismiss all the other possible gods, you
    will understand why I dismiss yours.'
    - Stephen Roberts
  • Clayton L. Scott

    #2
    Re: Inman Flash Replacement and print stylesheets

    la_haine <p.haine@kent.a c.uk> wrote:[color=blue]
    > Hello,[/color]
    [color=blue]
    > Just a quick question; I'm using the Inman Flash Replacement technique
    > on my website for headlines, but when it comes to printing, Opera
    > doesn't print the headlines at all and IE prints the flash image -
    > what I'd like is for just the plain text to be printed, and there be
    > no flash images at all on the printed copy.[/color]
    [color=blue]
    > Is there anybody else who's using this technique and knows of a solution?[/color]

    Create another stylesheet and link it in your page with a media attribute
    of 'print'?

    Clayton

    Comment

    • la_haine

      #3
      Re: Inman Flash Replacement and print stylesheets

      "Clayton L. Scott" <tex@engsoc.org > wrote in news:cffulh$dml $1
      @driftwood.ccs. carleton.ca:
      [color=blue][color=green]
      >> Is there anybody else who's using this technique and knows of a solution?[/color]
      >
      > Create another stylesheet and link it in your page with a media attribute
      > of 'print'?[/color]

      Yes, sorry, should have mentioned that - I'm already using a print
      stylesheet. The problem is that when printing, browsers are displaying the
      Flash text (or not displaying it at all) instead of using the plain text
      that's available.

      --
      'Advertising has us chasing cars and clothes, working jobs we hate, so we can
      buy shit we don't need.'
      - Tyler Durden, Fight Club

      Comment

      • Clayton L. Scott

        #4
        Re: Inman Flash Replacement and print stylesheets

        la_haine <p.haine@kent.a c.uk> wrote:[color=blue]
        > "Clayton L. Scott" <tex@engsoc.org > wrote in news:cffulh$dml $1
        > @driftwood.ccs. carleton.ca:[/color]
        [color=blue][color=green][color=darkred]
        > >> Is there anybody else who's using this technique and knows of a solution?[/color]
        > >
        > > Create another stylesheet and link it in your page with a media attribute
        > > of 'print'?[/color][/color]
        [color=blue]
        > Yes, sorry, should have mentioned that - I'm already using a print
        > stylesheet. The problem is that when printing, browsers are displaying the
        > Flash text (or not displaying it at all) instead of using the plain text
        > that's available.[/color]

        You could always fight Javascript with Javascript:

        From another post today (I forgot to copy the author's name):
        Right, you're not changing the rules, you're overriding them by setting a
        property directly.

        You could try to use the CSS-DOM
        (http://www.w3.org/TR/DOM-Level-2-Style/) to change the rule for only one
        particular medium.

        Or, if you have an element somewhere that is affected by a static property
        that you've made dependent on the medium, you could check
        the value of that property to determine what the actual medium is, and
        conditionally change your css attributes based on that.


        Clayton

        Comment

        Working...