X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Using Javascript & Flash File (https://forum.x-cart.com/showthread.php?t=42447)

tommyneel 09-18-2008 12:30 PM

Using Javascript & Flash File
 
I am trying to modify my file:

/customer/main/welcome.tpl

How do I use a simple javascript file or even embed a flash file. I have tried using both, both with the JS, I get an error. With the Flash, nothing shows up.

Is there a trick or can these just not be used?
Or, is there an easier way to use rotating images that are hyperlinked?

Thanks

Version 4.1.9
PHP 4.3.11

JWait 09-20-2008 12:47 PM

Re: Using Javascript & Flash File
 
Have you tried encasing your script in {literal} {/literal} tags?

tommyneel 09-29-2008 03:16 PM

Re: Using Javascript & Flash File
 
where exactly are these tags to be used? when i use them, anything after the opening literal tag does not show up on my page. does it go right before the <script> tag? where?

also, what should the path be for flash files? if i have the file in the folder /images, can i still point to it like i do with actual images using the

{$ImagesDir}

?

thanks and if anyone is using flash out there, please let me know how you're doing it.

much thanks.

ARW VISIONS 09-29-2008 03:53 PM

Re: Using Javascript & Flash File
 
check this out.

http://www.gotoandlearn.com/play?id=77

JWait 09-29-2008 05:28 PM

Re: Using Javascript & Flash File
 
Quote:

Originally Posted by tommyneel
where exactly are these tags to be used? when i use them, anything after the opening literal tag does not show up on my page. does it go right before the <script> tag? where?

also, what should the path be for flash files? if i have the file in the folder /images, can i still point to it like i do with actual images using the

{$ImagesDir}

?

thanks and if anyone is using flash out there, please let me know how you're doing it.

much thanks.


It should be...
Code:

{literal}
<script language="javascript" type="text/javascript">
content of script goes here
</script>


The {$ImagesDir} will call a file from the skin1/images directory, not the images directory in the x-cart root folder.

I don't use flash, but here is how x-cart does it....
Code:

<object type="application/x-shockwave-flash" data="{$ImagesDir}/custom/flash_logo.swf" width="341" height="206" id="flash_logo" align="top">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="{$ImagesDir}/custom/flash_logo.swf" />
<param name="menu" value="false" />
<param name="loop" value="false" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<param name="FlashVars" value="not_home_page={if $main eq "catalog" && $current_category.category eq ""}0{else}1{/if}&amp;final_image={#FinalImage#}&amp;company_name_path={$ImagesDir}/custom/company_name.swf&amp;home_path={$current_location}/customer/home.php" />
<param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />
<param name="swLiveConnect" value="true" />
</object>



All times are GMT -8. The time now is 02:18 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.