
11-16-2006, 12:09 AM
|
 |
|
|
Join Date: Aug 2006
Location: Planet Earth
Posts: 440
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by syrus.xl
I assume from the error message you do not have the vBa CMPS installed in the forum 'ROOT'. This is why this message will appear, since it uses a relative path to find the flashobject.js and swf files.
The easiest way around this issue is to change this line:
Code:
<script type="text/javascript" src="flashobject.js"></script>
to this:
Code:
<script type="text/javascript" src="http://www.mydomain.com/forum_name/flashobject.js"></script>
And also this line:
Code:
var fo = new FlashObject("xeon_mp3_beta.swf", "xeon_player", "450", "400", "8,0,0,0", "#f7f8fa");
to this:
Code:
var fo = new FlashObject("http://www.mydomain.com/forum_name/xeon_mp3_beta.swf", "xeon_player", "450", "400", "8,0,0,0", "#f7f8fa");
Now both lines are absolute urls and should cause no problems.
|
That work but the problem is my playlists are not on the radio. what I did was I replaced ]<script type="text/javascript" src="http://www.mydomain.com/forum_name/flashobject.js"></script] to the name of my the name of my domain which is greekrealm.com/forum/flash ect... I removed the _name after forum that is the only way it showed up. But like I said no playlists...
|