Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Javascript > Real Player has gone mad

Reply
Thread Tools

Real Player has gone mad

 
 
dE|_
Guest
Posts: n/a
 
      10-02-2007
For months I have been happily using a downloaded JS file and inline script
to embed and control the parameters of SWF files which I use as mp3 players
with actionscript.

The last so.addParam controls the simple function auto-play; OFF but since
recent real player installations this has been taking over starting them all
off and even offering downloads.

This may be annoying for some writers but it is critical for the site I use
this on as some pages hold multiple SWF mp3 players- as many as 13, which
now all start together!

http://www.crackguitar.com/audio/loo...yourenemy.html

Just a drum machine loop, nothing nasty.

http://www.crackguitar.com/swfobject_1.4/swfobject.js

Is there a way to modify this to tell Real Player to keep off the stage?

Thanks in Advance,

Confused Del


 
Reply With Quote
 
 
 
 
David Mark
Guest
Posts: n/a
 
      10-02-2007
On Oct 1, 8:02 pm, "dE|_" <d...@crackguitar.com> wrote:
> For months I have been happily using a downloaded JS file and inline script
> to embed and control the parameters of SWF files which I use as mp3 players
> with actionscript.
>
> The last so.addParam controls the simple function auto-play; OFF but since


What so.addParam?

> recent real player installations this has been taking over starting them all
> off and even offering downloads.
>
> This may be annoying for some writers but it is critical for the site I use
> this on as some pages hold multiple SWF mp3 players- as many as 13, which
> now all start together!


Why are you using Flash to embed audio? Why not use object tags? And
why would you have 13 Flash movies on one page?! Sounds like bad luck
to me.

>
> http://www.crackguitar.com/audio/loo...yourenemy.html
>
> Just a drum machine loop, nothing nasty.
>
> http://www.crackguitar.com/swfobject_1.4/swfobject.js


I recognize that script. It is another reason not to use Flash on the
Web. It is better than Adobe's own deployment kit, but that isn't
saying much.

>
> Is there a way to modify this to tell Real Player to keep off the stage?
>


Modify the script? I don't see how that will help. Try uninstalling
RealPlayer and see if the problem goes away. I suspect the root of
the problem is in the Flash app.

 
Reply With Quote
 
 
 
 
dE|_
Guest
Posts: n/a
 
      10-02-2007

"David Mark" <> wrote in message
news: ups.com...
> On Oct 1, 8:02 pm, "dE|_" <d...@crackguitar.com> wrote:
>> For months I have been happily using a downloaded JS file and inline
>> script
>> to embed and control the parameters of SWF files which I use as mp3
>> players
>> with actionscript.
>>
>> The last so.addParam controls the simple function auto-play; OFF but
>> since

>
> What so.addParam?


so.addParam("quality", "best");
so.addParam("loop", "false");
so.addParam("play","false");
so.write("flashcontent");

is the script's version of the object tags
<param name="quality" value="best" />
<param name="loop" value="false" />
<param name="play" value="false" />

>> recent real player installations this has been taking over starting them
>> all
>> off and even offering downloads.
>>
>> This may be annoying for some writers but it is critical for the site I
>> use
>> this on as some pages hold multiple SWF mp3 players- as many as 13, which
>> now all start together!

>
> Why are you using Flash to embed audio? Why not use object tags? And
> why would you have 13 Flash movies on one page?! Sounds like bad luck
> to me.


Flash to embed audio as it was and should bypass all other variable media
players, keeping the page to itself rather than another unknown app popping
up on the side.

Flash Object tags don't validate and my CV boasts 100% validation.

13 'movies' one one page; www.crackguitar.com/recordings.html a mass of
recordings by guitar students of mine. Even if I seperated the bands I would
still want more than one song on each page.

>>
>> http://www.crackguitar.com/audio/loo...yourenemy.html
>>
>> Just a drum machine loop, nothing nasty.
>>
>> http://www.crackguitar.com/swfobject_1.4/swfobject.js

>
> I recognize that script. It is another reason not to use Flash on the
> Web. It is better than Adobe's own deployment kit, but that isn't
> saying much.
>
>>
>> Is there a way to modify this to tell Real Player to keep off the stage?
>>

>
> Modify the script? I don't see how that will help. Try uninstalling
> RealPlayer and see if the problem goes away. I suspect the root of
> the problem is in the Flash app.


I know Real Player is the fault, I had to install update to watch a wedding
video last week and now it's gone wrong. I can't tell my visitors to
uninstall RealPlayer- according to my stats the 2 most visited pages are
ones that hold 6 and 13 mp3s.

