Results 1 to 10 of 10
-
9th Apr 2011, 05:10 PM #1OPSuper Member
Replace pngs/gifs with swfs?
Hi, when I am trying to replace images such as my logo on my site with a swf image it doesn't work it just throws random errors and loading issues at me, does anyone know how to make it work?
I'm good at coding in vb 3 but I am using vb 4 now and everythings changed in it's locations.Sp32 Reviewed by Sp32 on . Replace pngs/gifs with swfs? Hi, when I am trying to replace images such as my logo on my site with a swf image it doesn't work it just throws random errors and loading issues at me, does anyone know how to make it work? I'm good at coding in vb 3 but I am using vb 4 now and everythings changed in it's locations. Rating: 5
So kiss me and smile for me, say that you'll wait for me <'3
-
9th Apr 2011, 05:11 PM #2Member
You can't just replace it.. You gotta embed that .swf..
-
9th Apr 2011, 05:14 PM #3MemberWebsite's:
RohitCreations.com ThemeOrbit.com PaypalWordpress.com BlackMetal.co
-
9th Apr 2011, 05:15 PM #4MemberWebsite's:
EastsideHosting.com MediaONAIR.com ImgWiz.com cPadmin.net EastsidePCWorks.com HostedTalk.comI prefer images or flash, just makes the site load slower.
and if I can use CSS instead of images than I use that instead.
Well there maybe some flash players out there that can read a local/remote image defined in a XML/TEXT file, but the the code will still have to be embedded.EastsideHosting - (Web Hosting, Proxy Hosting, Reseller Program)
MediaONAIR - (SHOUTcast Servers, ICEcast Servers, Reseller Program)
Server Administrator - (Dedicated Servers, VPS Management, One Time Services)
ImgWiz - (Free Image Hosting)
-
9th Apr 2011, 05:16 PM #5OPSuper Member
Thanks Cory but that was kind of unrelated to my question, I have the automatic code what gets produced by Flash when you publish the image but I am unsure exactly where to embed it. I'm also assuming I have way too much code?
Code:<head> <title>Untitled-1</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style type="text/css" media="screen"> html, body { height:100%; background-color: #ffffff;} body { margin:0; padding:0; overflow:hidden; } #flashContent { width:100%; height:100%; } </style> </head> <body> <div id="flashContent"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="652" height="113" id="Untitled-1" align="middle"> <param name="movie" value="Untitled-1.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="play" value="true" /> <param name="loop" value="true" /> <param name="wmode" value="window" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowScriptAccess" value="sameDomain" /> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="Untitled-1.swf" width="652" height="113"> <param name="movie" value="Untitled-1.swf" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="play" value="true" /> <param name="loop" value="true" /> <param name="wmode" value="window" /> <param name="scale" value="showall" /> <param name="menu" value="true" /> <param name="devicefont" value="false" /> <param name="salign" value="" /> <param name="allowScriptAccess" value="sameDomain" /> <!--<![endif]--> <a href="http://www.adobe.com/go/getflash"> <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /> </a> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> </body> </html>
So kiss me and smile for me, say that you'll wait for me <'3
-
9th Apr 2011, 05:22 PM #6MemberWebsite's:
EastsideHosting.com MediaONAIR.com ImgWiz.com cPadmin.net EastsidePCWorks.com HostedTalk.comTry:
Styles & Templates -> Style Manager -> Common Templates
Yeah, you don't need all that code;EastsideHosting - (Web Hosting, Proxy Hosting, Reseller Program)
MediaONAIR - (SHOUTcast Servers, ICEcast Servers, Reseller Program)
Server Administrator - (Dedicated Servers, VPS Management, One Time Services)
ImgWiz - (Free Image Hosting)
-
9th Apr 2011, 05:30 PM #7OPSuper Member
Thanks Cory but I'm still unsure on how to do it.
So kiss me and smile for me, say that you'll wait for me <'3
-
9th Apr 2011, 06:03 PM #8MemberWebsite's:
EastsideHosting.com MediaONAIR.com ImgWiz.com cPadmin.net EastsidePCWorks.com HostedTalk.comStyles & Templates -> Style Manager -> Common Templates
Goto, header
Find:
PHP Code:<div><a name="top" href="{vb:raw vboptions.forumhome}.php{vb:raw session.sessionurl_q}" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a></div>
PHP Code:<style type="text/css" media="screen">
#flashContent { width:100%; height:100%; }
</style>
<div id="flashContent">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="652" height="113" id="Untitled-1" align="middle">
<param name="movie" value="Untitled-1.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="play" value="true" />
<param name="loop" value="true" />
<param name="wmode" value="window" />
<param name="scale" value="showall" />
<param name="menu" value="true" />
<param name="devicefont" value="false" />
<param name="salign" value="" />
<param name="allowScriptAccess" value="sameDomain" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="Untitled-1.swf" width="652" height="113">
<param name="movie" value="Untitled-1.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="play" value="true" />
<param name="loop" value="true" />
<param name="wmode" value="window" />
<param name="scale" value="showall" />
<param name="menu" value="true" />
<param name="devicefont" value="false" />
<param name="salign" value="" />
<param name="allowScriptAccess" value="sameDomain" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflash">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
EastsideHosting - (Web Hosting, Proxy Hosting, Reseller Program)
MediaONAIR - (SHOUTcast Servers, ICEcast Servers, Reseller Program)
Server Administrator - (Dedicated Servers, VPS Management, One Time Services)
ImgWiz - (Free Image Hosting)
-
9th Apr 2011, 06:58 PM #9OPSuper Member
Thanks Cory that worked perfectly +rep'd
So kiss me and smile for me, say that you'll wait for me <'3
-
9th Apr 2011, 07:06 PM #10MemberWebsite's:
expl0its.org warezhd.com amaderforum.infonice one
http://expl0its.org
3* - Katzddl | 3* - Hotfiledownloads | 2* - LinkPlz | 2* - AtomiW | 2* Nexus | 2*- Zunox
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Why are sites like 4gifs.com and senorgif.com able to watermark gifs with their domain?
By GBot in forum Legal IssuesReplies: 0Last Post: 19th Dec 2013, 10:50 AM -
Create GIFs with Android
By Ladybbird1 in forum General DiscussionReplies: 1Last Post: 25th May 2012, 10:20 PM -
ITT: Post gifs you've made
By Phamous in forum General DiscussionReplies: 1Last Post: 6th May 2012, 09:00 AM -
Gifs plz?
By thecompgame in forum Feedback and SuggestionsReplies: 7Last Post: 7th Sep 2011, 05:30 AM -
Image Host who support gifs greater than 5mb
By kuyo in forum Webmaster DiscussionReplies: 7Last Post: 16th Apr 2011, 06:29 PM
themaManager - edit and manage...
Version 4.04 released. Open older version (or...