Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
preload image in if/then
nico
I've noticed that rollover images that are being called by teamsite and additionallly are in an iw_if/iw_then statement don't work. I fixed this by preloading one of the static images, however how does one preload an onstate image that teamsite is calling? Below is what the code looks like in my tpl:
]]><iw_if expn='{iw_value name="dcr.SOFTWARE Page Promotion Option"/} eq "Yes" '><iw_then><![CDATA[
]]> <iw_iterate var='promo' list='dcr.Promotion'> <![CDATA[
]]> <iw_perl> <![CDATA[
($promo_off = iwpt_dcr_value('promo.Promotion Image Offstate')) =~ s|^/?htdocs||;
($promo_on = iwpt_dcr_value('promo.Promotion Image Onstate')) =~ s|^/?htdocs||;
($promo_link = iwpt_dcr_value('promo.Promotion Link')) =~ s|^/?htdocs||;
]]> </iw_perl> <![CDATA[
<a href='{iw_value name="$promo_link"/}' onMouseOver="document.more_1.src='{iw_value name="$promo_on"/}';" onMouseOut="document.more_1.src='{iw_value name="$promo_off"/}';"><img src='{iw_value name="$promo_off"/}' width="128" name="more_1" height="200" border="0" alt=""></a>
<img src="/images/spacer.gif" width="128" height="12" border="0">
<br>
<br>
]]> </iw_iterate> <![CDATA[
<!-- End Iterate -->
</td>
]]> </iw_then>
<iw_else> <![CDATA[
Find more posts tagged with
Comments
nico
figured it out forget it