Maybe 'Modify' was not the correct term (I'm not a script ace), telling a
movie not to start until you click a button is very simple in the program,
object and script even for me.
I suppose I need a script that tells RealPlayer to pss off.

Del


 
Reply With Quote
 
David Mark
Guest
Posts: n/a
 
      10-02-2007
On Oct 2, 6:20 am, "dE|_" <d...@crackguitar.com> wrote:
> "David Mark" <dmark.cins...@gmail.com> wrote in message
>
> news: ups.com...
>
> > On Oct 1, 8:02 pm, "dE|_" <d...@crackguitar.com> wrote:
> >> For months I have been happily using a downloaded JS file and inline
> >> script
> >> to embed and control the parameters of SWF files which I use as mp3
> >> players
> >> with actionscript.

>
> >> The last so.addParam controls the simple function auto-play; OFF but
> >> since

>
> > What so.addParam?

>
> so.addParam("quality", "best");
> so.addParam("loop", "false");
> so.addParam("play","false");
> so.write("flashcontent");
>
> is the script's version of the object tags
> <param name="quality" value="best" />
> <param name="loop" value="false" />
> <param name="play" value="false" />


I doubt the script writes that. SWFObject is not compatible with
XHTML.

>
> >> recent real player installations this has been taking over starting them
> >> all
> >> off and even offering downloads.

>
> >> This may be annoying for some writers but it is critical for the site I
> >> use
> >> this on as some pages hold multiple SWF mp3 players- as many as 13, which
> >> now all start together!

>
> > Why are you using Flash to embed audio? Why not use object tags? And
> > why would you have 13 Flash movies on one page?! Sounds like bad luck
> > to me.

>
> Flash to embed audio as it was and should bypass all other variable media
> players, keeping the page to itself rather than another unknown app popping
> up on the side.


What do you mean by popping up on the side? And it sounds like the
Flash app is somehow tangled up with RealPlayer, so it is not an
island.

>
> Flash Object tags don't validate and my CV boasts 100% validation.
>


Flash object tags are no different than any other object tags. They
validate if they are marked up in valid fashion. You are thinking of
embed tags, which is what most Flash developers use.

> 13 'movies' one one page;www.crackguitar.com/recordings.htmla mass of
> recordings by guitar students of mine. Even if I seperated the bands I would
> still want more than one song on each page.
>
>
>
>
>
>
>
> >>http://www.crackguitar.com/audio/loo...yourenemy.html

>
> >> Just a drum machine loop, nothing nasty.

>
> >>http://www.crackguitar.com/swfobject_1.4/swfobject.js

>
> > I recognize that script. It is another reason not to use Flash on the
> > Web. It is better than Adobe's own deployment kit, but that isn't
> > saying much.

>
> >> Is there a way to modify this to tell Real Player to keep off the stage?

>
> > Modify the script? I don't see how that will help. Try uninstalling
> > RealPlayer and see if the problem goes away. I suspect the root of
> > the problem is in the Flash app.

>
> I know Real Player is the fault, I had to install update to watch a wedding
> video last week and now it's gone wrong. I can't tell my visitors to
> uninstall RealPlayer- according to my stats the 2 most visited pages are
> ones that hold 6 and 13 mp3s.


I didn't say to tell your visitors to uninstall it. You should
uninstall it to determine if it is the cause of the problem.

>
> Maybe 'Modify' was not the correct term (I'm not a script ace), telling a
> movie not to start until you click a button is very simple in the program,
> object and script even for me.


I don't know what you mean by that, but modifying the JavaScript that
writes the Flash tags is not going to help with this problem.

> I suppose I need a script that tells RealPlayer to pss off.


There is no such thing. You should tell it to Adobe instead.

 
Reply With Quote
 
dE|_
Guest
Posts: n/a
 
      10-02-2007

"David Mark" wrote

>> so.addParam("quality", "best");
>> so.addParam("loop", "false");
>> so.addParam("play","false");
>> so.write("flashcontent");
>>
>> is the script's version of the object tags
>> <param name="quality" value="best" />
>> <param name="loop" value="false" />
>> <param name="play" value="false" />

>
> I doubt the script writes that. SWFObject is not compatible with
> XHTML.


When I briefly showed it to a previous housemate who writes in everything
from Java to C# he described it as a script that writes the HTML for you but
I haven't got hold of him yet.
>
>>
>> >> recent real player installations this has been taking over starting
>> >> them
>> >> all
>> >> off and even offering downloads.

>>
>> >> This may be annoying for some writers but it is critical for the site
>> >> I
>> >> use
>> >> this on as some pages hold multiple SWF mp3 players- as many as 13,
>> >> which
>> >> now all start together!

>>
>> > Why are you using Flash to embed audio? Why not use object tags? And
>> > why would you have 13 Flash movies on one page?! Sounds like bad luck
>> > to me.

>>
>> Flash to embed audio as it was and should bypass all other variable media
>> players, keeping the page to itself rather than another unknown app
>> popping
>> up on the side.

>
> What do you mean by popping up on the side? And it sounds like the
> Flash app is somehow tangled up with RealPlayer, so it is not an
> island.


If you just <a href="xxx.mp3" >link to an mp3 it gets opened by the visitors
default 3rd party media player in a second window, I don't want distraction
from the page.
What is worst was a previous RealPlayer went forward to a new blank page
expecting a video but only a tiny timeline!

See what I mean? If you set Flash as the scripted, embedded media player
then Flash was and should still be the only app that can play it.

Oh yeah, you don't need a streaming server, Flash has a simulated streaming
where it http's it it little bits.

>
>>
>> Flash Object tags don't validate and my CV boasts 100% validation.
>>

>
> Flash object tags are no different than any other object tags. They
> validate if they are marked up in valid fashion. You are thinking of
> embed tags, which is what most Flash developers use.


Cross-Browser issues: Firefox etc doesn't recognise <object> so you have to
use <embed> as well which doesn't validate.

>> I know Real Player is the fault, I had to install update to watch a
>> wedding
>> video last week and now it's gone wrong. I can't tell my visitors to
>> uninstall RealPlayer- according to my stats the 2 most visited pages are
>> ones that hold 6 and 13 mp3s.

>
> I didn't say to tell your visitors to uninstall it. You should
> uninstall it to determine if it is the cause of the problem.


Uninstalled, problem solved.

>> Maybe 'Modify' was not the correct term (I'm not a script ace), telling a
>> movie not to start until you click a button is very simple in the
>> program,
>> object and script even for me.

>
> I don't know what you mean by that, but modifying the JavaScript that
> writes the Flash tags is not going to help with this problem.
>
>> I suppose I need a script that tells RealPlayer to pss off.

>
> There is no such thing. You should tell it to Adobe instead.


Well, I'm going to try standard scriptless versions with RP installed, and
if the problem continues I may have to leave the big warning signs at the
top of the music pages.

I hope you don't think I am ignoring you but using Flash as a media player
(should) gives (gave) you so much more control over your pages with no need
for a streamer.

Del

PS even YouTube are using Flash as video players but these are set to start
auto.
http://www.youtube.com/watch?v=arWHSC3gQkA Good one


 
Reply With Quote
 
dE|_
Guest
Posts: n/a
 
      10-02-2007

"David Mark" wrote wrote in message
>>
>> news: ups.com...


>> > Why are you using Flash to embed audio? Why not use object tags? And
>> > why would you have 13 Flash movies on one page?! Sounds like bad luck
>> > to me.

>>
>> Flash to embed audio as it was and should bypass all other variable media
>> players, keeping the page to itself rather than another unknown app
>> popping
>> up on the side.

>
> What do you mean by popping up on the side? And it sounds like the
> Flash app is somehow tangled up with RealPlayer, so it is not an
> island.


Sod it, I'm going to keep all the scripting as it is and just put each of
the movies in individual popups. They're each in a tiny iframe at the moment
to make the pages more manageable so it won't be much work.

Del


 
Reply With Quote
 
dE|_
Guest
Posts: n/a
 
      10-02-2007

"David Mark" <> wrote in message
news: ups.com...
> On Oct 1, 8:02 pm, "dE|_" <d...@crackguitar.com> wrote:
>> For months I have been happily using a downloaded JS file and inline
>> script
>> to embed and control the parameters of SWF files which I use as mp3
>> players
>> with actionscript.
>>
>> The last so.addParam controls the simple function auto-play; OFF but
>> since

>
> What so.addParam?
>
>> recent real player installations this has been taking over starting them
>> all
>> off and even offering downloads.
>>
>> This may be annoying for some writers but it is critical for the site I
>> use
>> this on as some pages hold multiple SWF mp3 players- as many as 13, which
>> now all start together!

>
> Why are you using Flash to embed audio? Why not use object tags? And
> why would you have 13 Flash movies on one page?! Sounds like bad luck
> to me.
>
>>
>> http://www.crackguitar.com/audio/loo...yourenemy.html
>>
>> Just a drum machine loop, nothing nasty.
>>
>> http://www.crackguitar.com/swfobject_1.4/swfobject.js

>
> I recognize that script. It is another reason not to use Flash on the
> Web. It is better than Adobe's own deployment kit, but that isn't
> saying much.
>
>>
>> Is there a way to modify this to tell Real Player to keep off the stage?
>>

>
> Modify the script? I don't see how that will help. Try uninstalling
> RealPlayer and see if the problem goes away. I suspect the root of
> the problem is in the Flash app.


Tested traditional XHTML <object> & <embed> version using machine with RP
still on it... RP still wants to take over the world like he's been drinking
Stella so it is not a swfobject.js issue.
Flash mp3 player's been working fine for probably 9 months until a RP
upgrade last week[1] and now it is overriding basic and vital actionscript:
DON'T START UNTIL TOLD TO.

Wonder what Adobe think to that?...

Del

[1] I'm sure I had it already, no reported problems from visitors or anybody
who has music on there.


 
Reply With Quote
 
:Jerry:
Guest
Posts: n/a
 
      10-02-2007

"dE|_" <del_@crackguitar.com> wrote in message
news9rMi.37667$...
>
> "David Mark" wrote wrote in message
>>>
>>> news: ups.com...

>
>>> > Why are you using Flash to embed audio? Why not use object
>>> > tags? And
>>> > why would you have 13 Flash movies on one page?! Sounds like
>>> > bad luck
>>> > to me.
>>>
>>> Flash to embed audio as it was and should bypass all other
>>> variable media
>>> players, keeping the page to itself rather than another unknown
>>> app popping
>>> up on the side.

>>
>> What do you mean by popping up on the side? And it sounds like the
>> Flash app is somehow tangled up with RealPlayer, so it is not an
>> island.

>
> Sod it, I'm going to keep all the scripting as it is and just put
> each of the movies in individual popups. They're each in a tiny
> iframe at the moment to make the pages more manageable so it won't
> be much work.
>


Can't you have a list of URL's that load the page into a (single)
iframe, thus only the currently loaded page will be available to the
player IYSWIM?


 
Reply With Quote
 
Thomas 'PointedEars' Lahn
Guest
Posts: n/a
 
      10-02-2007
dE|_ wrote:
> Cross-Browser issues: Firefox etc doesn't recognise <object> so you have to
> use <embed> as well which doesn't validate.


Firefox of all browsers supports the `object' element best; you only have to
use it properly. As for other browsers, it is IE that makes the exception
of erroneously interpreting the content of the element if it has a media
object even if the outer media object type is supported.


PointedEars
--
var bugRiddenCrashPronePieceOfJunk = (
navigator.userAgent.indexOf('MSIE 5') != -1
&& navigator.userAgent.indexOf('Mac') != -1
) // Plone, register_function.js:16
 
Reply With Quote
 
dE|_
Guest
Posts: n/a
 
      10-02-2007

":Jerry:" <> wrote in message
news:470270d0$0$47161$ reenews.net...
>
> "dE|_" <del_@crackguitar.com> wrote in message
> news9rMi.37667$...
>>
>> "David Mark" wrote wrote in message
>>>>
>>>> news: ups.com...

>>
>>>> > Why are you using Flash to embed audio? Why not use object tags?
>>>> > And
>>>> > why would you have 13 Flash movies on one page?! Sounds like bad
>>>> > luck
>>>> > to me.
>>>>
>>>> Flash to embed audio as it was and should bypass all other variable
>>>> media
>>>> players, keeping the page to itself rather than another unknown app
>>>> popping
>>>> up on the side.
>>>
>>> What do you mean by popping up on the side? And it sounds like the
>>> Flash app is somehow tangled up with RealPlayer, so it is not an
>>> island.

>>
>> Sod it, I'm going to keep all the scripting as it is and just put each of
>> the movies in individual popups. They're each in a tiny iframe at the
>> moment to make the pages more manageable so it won't be much work.
>>

>
> Can't you have a list of URL's that load the page into a (single) iframe,
> thus only the currently loaded page will be available to the player
> IYSWIM?


Eh? I don't like swimming.

3 iframe example, please explain;
http://www.crackguitar.com/lessons/lessons_drums.html

Del


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Now I KNOW Sony has gone mad RichA Digital Photography 6 04-23-2011 07:54 AM
Re: Has McAfee Gone Mad? chuckcar Computer Support 2 07-21-2009 10:40 PM
Re: Has McAfee Gone Mad? Aardvark Computer Support 2 07-21-2009 02:06 PM
I's a Mad, Mad, Mad, Mad, Mad World new DVD? Michael Rogers DVD Video 3 01-11-2004 03:23 AM
NEW It's A Mad Mad Mad Mad World DVD! Peter Mason DVD Video 10 10-31-2003 07:35 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57