Not signed in (Sign In)

Categories

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorTintin81
    • CommentTimeAug 20th 2008 edited
     permalink
    Hi,

    we are a web design company currently designing a website for a large corporate client. The client wants an image rotator on the front page and after conducting some research we chose Monoslideshow for its vast array of options and ease of use.

    We tested the site very thoroughly on all sorts of browsers including Safari, Opera, IE6 and Mozilla. However, today we received a call from the client saying that the design is completely broken in their version of IE7 and that no image rotator appears on screen. They also provided a screenshot to us which made us look very foolish. Very much to our dismay, we had forgotten to test the site in Internet Explorer 7, blindly assuming that Monoslideshow would definitely work in Internet Explorer 7 (one of the most common, if not THE most common browser around!).

    After researching this message board for an hour now, I still haven't found a solution to the problem. We had to cancel our client meeting today, and promised to present a working solution to the client by tomorrow noon.

    Can anybody tell me how to get Monoslideshow to work in IE7? The CMS we are using is Expression Engine. Will this interfere with Monoslideshow in any way? Some swift feedback would be... great!!
    • CommentAuthorcfrosch
    • CommentTimeAug 20th 2008
     permalink
    Hi Tintin,

    i'm using the Monoslideshow with IE7, Firefox3, etc. and haven't got a problem yet.
    If you write an URL, i can check out what the problem is.

    Greetings... cfrosch

    p.s. Your client has the flash player installed ? :-)
    • CommentAuthorTintin81
    • CommentTimeAug 20th 2008 edited
     permalink
    Hi cfrosch,

    I posted the link to the website above, but here it is again: http://nordevent.designbits.de.

    I have been trying to fix this error for more than 5 hours now. I wish I hadn't wasted the 19 bucks...

    And yes, they've all got Flash player installed. And http://www.monoslideshow.com works on all of their machines. Only my site doesn't, despite having followed every single step of the PDF-tutorial.
    • CommentAuthorcfrosch
    • CommentTimeAug 20th 2008
     permalink
    Hallo,

    dann können wir wohl deutsch miteinander sprechen:

    Der Link funktioniert (im IE7) :-)
    es scheint eher an der Javascriptimplementation zu liegen.
    http://nordevent.designbits.de/slideshow/monoslideshow.swf

    Eine Alternative wäre das ganze über ein <object></object> OHNE Javascript einzubinden, da gibts auch eine (X)HTML konforme Lösung:

    <object type="application/x-shockwave-flash" data="slideshow/monoslideshow.swf?dataFile='slideshow/monoslideshow.xml'" width="400" height="300">
    <param name="movie" value="slideshow/monoslideshow.swf?dataFile='slideshow/monoslideshow.xml'">
    <param name="quality" value="high">
    <param name="flashvars" value="showLogo=false&showVersionInfo=false" />
    <param name="flashvars" value="datafile=/slideshow/monoslideshow.xml" /></object>

    Evtl. müssten die Pfade noch angepasst werden.
    Bitte psote mal, ob das funktioniert.
    • CommentAuthorcfrosch
    • CommentTimeAug 20th 2008
     permalink
    Also ich habs mal ausprobiert:
    Folgender Code funktioniert:

    <div id="mssHolder" class="banner">
    <object type="application/x-shockwave-flash" data="slideshow/monoslideshow.swf?dataFile=../slideshow/monoslideshow.xml" width="400" height="300">
    <param name="movie" value="slideshow/monoslideshow.swf?dataFile=monoslideshow.xml">
    <param name="quality" value="high">
    <param name="flashvars" value="showLogo=false&showVersionInfo=false" />
    <param name="flashvars" value="datafile=/monoslideshow.xml" /></object>
    </div>

    Einfach statt des mssHolder-div und des darauffolgenden scriptblocks einfügen....
    • CommentAuthorTintin81
    • CommentTimeAug 26th 2008
     permalink
    Nein, funktioniert nicht! Danke aber trotzdem für Deine Mühe. Wirklich nett...

    Dies ist die Fehlermeldung, die erscheint: Error loading slideShow "monoslideshow.xml"

    Ich frage mich wozu ich dieses Produkt noch verwenden soll, wenn es doch auf dem wichtigsten Browser nicht funktioniert!! Wieso verwendest Du es?
    • CommentAuthorcfrosch
    • CommentTimeAug 26th 2008
     permalink
    Also, ich habe den oben geposteten Code in Eure Seite eingesetzt, bei mir hat es dann die Slideshow angezeigt. Das javascript muss nat. entfernt werden.
    Habt Ihr bevor Ihr das ausprobiert habt den Cache geleert, sonst könnte die Anzeige noch von einem vorherigen Versuch stammen.

    Ich mache so ziemlich das gleiche wie Ihr :-) nur ein deutliches Stück weiter südlich.
    Als CMS benutze ich meist Joomla 1.5 und habe mir dafür eine Komponente samt Plugin gebaut, die als Slideshow-Generator die Monoslideshow verwendet. Da ich noch 8 weitere Slideshowmodule (teils nur kommerziell) habe, kann ich mit guten Gewissen sagen, ich habe bisher kein besseres gesehen, was auf Flash basiert.

    Übrigens eine sehr schöne Seite, tolle Bilder.
    • CommentAuthormhaefliger
    • CommentTimeAug 27th 2008
     permalink
    <blockquote><cite>Posted By: Tintin81</cite>Nein, funktioniert nicht! Danke aber trotzdem für Deine Mühe. Wirklich nett...

    Dies ist die Fehlermeldung, die erscheint: Error loading slideShow "monoslideshow.xml"
    </blockquote>

    Bei mir klappts auch. Cache leeren.

    Eventuell stimmt etwas was mit den Pfad-Angaben nicht. Schmeisst am besten mal alles (XML, SWF und swfobject.js) ins Root und testet es damit:

    <div id="text">
    <object type="application/x-shockwave-flash" data="monoslideshow.swf?dataFile=monoslideshow.xml" width="640" height="360">
    <param name="movie" value="monoslideshow.swf?dataFile=monoslideshow.xml">
    <param name="quality" value="high">
    <param name="flashvars" value="showLogo=false&showVersionInfo=false" />
    <param name="flashvars" value="datafile=/monoslideshow.xml" /></object>
    </div>

    Im Head Javascript nicht vergessen:

    <script type="text/javascript" src="swfobject.js"></script>

    Grüsse

    Martin
    • CommentAuthorcfrosch
    • CommentTimeAug 27th 2008
     permalink
    @mhaefliger

    Wenn man das so wie oben als Object einbindet, braucht man kein Javascript.
    • CommentAuthormhaefliger
    • CommentTimeAug 27th 2008
     permalink
    stimmt dann kann ich das im header wieder rausnehmen..
    • CommentAuthorTintin81
    • CommentTimeSep 2nd 2008
     permalink
    OK, ich habe jetzt genau den Code oben eingesetzt, aber es funzt immer noch kein bisschen: Link

    Mittlerweile bin ich echt am Verzweifeln...
    • CommentAuthorTintin81
    • CommentTimeSep 2nd 2008
     permalink
    Ok, jetzt funktioniert es endlich! Thank god!

    Ich habe alle Pfadangaben durch absolute ersetzt, z.B. durch http://nordevent.designbits.de/slideshow/monoslideshow.swf

    Kann mir jemand noch sagen, wie ich es so einstelle, dass ein statisches Bild angezeigt wird WENN der Benutzer kein Flash installiert hat?

    Das wäre klasse...
    • CommentAuthorsharkbait
    • CommentTimeSep 2nd 2008
     permalink
    Hi!

    ...dem div, in dem die Slideshow eingebunden ist, ein Hintergrundbild zuweisen!?

    Gruss, j
    • CommentAuthorchristophvl
    • CommentTimeSep 4th 2008 edited
     permalink
    An der Stelle, an der sonst die Fehlermeldung kommt, daß kein Flash installiert ist (typisch ein h1), kannst Du natürlich auch ein Bild plazieren. Dann wird das Bild auch nur geladen, wenn das Flash nicht geht (weniger unnötiger Traffic).
    Christoph