I have a flash website, and an html website. I use Nivo slider on the html site as a slideshow to showcase images and tagline slides, I'm curious if anyone knows if you can put a Nivo slider slideshow in a flash site? Nivo slider uses jquery, with fairly simple html img src code and a css file, is it possible to have this in a flash site?
Thnaks in advance!
Donnie
Nivo code looks something like this;
</head>
<link rel="stylesheet" href="Nivo_slide/scripts/nivo-slider-2.css" type="text/css" media="screen" />
<script src="Nivo_slide/scripts/jquery-1.5.1.min.js" type="text/javascript"></script>
<script src="Nivo_slide/scripts/jquery.nivo.slider.js" type="text/javascript"></script>
</head>
<body>
<div id="slider-wrapper">
<div id="slider" class="nivoSlider">
<img src="Nivo_slide/images/nivo_images-tag-3.jpg" alt="" />
<img src="Nivo_slide/images/nivo_images-weddings_1.jpg" alt="" />
<img src="Nivo_slide/images/nivo_images-weddings_2.jpg" alt="" />
</div>
</div>
<script type="text/javascript">
$(window).load(function() {
$('#slider').nivoSlider();
});
</script>
Flash supports a very limited number of html tags -- used in TextField objects -- the complete list can be found if you look up the htmlText property of the TextField class. Out of what you show, only the img tags are supported.