| Author |
Message |
rabbit
Guest
|
Posted:
Thu Oct 20, 2005 8:23 am Post subject:
How to dissable the Windows Media Property. |
|
|
Does any one know how to dissable the Property on the Windows Media via html
code.
I know how to display it and play the media but I am trying to avoid
user/surfer get the media by looking at the window media property which gives
the whole url of the media which is playing.
TIA
|
|
| Back to top |
|
 |
Sebastian Gottschalk
Guest
|
Posted:
Thu Oct 20, 2005 8:30 am Post subject:
Re: How to dissable the Windows Media Property. |
|
|
rabbit wrote:
| Quote: | Does any one know how to dissable the Property on the Windows Media via html
code.
I know how to display it and play the media but I am trying to avoid
user/surfer get the media by looking at the window media property which gives
the whole url of the media which is playing.
|
And what blocks them from displaying the HTML source text?
And what stops them from simply recording the playback?
--
Dieser Schrieb stellt eine private Meinungsäußerung des Verfassers im
Sinne der gesetzlich garantierten Meinungsfreiheit dar. Wem das nicht
passt, der wende sich an das Bundesverfassungsgericht. Viel Erfolg!
Key: 0xA0E28D18 FP: 83AE 1136 1E2B 9767 8FB2 7594 4128 1A9E A0E2 8D18 |
|
| Back to top |
|
 |
Neil Smith [MVP Digital M
Guest
|
Posted:
Thu Oct 20, 2005 12:30 pm Post subject:
Re: How to dissable the Windows Media Property. |
|
|
On Wed, 19 Oct 2005 20:23:02 -0700, rabbit
<rabbit@discussions.microsoft.com> wrote:
| Quote: | Does any one know how to dissable the Property on the Windows Media via html
code.
|
Sure - to the <object /> tag, add
<param name="enableContextMenu" value="false" />
To the embed tag (if used) add enableContextMenu="0"
| Quote: | I know how to display it and play the media but I am trying to avoid
user/surfer get the media by looking at the window media property which gives
the whole url of the media which is playing.
|
You can't, as Sebastian said - any sufficiently enterprising user
(e.g. me) can look at the HTML code, or their web cache, or even use
Etherial to sniff the packets. You can make it harder but you
definitely can't prevent them seeing this information (and don't get
me started on server side redirects !)
Cheers - Neil
|
|
| Back to top |
|
 |
|
|
|
|