Pages (2): 1 2   
Member
Member
bill61   18-04-2008, 03:56
#1

hi developers

could u pls adjust the slideshow/nightly build to work and show well on IE7 and IE6

i spend sometimes on it but could not adjust it.

if not

anyone in here done that already?? pls let me know

thanks all

Member
Member
bill61   20-04-2008, 16:32
#2

hi developers

i did re-install the latest release of " nightly build "

the slideshow has improved may be 1 % on IE7 and IE6

hope u can get over this problem soon.

thanks all

Member
Member
sbillard   20-04-2008, 17:17
#3

If you use the "flash" personality of the slideshow it works well in IE

Member
Member
bill61   20-04-2008, 17:45
#4

hi sbillard

what is the "flash" personality ???

thanks

Administrator
Administrator
acrylian   20-04-2008, 17:49
#5

The slideshow has options in the admin. You can choose between the jQuery Javascript/ajax version and a flash version using Flow player.

Member
Member
sbillard   20-04-2008, 17:50
#6

Look at the mode option for the slideshow in admin/plugin options. It uses the Flowplayer for the slideshow. That seems to work for me on IE7

Member
Member
bill61   21-04-2008, 01:04
#7

hi developers

i did and it says : flash for flash based slideshow (requires Flowplayer.)

"Flowplayer" is it already instaled in " nightly build " ???

i did set it up on " flash " but still not working and when i choose slideshow for the images nothing shows .

thanks

Member
Member
bill61   21-04-2008, 04:03
#8

hi developers

any way that i can have the " slideshow / controls showing all the time instead of only " mouse on image " ???

thanks

Administrator
Administrator
acrylian   21-04-2008, 07:52
#9

You have to activate flow player on the plugins page first...
You can change the slideshow.css of your theme.

Member
Member
bill61   21-04-2008, 10:31
#10

hi acrylian

so to make the " slideshow / controls " permanent above the image is from the css??

how about the mouse over the image ?? what will happen to this ??

i can not get it acrylian

regards

Member
Member
bill61   21-04-2008, 10:35
#11

hi acrylian

flower player are checked in the admin/plugin page is this enough ??

Administrator
Administrator
acrylian   21-04-2008, 11:58
#12

Sorry, you are right, the positioning of the controls is CSS but the hover is javascript/ajax. That part of the code is
`$('#slideshow').hover(

function() { $('#controls').fadeIn(); },

function() { $('#controls').fadeOut(); }

); in thezp-core/plugins/slideshow.php` file. I have adapted that code from the site of the jQuery Cycle plugin which runs the jQuery slideshow mode. See there about it's options: http://www.malsup.com/jquery/cycle/

Feel free to change as you like. But keep in mind that every update will probably overwrite your changes if you don't backup them. I will not change anything about that now.

Flowplayer needs to be activated and the slideshow mode set to flash.

Member
Member
bill61   21-04-2008, 16:02
#13

hi acrylian

so lets say i want to make the " slideshow / controls " permanent

what should i change in this :

$('#slideshow').hover(
function() { $('#controls').fadeIn(); },
function() { $('#controls').fadeOut(); }
);

should i remeve it from the : zp-core/plugins/slideshow.php ??

Administrator
Administrator
acrylian   21-04-2008, 16:09
#14

Follow the link to the jQuery Cycle plugin I posted above, there you find everything about the options. I have just taken that part from there.

Member
Member
bill61   21-04-2008, 16:50
#15

hi acrylian

http://www.malsup.com/jquery/cycle/

i could not get any answer from this link about my question.

because all i need is in the : slideshow/nightly

the control appers only when the mouse over the image than u can click next prev pause or what ever

what i am trying to do is making this controll always showing instead of only the mouse over the image for it to show.

visitors may get confused and they may say how can i go next or previous ??? how they can figure it out that they have to put the mouse over the image so they can see the control

Member
Member
bill61   21-04-2008, 22:16
#16

hi developers

http://www.malsup.com/jquery/cycle/

i could not get any answer from this link about my question.

because all i need is in the : slideshow/nightly

the control appers only when the mouse over the image than u can click next prev pause or what ever

what i am trying to do is making this controll always showing instead of only the mouse over the image for it to show.

visitors may get confused and they may say how can i go next or previous ??? how they can figure it out that they have to put the mouse over the image so they can see the control

Administrator
Administrator
acrylian   22-04-2008, 08:42
#17

I have understood what you want. As I said above I have adapted the code from the page I posted above (exactly from here http://www.malsup.com/jquery/cycle/hover.html). I liked the idea that the controls do not "disturb" watching the images and just fade in if needed. I am used to that from a lot of movie programs. You could simply write a sentence "Hover over image for controls". Otherwise you will probably hover over the image sometime and see the controls.

Anyway, have you tried the simplest that comes to mind and removed the code in question? This would be what I would try first...

Member
Member
bill61   22-04-2008, 09:27
#18

hi acrylian
did u mean delete this part from : zp-core/plugins/slideshow.php ???

$('#slideshow').hover(
function() { $('#controls').fadeIn(); },
function() { $('#controls').fadeOut(); }
);

if no, this sentence "Hover over image for controls". where it should be than ??

in other words how the above code should be writting?

Administrator
Administrator
acrylian   22-04-2008, 09:48
#19

Yes I mean that code.

Write the sentence wherever you like on the theme's slideshow.php above or below the printslidesshow for example would be the easiest.

Member
Member
bill61   22-04-2008, 12:30
#20

hi acrylian

sorry about that mess

i am not realy good when it comes to codes.

now, i thing this is the code who control the " slide show control button"

could u wtite it again for me pls in the way that the " slide show control button" stay permenant and not fade away.

    $(function() {
        $('#pause').click(function() { $('#slides').cycle('pause'); return false; });
        $('#play').click(function() { $('#slides').cycle('resume'); return false; });

        $('#slideshow').hover(
                function() { $('#controls').fadeIn(); },
                function() { $('#controls').fadeOut(); }
        );

        $('#slides').cycle({
                fx:     '',
                speed:   ,
                timeout: ,
                next:   '#next',
                prev:   '#prev',
                delay: 2000,
                startingSlide: 
        });
    });
Pages (2): 1 2   
  
Powered By MyBB, © 2002-2026 MyBB Group.
Made with by Curves UI.