I have had FLASH slideshows presenting on the main page in a html nugget for many months. It does not load itself on any other pages. I used to like that as I was slow loading anyway. But recently I got my load times down enough that I would like it show on all pages rather than having those empty spots. I suppose it has something to do with the .swf file and where it goes so all pages will see it?
Not sure what to do or where to look to get it going on everything.
http://rackjite.com/
JS nugget only presents on main page
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: JS nugget only presents on main page
Hi!
Your site is so full of flashs, videos and banners that I don't know which one you mean.
Please specifiy. Most surely you'll have a wrong SWF-Embed code that uses relative instead of aboluste filenames.
Regards,
Garvin
Your site is so full of flashs, videos and banners that I don't know which one you mean.
Please specifiy. Most surely you'll have a wrong SWF-Embed code that uses relative instead of aboluste filenames.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
I think thats it! I have hard link in there rather than a relative link!
Thats the hint I needed.
But the issue are the two slideshows at the top of each sidebar. Main page no problem, all other pages the nugget shows but not the flash. But I think you hit on it! Will get back later!
Btw.
In my faq I say...
This site is a multimedia enhanced meld between website and Blog.
As a text blog it got 50 a day and didnt grow for 8 months. When I redesigned it full of multimedia in June it has grown to 1500 day and is growing well. People dont read anymore, they watch.
Thanx
RJ
Thats the hint I needed.
But the issue are the two slideshows at the top of each sidebar. Main page no problem, all other pages the nugget shows but not the flash. But I think you hit on it! Will get back later!
Btw.
In my faq I say...
This site is a multimedia enhanced meld between website and Blog.
As a text blog it got 50 a day and didnt grow for 8 months. When I redesigned it full of multimedia in June it has grown to 1500 day and is growing well. People dont read anymore, they watch.
Thanx
RJ
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
I still insist you use wrong linking.
Instead of:
try this:
Note the prefixing "/".
Regards,
Garvin
I still insist you use wrong linking.
Instead of:
Code: Select all
<object width="125" height="125" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" title="Flash" alt="Slide Show">
<param name="movie" value="slideshow.swf?file=slidelib3.xml" />
<param name="quality" value="high" /><embed width="125" height="125" src="slideshow.swf?file=slidelib3.xml" alt="Slide Show" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" /></object><br />
Code: Select all
<object width="125" height="125" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" title="Flash" alt="Slide Show">
<param name="movie" value="/slideshow.swf?file=slidelib3.xml" />
<param name="quality" value="high" /><embed width="125" height="125" src="/slideshow.swf?file=slidelib3.xml" alt="Slide Show" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" /></object><br />
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
And I insist that you got it exactly right!
Except one thing I figured out my own self.
That slash also has to go after FILE
src="/slideshow.swf?file=slidelib3.xml"
src="/slideshow.swf?file=/slidelib3.xml"
Wow! Been trying to figure that out for months!
Its also my big problem in Dreamweaver, just NOT GETTING the relative link stuff. If I did I could set DM up to be and auto FTP too. But I dont trust myself.
Thanx
RJ
Except one thing I figured out my own self.
That slash also has to go after FILE
src="/slideshow.swf?file=slidelib3.xml"
src="/slideshow.swf?file=/slidelib3.xml"
Wow! Been trying to figure that out for months!
Its also my big problem in Dreamweaver, just NOT GETTING the relative link stuff. If I did I could set DM up to be and auto FTP too. But I dont trust myself.
Thanx
RJ