Finn Rudolph



captcha

RSSShoutbox RSS Feed

31
Dec
2009

11:37 - Finn

@ Bashar: Well you don't need hours to explain. First of all read this to get the main problem: http://finnrudolph.de/ImageFlow/FAQ#Implementation_9 ... So what you need to do is getting a javascript to replace every image _before_ it will be initialized via ImageFlow by a _single_ image that includes the reflection. And on top of that you want that to work in all browsers ;D It is doable, but I recently had no time to dive into it. If you are willing to understand the basic reflection generation with JavaScript (give one image return on image with relfection) I'll do the implementation part ;D

11:31 - Finn

@ Alex: Thanks for the code I'll consider implementing it in the next release... btw: The reflection.php is not my code: http://github.com/countzero/ImageFlow/blob/master/imageflow.js#L31 ;D

11:28 - Finn

@ Matt: Well that is possible with a small siedeffect ;D You can render the 180° rotation of your object into frames and tell JavaScriptObject to behave as if it were a 360° rotation. Then you can rotate your object just the 180° (or whatever you need). The downside will be, that it will jump to the first frame if you hit the last frame and vice versa. But I could implement an option telling the script to actually lock the renderer at the first and last frame...

06:38 - Bashar

I must admit i'm a fan of your ImageFlow.. It is splended. The following is a comment to what Alex (19:12 on Dec 29) said. Would it be possible to use Reflection.js (http://cow.neondragon.net/stuff/reflection/) to create the reflection illusion? I know there might be a conflict in licensing between your ImageFlow and Reflection.js but if you were to take a couple of hours and describe how one could achieve the reflection rendering on the browser, i'm sure many would appreciate it. The reason why I'm mentioning this is because I'm using Servlets and JSP pages on my server.



30
Dec
2009

00:22 - Matt

Great stuff Mr. Rudolph. I have a question on the JavaScriptObject, is it an easy tweak to get the effect of only rotating the object in a limited range of degrees? For instance, I have an object where I only want the user to rotate side to side to see the "front" of the object from different angles, but not behind. Make sense? The object would just stop rotating at one point, at least in my mind how I want it to work. Cheers!



29
Dec
2009

19:12 - Alex

Hey Finn. First of all, congratulations and thanks for the great job you've done developing "ImageFlow". I just got a little improvement suggestion concerning the ImageFlow memory management (or rather the memory management of your PHP reflect scripts). Problem description: picture a situation where one is not allowed (or just don't know how) to manually re-configure the php.ini settings (e.g. on a server of a free webhoster or on a local webserver) to be able to proccess larger images (i.e. usual digicam-images). If the memory limit variable in the php.ini is very small your reflection script won't be able to do its job. ImageFlow (thus the reflect script) will just show empty boxes including the typical ... image - nor an error neighter a warning (that the requested memory the script is trying to use is too large) will be thrown. That's why you should add a couple of lines to your source code to improve that. Here's the code I suggest to use (this code is trying to dynamically increase the php memory limit during the scriprt runtime): // Read the memory limit variable (a string) from the php.ini file into $mem_limit, cut the letter off // the string and convert the rest of the string into an integer (int) value (int) $mem_limit = str_replace(array('b', 'k', 'kb', 'm', 'mb', 'g', 'gb', 't', 'tb', 'p', 'pb'), '', strtolower(@ini_get('memory_limit'))); // Check whether the memory limit is too low (if so lets try to change that) if((isset($mem_limit)) && (!empty($mem_limit)) && ($mem_limit < 1024)) { // Try to reset the php ini value for the scripts memory limit (try to set it to 1024Mb) for($i=1024; $i>=(int)$mem_limit; $i-=2) { if(@ini_set('memory_limit', ((string)$i.'M')) == false) { } else { $i=0; } } } Just add it at the very beginning of reflect2.php and reflect3.php and everything will be fine :o) Kind regards, Alex



28
Dec
2009

10:26 - Finn

I made an audioreactive sphere: http://www.vimeo.com/8406915 *yay* ;D



27
Dec
2009

19:49 - Olivier

@ Finn : Concerning the iframe, that was what i feared :) Thank you very much for your help anyway, i'll try to find a solution dealing with this.

19:05 - Finn

@ Olivier: Well... there was a reason Why I did only show onfocus... You'll probably run into performance issues if you display as much iframes as visible images... but give it a try on your own ;D Here is the spot I defined the current iframe behaviour: http://github.com/countzero/ImageFlow/blob/marriott/imageflow.js#L525

14:44 - Olivier

@ Finn This is great stuff! Thanks for your quick answer by the way. I have two more questions concerning this : - I'm not sure of this, but is it possible to show the iframe all the time, even when they're not in the front, instead of replacing them by an image ? - Is the iframe mandatory to show text content ? Thanks again

10:18 - Finn

@ Olivier: I made a prototype for Marriott International that kind of does what you need. You can checkout the branch on http://github.com/countzero/ImageFlow/tree/marriott and see the demo of it on http://testground.finnrudolph.de/js/ImageFlow_1.2.2_Marriott/



26
Dec
2009

20:44 - Olivier

Hi, First of all, congratulations and thanks for your great work. I've a question concerning ImageFlow : Could it be possible to replace the images by a div containing text content ? I know this is odd to use coverflow with text, but i'd maybe need this functionnality for a specific project.



24
Dec
2009

08:58 - Philip Tiju

HI Finn Rudolph, I mailed you y'day regarding Imageflow with couple of issues and clarification. I didnt get your response till now. Waiting for the response



21
Dec
2009

09:04 - karl2011

hab gerade in deinem portfolio gelessen das du deutscher bist toll dann kann ich dich auch so fragen, weist was geil wäre xml support für imageflow

09:01 - karl2011

xml support will be great



20
Dec
2009

15:52 - Alfred

I noticed that most of the posts here start with "Great script, but...". I am writing just so I can say "Great Script". Period.



17
Dec
2009

23:03 - Ashley

Nice Script! Any chance you'll make a vertical version? That would look really sweet in my carclub's website.

17:35 - Graham

Hmm - done a bit more digging and it seems to be an incompatibility with another javascript. If I remove the link to the other script, all is well.

17:15 - Graham

Fantastic script. One problem though - I set up my page and it was working fine in Firefox. In IE8 I get this error: Message: Object doesn't support this property or method Line: 1144 Char: 4 Code: 0 URI: ...../imageflow.js I put it back to the original version of imageflow.js, only replacing "myImageFlow" with the name of my div, and I still get the error. Any ideas?

13:59 - Finn

@aszan: Hi, could you please post a link so that I can see what you mean by "image is cutting off". And with what IE did you test?

10:37 - aszan

image is cutting off in ie please solve this problem



15
Dec
2009

23:24 - Eric

Opps, no worries. Got it going, just a simple positioning of the script in the html. All good. Ie is so temperamental.

19:24 - Eric

Hey Finn, Great script, however I can't seem to get it operational in IE. It works well in Firefox, Safari, and Google, but it does not want to execute in IE. Thoughts?

11:18 - G.R

Ing. .imageflow.caption and .imageflow.scrollbar is where you change the position of the caption and the scrollbar.

10:10 - lng

I figured out changing the position and how to put the captions under the slider bar. Let me put for other people: in css: .imageflow .navigation{ position:absolute; top:80%; z-index:10000; } in js: (for putting captions under slider bar) change lines 195&196 like this: navigationDiv.appendChild(scrollbarDiv); navigationDiv.appendChild(captionDiv);

09:58 - lng

Thanks G.R. for the help. Can you give me specific examples? I guess, i need to add some parameters to "imageflow .navigation" for bringing them down a little bit. I tried "top: -20%" and nothing changed. I don't have much information about css, sorry. :)

09:33 - G.R.

Ing. The scrollbar and captions positions can be altered in imageflow.css. It's quite easy to figure out. I use negative percentages to bring them down a bit. You can also alter the positions of the left and right buttons independently but the width of the scrollbar has to be changed in imageflow.js



14
Dec
2009

21:52 - lng

Hi, is there a way to change sliderbar position and caption position on ImageFlow? I would like to put them a little bit lower than original position. I tried to look all posts here and js source, couldn't figure out a way to do it. Thanks in advance.

00:40 - Jerrod

For some reason the images will not show up. Even when I try to view your index.html file all I can see is the "image" text. but not pictures. please give me some advice. awesome script by the way.



13
Dec
2009

18:11 - Ralf

Just some suggestions for the next ImageFlow version: http://www.ralfhettinger.de/imageflow/ImageFlow_1.2.1.new.zip (patchfile @ http://www.ralfhettinger.de/imageflow/ImageFlow_1.2.1.diff ): Features: * HTML may contain more than just img-tags. Captions and links may be set more SEO-friendly and accessible (see index.html for an example and the new option singleItemTag) * make speed of transition effect configurable (new option animationSpeed) * a first simple slideshow (options slideshow, slideshowInterval, slideshowLeftToRight) Bugfix: * Option slider should only enable/disable the slider not the buttons

09:20 - Eric Landsberg

Finn Just started with the integration of Imageflow version 1.2.1 into www.wildlife.co.za still need to change some parameters to get the optimal setting suited for this site. Congratulations again for an excellent script. http://www.wildlife.co.za/library/mammals/Recent-Images.htm



11
Dec
2009

23:42 - Dave G

Hi Finn how can I get a copy of the youflow app.



09
Dec
2009

22:37 - Alex

additional control events / methods needed so bad!!!!

08:13 - G.R.

The one bit of javascript that I learned yesterday was how to make the images in imageFlow glide in from the left instead of the right. In the section marked /* Animate images moving in from the right */ Change the third line to thisObject.moveTo(-10000);



07
Dec
2009

16:55 - Finn

Printing CSS background images (sort of) http://web-graphics.com/mtarchive/001703.php



06
Dec
2009

20:23 - G.R.

Julian. Looks good but the captions are buried in the reflections. Some are unreadable.

15:38 - Julian Hayward

Imageflow is an excellent product and well worth getting for any image website. See it in action here at: http://www.cardtoppers4crafts.com



05
Dec
2009

14:44 - M

Hallo, feines Teil und funktioniert soweit wunderbar - einzig krieg ich's nicht hin, daß die Transparenz in den PNGs erkannt/dargestellt wird. Objekte, die im PNG freigestellt wurden, werden also trotzdem mit schwarzem HG angezeigt. Gibt es da eine Lösung?



04
Dec
2009

16:52 - vcraig

we cannot get the images to display even in your downloads they do not display we are impressed with your images want to use your example in our class project ti s and cen i

06:01 - Craig

Awesome script. I will be using this on many client sites in the future. Payment on the way for the current implementation: http://www.bolandarts.com I did find a couple of issue with IE, the most annoying one has to do with percentages. If you specify the body height to 100% and you set the height of the container that will hold imageflow as a percentage, in IE 7 (5.5, 6 , and 8 are fine) the entire container div will collapse once the image flow is rendered. I had to remove the height settings altogether, as a fixed height wouldn't work in the design. I also found that in IE 8 if you do not explicitly set the image height and width in the IMG tag that the images get squished. I really should specify the dimensions so I did that and it fixed the issue. -Craig - http://www.us.clearnine.com



03
Dec
2009

23:07 - Michael

Hi Finn, dein Script ist einfach der Hammer, aber die Rückmeldung hast du bestimmt schon etwas öfter bekommen :D. Jedoch hab ich ein kleines Problem: Der Coverflow wird dargestellt aber ohne Bilder. Das Problem dafür hab ich gefunden und nun brauche ich die Lösung: Der coverflow wird in der domain/index.php angezeigt. Alle benötigten Dateien liegen aber in dem Verzeichnis domain/coverflow/ das einbinden der .css .js hat mit der der Pfadangabe geklappt, jedoch versucht das Script die Datei domain/reflect2.php auf der gleichen ebene wie die index.php zu finden, die liegt jedoch bei den anderen in domain/coverflow/reflect2.php Wie bekomme ich nun das "/coverflow/" dazwischen (zwischen domain/../reflect2.php) damit das funktioniert? Schon mal vielen, vielen Dank :) Michael

11:51 - Calum

Hey, fantastic script! Could you please tell me how I can have an iframe popup (in the similar style to a Thickbox) appear when clicking on an image? Thanks a lot!



01
Dec
2009

23:56 - Tom

@ Malingo sorry unter http://caribaria.de findest Du nur die Loginseite, zum betrachten musst Du direkt auf http://caribaria.de/forum/portal.php gehen, dort wird Dir zwar nur ein teil angezeigt, da Du nicht eingeloggt bist aber für´s ImageFlow reichts ;-)

23:49 - Tom

@ Malingo Ja es ist möglich das ImageFlow im phpbb einzubauen und auch zu verlinken. Dies kannst Du Dir auch unter www.caribaria.de ansehen. Derzeit habe ich leider noch ein Problem mit dem Internet-Explorer, weil es bei ihm leider nicht angezeigt wird, bei den anderen Browsern funktioniert es einwandfrei. Ich habe auch die Größendaten wie in der Installationsbeschreibung angegeben aber der IE checkt´s trotzdem nicht.

12:13 - Coppens

good job with this script, but i was wondering if it is possible to use an external image in the Imageflow(for example an url). I am wondering if this is possible, since we have our CMS which we would like to manage this in on another virtual host on the dedicated server. I did read some parts out of your reflect script an did notice the usage of file_exists which cannot be used with urls. hopefully anyone here can help me out! Greetings, Coppens



30
Nov
2009

22:31 - Tom

Schönen guten Abend. Ich hab ein Problem mit der Anzeige beim IE. Im Firefox wird alles wunderbar dargestellt aber wenn ich die Seite mit dem IE öffne, dann wir mit nichts vom ImageFlow angezeigt. Ich habe, wie in der Anleitung beschrieben, auch die Zusatzdaten (Größe) mit eingegeben aber trotzdem funzt es nicht. An was kann das liegen? LG Tom



27
Nov
2009

09:58 - G.R.

Finn. Setting the image height and width makes no difference. I should have removed the first part of the script instead of rendering it inactive. It looks confusing. I have done so now. Its getting only the image to reload that does the trick. I will continue to experiment. Many thanks for a great piece of work. Have a look at the parent page. I have made some changes to the scroll bar and slider. http://www.godfreyryan.com/Slideshow5.html

08:46 - Finn

@ G.R. Have you tried to set the correct image width and size in px in the img tag and then scale the whole thing via CSS? Perhaps that works cross browser and you don't even need a single line of JS...

08:42 - Finn

@ G.R. Nice one! It will certainly not be the last bug that is featured by the all beloved Microsoft product... I would suggest a _better_ improvement to your code than the one the MS guy told you: You only need to refresh the site onload and onresize of the browser window. So add your resize function to that events. Take a look at http://github.com/countzero/ImageFlow/blob/master/imageflow.js#L993 to see how to call a function onresize...



26
Nov
2009

12:20 - G.R.

This is an update to my posts of the 24th and 25th of October. Microsoft have come back to me and confirmed that I have indeed found a bug in all versions of Internet Explorer which effects any URL called with a specific width from the onClick event handler option in imageFlow. They will put it on the list of known issues and say that if a fix can be found, it will go into their regular Windows update. They also recommend that the "timeout" in my workaround for reloading the image should be reduced to 250 mS. http://www.godfreyryan.com/16x.html



24
Nov
2009

19:15 - Stéphane Kus skus1@free.fr

I have made an adaptation of ImageFlow with HighslideJS for the CMS SPIP. It's here : http://iensp.free.fr/spip.php?article329 Thank you for our work

11:38 - ollieh

be aware that -ms-interpolation-mode:bicubic; only works on jpg images. if you use reflections then your images are rendered as pngs and will look blocky in IE7.

11:36 - ollieh

@Colin i found out why internet explorer 7 was squeezing the images. i changed this line image.h = image.getAttribute('height') * multi; to image.h = image.getAttribute('height'); and it fixed the images here are my setup options: ImageFlowID:'myImageFlow', buttons: true, captions: false, reflections: true, reflectionPNG: true, slider: true, startAnimation: true, opacity: true, reflectionP: 0.2, startID: 5, imageCursor: 'pointer', xStep: 118, reflectionGET: '&height=20%&.png', imagesM: 1.04, aspectRatio: 2.00, imagesHeight: 0.55, imageFocusM: 1.0,



22
Nov
2009

21:38 - Maskerman

Thanks for the ImageFlow thing man, just the thing I was looking for for my new webdesign.

17:23 - nikesh bhansali

can images can move on mouse hover rather than mouse scroll



21
Nov
2009

14:11 - Denis

About the ImageFlow for Ipod, the .js file is packed. How to remove the reflection in order to see the pictures ?



20
Nov
2009

21:18 - Denis

Dear Finn. Is it possible to have a galery recorded (all the files jpg,ccs,js) into the Iphone without any connection to internet as in your example ? : testground.finnrudolph.de/js/ImageFlowTouch Thanks Denis



19
Nov
2009

21:01 - trichers

Ich hoste meine Seite bei hosteurope.de und die haben auf ihrem Server "GD bundled (2.0.34 compatible)". Wie kann ich damit die Relexion bei imageFlow aktivieren?

17:38 - Gray

Hey, great script. Is it possible to use thumbnails as anchors to a specific slide? My €20 is on the way!! Well worth it.



14
Nov
2009

18:00 - malingo

is it possible to put imageflow into phpbb? is it possible to link the pictures to threads? kann man imageflow in phpbb nutzen? kann man die bilder auf Themen verlinken?



13
Nov
2009

13:14 - anta_flo

hey there, has anybody an idea how to get the finnrudolph galery in a joomla1.5-site? is it anyway possible? hey zusammen, weiss jemand wie man die finnrudolph galerie richtig in eine joomla1.5-site einbindet? geht das überhaupt?



12
Nov
2009

18:21 - G.R.

underarmour. Man kann nicht so pauschal diese Frage antworten. Du musst alle Seite im ImageFlow Teil gewissenhaftlicht lesen (inklusive der FAQs).

17:16 - underarmour

hallo, was muss ich wo einbinden damit es funktioniert??? (erstmal mit den standart bildern)

16:48 - Paul

hi, ive used this gallery on my site and ive managed to take the slider menu off - what i wanted to know - is it possible to have the gallery loop endlessly?? thanks in advance.

14:50 - Colin

ImageFlow needs to be running inside a PHP server for images to appear

00:37 - Rich

Hi probably a simple issue but i'm having a problem...I have downloaded the package on a mac and a pc and when i click on the index file the coverflow works but displays no images, just a white border. The longdesc link works and i can change it to a URL or another file and the link works fine...no matter what i do the page won't display images in the actual coverflow page....anyhelp appreciated!!! Thank you Rich



11
Nov
2009

13:12 - Finn

@ Colin: You _must_ set the right width and height attributes for each image to get correct scalings with the IE... Blame the IE ;D



10
Nov
2009

17:32 - Colin

Having problems with internet explorer 7 when loading page in firefox,opera,safari works fine but when loading in ie7 images look squeezed vertically any advice cheers

13:22 - Daniel

Hi there, I tried to implement imageflow + highslide but when I click I only get a "loading" message. Any clue on what I did wrong? Thanks!



09
Nov
2009

15:33 - G.R.

Hi Hello. Ye Gods. It couldn't be simpler. Just use the page url or a link to your page HTML file as the value in the longdesc property of the img tag in imageFlow Bingo!



08
Nov
2009

10:30 - ImageFlow patch for Enter key support

@Finn I've created a patch that calls the onclick for the current picture when you press the Enter key. If you'd like it shoot me an email: scott@ggr.com.



07
Nov
2009

19:30 - Hallo

Is there an option, that I can link my pictures in my ImageFlow Gallery? At the moment, when I click a picture, a new window with only the picture pops up. But I want, that I can set links, so I by clicking a picture I come to another page of my site. Would be very nice if that would be possible, thank you and arigatou!



05
Nov
2009

22:55 - Philip Dahl

@MJ I left image cursor blank and then defined it in the CSS. For Mozilla browsers you can use a simple property and for other browsers you can call an url.



04
Nov
2009

18:28 - David

@Finn, Have you done something about the endless imageflow yet ? I m working on a project that would really need this feature; Otherwise do you have some ideas on how do remix your script to help to do that ? Thanks



29
Oct
2009

20:18 - Mario

Das war wohl xStep ;) Geht imageScaling:false nur bei gleich breiten Bildern ?

17:59 - Mario

Hi, ein sehr schönes Modul für Typolight. Allerdings bekomme ich es nicht hin, meine Bilder unskaliert nebeneinander anzeigen zu lassen. Laut Examples mit imageScaling: false ... egal wieviele Bilder in ich Tl anklicke, es werden immer nur die letzten 3 angezeigt und beim scrollen komme ich nicht zu den ersten Bildern. Startbild ist 1. Ist das ein bekannter Bug oder mache ich was falsch =



28
Oct
2009

17:44 - Hannes

whoops the box just ate my code ;-)... imgsrc="getpic.php?file=picture.jpg"

17:42 - Hannes

wow, just found this wonderful tool. Is it possible to load pictures (from elsewhere on the harddrive) via ? I tried but did not succeed. Thanks in advance and greetz from munich!

01:44 - Michael O

I'm having a website designed by a company in LA. I'm assuming they have gotten the proper license. ImageFlow functions very nice in Fire Fox, but in IE, Chrome and Safari it functions rough. Kind of like it gets big and settles. Any advise?



27
Oct
2009

16:54 - Designer@Action

Gibt es auch eine deutsche Dokumentation zu dem Image-Flow Tool??? Beste Grüße

13:50 - Glennyboy

Hi Good script, but I'm having a major problem getting the background colour on the Image Flow when using High Flow / onClick function. I have the following code at base of imageflow.js:- var Highslide_3 = new ImageFlow(); Highslide_3.init({ ImageFlowID: 'CivilPartnershipGallery', onClick: function() { return hs.expand (this, { src: this.getAttribute('longdesc'), graphicsDir:'highslide/graphics/', transitions : ['expand', 'crossfade'], align: 'center', outlineType: 'rounded-white', fadeInOut: true, dimmingOpacity:0.75, // define the restraining box useBox: false, width: 640, height: 480, showCredits: false, reflectionGET: '&bgc=141413', captionText: this.getAttribute('title') }); } });}); Everything works except the background colour that stubbornly stays black. Any ideas? Cheers Glennyboy

05:28 - jc

This is a wonderful tool! I would like to be able to show related content on my site depending on which image is the active image. You can see it being done here: http://www.advomatic.com/ Is there a simple way to do that?



26
Oct
2009

18:51 - MJ

What is the value for imageCursor to display a hand?



25
Oct
2009

13:46 - G.R.

The block of script in this url also contains a function to resize the main image in proportion to the browser width on load as well as the reloader function. Please feel free to copy. http://www.godfreyryan.com/16x.html



24
Oct
2009

13:56 - G.R.

I have found a really nasty bug in Internet Explorer (all versions) which prevents a new url window, that is called from the imageFow onClick option, from opening properly when a specific window width is given. Any large image within the url is loaded with big black horizontal gaps and can only be corrected by reloading (refreshing) the url. I have come up with a neat solution to this bug, which is to include a small block of JavaScript in the called url to reload the image continuously every one second. Effectively it is the same as running a small image rotator with the same image called over and over again. The timeOut could be set to less than a second to refresh more quickly if it's required.



23
Oct
2009

01:47 - xpr

Is there anyway to prevent images being dragged and dropped (removed) from image flow?



22
Oct
2009

19:21 - G.R.

dee. My quick answer to that would be to toggle imageScaling to false and then break your image up into multiple slices in Photoshop. The sections could then be inserted into imageFlow in sequence and scrolled in the normal way. There would be almost no limit to how long the image could be. I'm sure one could rewrite imageFlow.js but that would be beyond my knowledge. It would be great to know if you ever try the slicing technique.

09:54 - dee

hi there, this imageflow is very cool, thankyou! I need some advice, What if you have one long horizontal image that you just want to slide from left to right and vice versa? instead of individual photos .. how do we do that?



21
Oct
2009

19:53 - hups

hALLO SUPER TEIL ; eine frage wie kann ich die bilder in einen cache laden so das er sie nicht immer neu erstellen muss ??

15:36 - Nozomi

Thx again for your advice. I found some problem of ImageFlow. If I put ImageFlow's div inside other div that set style="display:none" and I use JS to change the attribute to "", the hidden div and inside elements are showed but only ImageFlow aren't present. This problem occurred in major browser such as FF (3.4), IE8 , Opera10 and Chrome So, I tried to solve this problem by use JS. I set style="" in document (in other word by default) and use JS to change the attribute to "display:none" after load document 1500 millisec , with this method I still found problem with IE8. In the first time, Imageflow still disappear, until I change to use a compatibility view of IE8 all work done. My report may helpful for the developer in future work. Thank a lot for you great work

14:22 - Philip Dahl

First of all this is a great way to create a linear gallery! In fact, I'm using it on my site. However, I'm having some issues with my tabbed (jquery/JS) content and imageflow. I've hacked it a little but have gotten stuck. I've also tried using other tab plugns. I'm using the Jquery UI tabs demo one right now. everything loads alright however when I change the size of my browser window in any way, the other Image Flow galleries in the other tabs disappear. Any help is appreciated, I'm an artist trying to create my own site so I have a very limited background in this stuff (none) though I learn quick. the site in question: www.philipdahl.com You have done some great work with this JS I'm sure you have the knowledge to solve this issue. Erzeugt Deutsch-Übersetzung: Vor allem ist dies ein guter Weg, um eine lineare Galerie Neues! In der Tat benutze ich es auf meiner Website. Dennoch bin ich mit einigen Probleme mit meinem Registerkarten (jquery / JS) Inhalt und imageflow. Ich habe es ein wenig, aber gehackt haben bekommen stecken. Ich habe auch versucht, die andere Registerkarte plugns. Ich verwende das jQuery UI Tabs ein Demo-right now. Belastungen jedoch alles in Ordnung, wenn ich die Größe meiner Browser-Fenster in irgendeiner Weise zu ändern, verschwinden die anderen Image Flow Galerien in den anderen Registerkarten. Jede Hilfe ist willkommen, ich ein Künstler versucht, meine eigene Website zu erstellen, so habe ich eine sehr begrenzte Erfahrung in this stuff (none), obwohl ich schnell lernen bin. der Standort in Frage: www.philipdahl.com Sie haben einige großartige Arbeit mit diesem JS Ich bin sicher, Sie haben das Wissen, um dieses Problem zu lösen tun.

11:05 - si fahri

you make my gallery photo goes to groovy! you cool guys

06:18 - Tom

ok, hat sich erledigt, wenn das Hirn ausschaltet sollte man schlafen gehen ;-)

05:42 - Tom

Hi Finn, also nun werden mir die Bilder auch angezeigt, jedoch nur im png Format, gibt es eine Möglichkeit die Formate jpg und gif ebenfalls anzeigen zu lassen?

05:10 - Tom

Hi, bin auch grad am rumtesten, jedoch wird mir ebenfalls nur der Text angezeigt, woran kann das liegen?



20
Oct
2009

22:27 - Tony

Hi, how can i change the loading-text before the images show up? I want to change it into my own language. Thnx

15:51 - paul

immer noch

14:17 - panther

ja, einer da!

13:10 - paul

hallo, einer da

07:48 - Guido

OK, hat sich erledigt, wer lesen kann, ist im vorteil ;-)



19
Oct
2009

19:56 - Vic

Hello, I have imageflow displayed in a plugin panel on my website. How can I stretch the imageflow to fill the panel widthways? Right now I have a large panel with a small wheel of images in the center. Thank you



18
Oct
2009

13:09 - Guido

kann mich nur anschliessen: tolle arbeit. leider bekomm ich nur die texte zu sehen, nicht die bilder. hier mal kurz die php-info bzgl. GD: GD Support enabled GD Version bundled (2.0.34 compatible) FreeType Support enabled FreeType Linkage with freetype FreeType Version 2.3.9 GIF Read Support enabled GIF Create Support enabled JPEG Support enabled libJPEG Version 6b PNG Support enabled libPNG Version 1.2.37 WBMP Support enabled XBM Support enabled wo könnte der fehler liegen ? danke



17
Oct
2009

23:11 - Cedric

Hallo, habe gerade etwas mit dem ImageFlow herumgetestet. Wirklich tolle Arbeit, danke. Gibt es eine Möglichkeit, das Gliden nach dem laden mit einer startID zu entfernen? So, dass der ImageFlow gleich mit dem startID Bild aufgerufen wird und nicht von Bild 1 zum zum startID Bild gleitet. Nur so kann ich den ImageFlow als Navigation in einer Seite benutzen.

20:44 - G.R.

Nozomi. Maybe I have misunderstood your question but what I do to achieve a different look to any of the images that I want to enlarge, is to create a separate page of html to surround the larger image and then write a unique block of JavaScript, within that html, to control how it will be presented to the viewer. In other words the onClick event brings the viewer to a new web page rather than just a larger image. Hope this helps.

20:06 - Nozomi

Thx G.R. for your suggestion. I've a little bit some question. If I want to run some script after onClick event for each image How to cope with this situation ? I found in document about "domReady function" but it run a same function for all image instead of run different script for different image as I want.

09:18 - G.R.

Nozomi. In the section, just after the Credits, marked "Setting option defaults", insert "false" instead of "true" after "reflections:" (without the quotation marks, of course). You could upload refect2 and reflect3, just in case you change your mind.

07:14 - Nozomi

If I want to use only JS without php and I don't care for reflex effect How to do? Please



16
Oct
2009

19:41 - G.R.

Yong Fei. Which click do you want to disable. There are 3: button, unfocused image and url.

11:54 - Susanne

gibt es eine Möglichkeit noch weitere funktionen in bezug auf "highslide" zu ändern als die die du auf deiner Seite als Beispiel hast? ich möchte ganz simpel "font-family" des "alt-tags" ändern und ich möchte den text rechts vom Bild haben. Die "highslide.css" bringt mich nicht weiter. Und auch sonst scheinen mir die Optionen in Verbindung mit "highslide" sehr eingeschränkt zu sein.



15
Oct
2009

13:08 - Yong Fei

I want to disable click to image. How to do? plz help me.



13
Oct
2009

18:54 - Roy

beim durchblättern durch Finns Blog habe ich die Lösung gefunden - wer lesen kann ... Ich hatte keinen Pfad in hs.graphics.Dir auf der HTML Seite - ein Hinweis darauf währe trotzdem nützlich. hs.graphicsDir = '...';

13:38 - Roy

Zunächst - DANKE für dieses super Script. einfach zu verwenden und optisch die meines Erachtens derzeit beste Gallery. Leider mag mich die highslide-Funktionalität nicht. Außer einem "Loading image" will bei mir nichts starten. Die highslide-Demos laufen hingegen super. Kennt jemand das Problem - was mache ich falsch? Schon mal Danke.

11:23 - Daniel

domReady(function() { var instanceOne = new ImageFlow(); instanceOne.init({ ImageFlowID:'rollover' , reflections: false, reflectionP: 0.0}); }); also so sieht das dann bei mir in der datei aus und es tut sich nix...wäre nett, wenn wir jemand einen tip geben könnte.

11:17 - Daniel

hi, erstmal danke für die schöne arbeit. ich habe leider ein Problem und zwar nimmt dein Plugin keinerlei Änderungen an. Ich habe oben im "Header" der "imageflow.js" ("button:true" etc.) Werte verändert sowie ganz unten wie es in deiner Anleitung steht aber es tut sich NICHTS. Des Weiteren habe ich auch mal das .png für den Scrollbutton verändert und selbst das wird nicht übernommen. Was mache ich falsch?



12
Oct
2009

19:54 - Tobias

habs herausgefunden. Habe einfach den folgenden code angewendet und tada die bilder werden angezeigt. Also liegt es daran das ich nicht die GD Bibliothek besitze. (Standard bei xampp nicht dabei ?) Nun meine frage wo bekomme ich die ? var example_2 = new ImageFlow(); example_2.init({ ImageFlowID: 'example_2', reflections: false, reflectionP: 0.0 });

19:25 - Tobias

Hallo zusammen, wie so einige, hab auch ich das Problem das nur die Filenames angezeigt werden anstatt die Bilder. Wenn ich jedoch den benutzten Pfad in die Adresszeile angebe wird mir das Bild einwandfrei angezeigt. Woran kann das liegen. Bzw. was braucht ihr noch an Informationen um dies zu beantworten. Bild Adresse: http://localhost/red/node/reflect2.php?img=/hoeck/img/img2.jpg

03:28 - Jim Everhart

I cannot get my images to show in the webpage all I see is the file names. Please email your answer to jim.everhart@gmail.com Thank you



11
Oct
2009

10:56 - Finn

@ andreas: Such mal nach den setTimeout Parametern im Quelltext und spiel mit den Werten rum, um die Animationsgeschwindigkeit zu verändern. Wenn sich dadurch wenig ändert ist dein Browser der Flaschenhals (muss die sichtbaren Bilder alle 50ms resizen... ;D) Endlosvariante ist für die nächste ImageFlow Version geplant...



10
Oct
2009

15:38 - G.R.

andreas. ANIMATES IMAGE GLIDING setTimeout

15:08 - andreas

hey, erstmal muss ich sagen SUPER skript ! passt für meine wünsche perfekt :) allerdings hab ich zwei fragen: kann man die geschwindigkeit ändern wie schnell die bilder sliden ? und kann man eine endloskette machen an bildern, also das es nach dem letzten bild wieder von vorne beginnt ? denn ich will das immer 3 bilder zu sehen sind, und wenn man das letzte bild anklickt ist rechts alles leer, und das will ich damit verhindern ! wäre super wenn du mir helfen könntest ! lg

10:15 - Finn

@ Stefan: Das habe ich noch nicht ausprobiert. Versuch es doch einfach mal...

10:14 - Finn

@ Frank: Nein... du kannst das img position:absolute im CSS deaktivieren, das macht einen lustigen vertikalen Effekt, ist aber sicher nicht das was du willst ;D

10:13 - Finn

@ Bat: Ruf mal direkt den Bildpfad im Browser auf. Die php Datei sollte dir dann eine Fehlermeldung ausspucken. Vielleicht kann man dann auf das Problem schließen!



09
Oct
2009

11:29 - Bat

Ok, hab rausgefunden, dass am besten 2.0.28 laufen soll, das beschriebene Problem tritt allerdings auf einer 2.0.34 auf. Hast du ne Idee, worans liegen könnte?



08
Oct
2009

22:46 - Bat

Hi Finn, gibt es eine Mindestversion der GDlib? Hab ne GDlib die auch PNG Transparenz unterstützt drauf, aber es klappt nur mit der reflect2.php, ansonsten sieht man nur die Bildnamen.

20:35 - Frank

Hallo Finn, kann man die Bilder auch vertikal revolvieren lassen? Viele Grüße von Frank

16:48 - Stefan

Hi Finn et al. Wahrscheinlich sehe ich den Wald vor lauter Bäumen nicht mehr: Gibt's eine Möglichkeit, dass Imageflow in Kombination mit Highslide nicht nur Bilder vergrößern, sondern auf Wunsch auch HTML-Elemente im Highslide-Popup anzeigen kann - und das in einer Galerie (wenn ich's richtig verstanden habe, ist in der Dokumentation nur die möglichkeit onClick=... hs.expand... und onClick=...window.open gegeben). Dank & Grüße, Stefan



07
Oct
2009

21:24 - Ben

Is there a way to make ImageFlow loop continously?



06
Oct
2009

19:07 - Paul

Hi there I'm using ImageFlow 0.9 within a project to display a range of products. When you click on the product image at the front it changes some content elsewhere on the page via ajax and all works great. Is there anyway though that when you click on one of the images either side, to bring it to the front, that I can change the content via ajax at the same time rather than having to wait until the image has got the front and then clicking on it again to change the content? I guess it would just require a minor adjustment to the image.onclick part of the js file and I tried to make an amendment but with no joy. (Please note that I don't have any javascript skills). Many thanks in advance, Paul.

14:16 - Richard

Hallo, ist es irgendwie möglich auch externe Bilder anzeigen zu lassen? Denn imageflow klappt bei mir nur mit Bildern, die ich auch auf meinem Server liegen habe. Das wär sehr gut wenn es gehen würde. Danke für eure Antworten schonmal :D



05
Oct
2009

22:37 - Peter

onClick kommt kein Bild nur loading im Verbund mit Highslide

20:07 - Thommy

Anbei noch mal eine Grafik mit meinem Problem. Ich habe die CSS-Eigenschaft "Overflow" mit Absicht auf scroll gesetzt: http://www.pic-upload.de/view-3292773/1.jpg.html Gruß

19:33 - Thommy

Hi, hilft nicht. Mir würde es auch reichen, wenn ich irgendwo die height ändern könnte. Oder zumindest die Reflexion rausnehmen könnte. Die habe ich zwar in der js-datei schon auf false gesetzt aber der nimmt noch die hälfte des Platzes weg. Griß Thomas

14:23 - Jan

Ist es möglich, dass die Bilder sich nicht dynamisch verändern, wenn man das Browserfenster verkleinert/vergrössert? Es soll sich also nur der Container verändern können..



04
Oct
2009

20:23 - G.R.

Thommy. Es ist wichtig Punkt Nr. 13 in die FAQs lesen.

19:22 - Thommy

Ich bin schon sehr sehr weit unten, ich dacht evtl ist das über z-index änderbar. Gibt es da evtl eine Möglichkeit Grüße Thomas

18:15 - G.R.

Thommy. Du musst die links weiter unten stellen. Alles ist veraenderbar in imageflow.css

17:21 - RobinWillDE

Ich bin mitlerweile auf den gedanken gekommen das mein Server kein PHP 4.3.2+ hat. Ich probiere jetzt ob es offline auf meinem PC funktioniert.

17:08 - Thommy

Hallo, ich habe Imageflow installiert und nun überdeckt es mir ca. 100px nach unten meine Links. Was kann ich dagegen machen? Das Script an sich ist aber Top. Viele Grüße Thomas

16:46 - RobinWillDE

Irgend etwas verweigert anscheind das Bilder auf der Homepage angezeigt werden. Die Bilder, Buttons und Slider werden nicht angezeigt. Ich kenne mich mit Der Programmier Sprache nicht aus daher sind meine Fehler suchen erfolglos.

16:24 - RobinWillDE

Ich bin Schritt für Schritt der Anleitung für Imageflow gefolgt habe alles nach anleitung geändert hochgeladen oder eingefügt doch leider werden mir keine Bilder angezeigt. Wenn ich jedoch auf den (Fehlendesbild-)kasten drücke öffnet sich eine neue Seite mit der Großansicht. Hilfe! Meldet euch mal bitte Webmaster@Robin-Will.de

14:18 - Godfrey Ryan

Jonah. You refer to coverflow each time, yet you do seem to be using imageflow. I also notice that you have a link to a packed version of imageflow.js. Try working with an unpacked version. Linking to a seperate js file is what you are doing already with the tag but I don't think it's the problem. You might have a fundamental problem in uploading your javascipt for imageflow.

11:59 - Jonah

Hi again. I've set my page up a little more regular. But I'm still having the same problem despite turning off reflections (they still seem to appear in firefox.) In fact when I use any options they don't seem to work, such as the coverflow start ID or start animation... I can turn them to true or false or set startid as 3, but it just comes up the same with the first image to begin with... what else am I doing wrong? You mentioned linking all js files? not sure how i would do this as I've put them in the places in the instructions of the js I've used...? Thanks for any help again.



02
Oct
2009

12:20 - Daniel

Hi I'd like to integrate Fancybox with ImageFlow. Do you think, its possible? Do u have an Idea how to do that? Id like to show a bigger version of the images onclick. I already used the onclick thing, but now i dont know what to do, because fancybox expects tags, wich mess up the imageflow. http://fancybox.net/



30
Sep
2009

21:53 - psprofi

Hallo, Ist es möglich 2 boxen mit verschiedenem Inhalt Direkt nebeneinander anzeigen zu lassen? ich bekomm das nicht hin.

20:04 - Godfrey Ryan

Jonah. There's also a problem on Google Chrome but everything seems fine on all other browsers. I had a similar problem when developing my own site and I found that if reflections were disabled in the imageflow.js options, running two or more scripts simultaneously was ok. By the way I notice that you have a very unusual html layout. Should you not reorganize your html into the standard head and body tags? And also, putting links to all js files rather than keeping some of them in the main html file might help.

18:23 - Jonah

Problem on Internet Explorer. Hi, I think the coverflow is awesome, but it won't work for me on explorer. it was working, until i added image rotator at the top of the page also... both work together well in firefox, but only one in explorer. could you have a look at my site and see what may be causing this, thanks: http://ashling.yorkwebsites.co.uk/jonah

13:11 - chennarao

I downloaded the zip file, loaded up the example file and the images don't seem to show. and also me change the css but its not working before as well as after changing css can u give any idea about that

09:06 - Thomas108

Ok, für alle die das Problem auch einmal haben sollten, es lag an den jpgs. Habe Sie nochmal mit einem anderen Programm komprimiert und jetzt scheint es zu laufen.



27
Sep
2009

10:48 - Thomas108

Hallo Finn Ich arbeite gerade an einer Website und habe das Problem, dass im Firefox (3.0 und 3.5) einige von den Bildern nicht immer geladen werden. Ziemlich willkürlich sind es meist eins oder mehrere der letzten drei von acht Bildern. Ich habe die Startseite testweise schon online unter: www.art-direct-service.de Erstaunlicherweise funktioniert alles in IE6, IE7 und IE8. Lokal in Xampp funktioniert es auch mit Firefox. Ich benutze reflect2.php (wahlweise mit png und jpg). Mit reflect3 .php erscheint eine GDlib Fehlermeldung. Ich habe laut php.info: "GD Version 2.0 or higher" sowie PHP Version 5.2.0-8+etch15. Die Seite ist valide. Ich sitze jetzt seit gestern Abend davor und finde nicht raus woran es liegen könnte. Habe schon mal probeweise andere Bilder verwendet, sowie alle FF Add-ons abgeschaltet, alles ohne Erfolg. Hast Du einen Tipp woran das liegen könnte? Vielen Dank schon mal für Deine Hilfe! PS: Lizenz(en) kaufe ich selbstverständlich, wenn alles funktioniert ;-)



26
Sep
2009

17:53 - Godfrey Ryan

Web-Anfaenger. Du hast nicht gesagt ob die Bilder in den anderen Web-Browsern angezeigt werden. (Firefox, Opera , Chrome.......)

17:00 - Godfrey Ryan

Steve. All the image sizing and scaling, as well as the distance between images can be adjusted in the options of imageflow.js. Just be aware that they will all be interdependant. A lot of trial and error may be necessary to achieve the result you want.

16:59 - sifrtekhne

hallo Finn_Rudolph Moechte gerne wissen , wo Imageflow in Drupal integriert werden soll ? Habe Imageflow in Plugins unter Slideshow positioniert, dann kann ich es sehen in drupal_views ; dann kriege ich das Message : muss in plugins sein ; dort kann ich es aber nicht in Drupal lesen ; Freundliche Gruesse aus 'sud'-africa ;



23
Sep
2009

23:49 - Victor

Hi Finn, I am interested in having the animations rotate upward (like a smile) instead of downward (like a frown). I have adjusted the javascript file line 479: var newImageTop =, but I'm not getting the right results. Do you think its possible to add a flag to control the rotation direction.

17:39 - Martin

Hi - I'm having a problem with Imageflow and IE8 - the main problem is that grabbing the slider seems to be very difficult and once grabbed I have to move the mouse up the screen a little before dragging sideways, else it drops the slider. A secondary problem is that it sometimes highlights/selects the whole page (which goes purple) instead of the slider. I've tried turning off text selection with javascript which works but I'm a bit concerned that there may be side-effects I haven't discovered yet. Anyway, the main problem is the first one: in other browsers such as Firefox, Opera, Safari, Chrome, the slider works fine.



22
Sep
2009

16:49 - Steven

Bit of a stupid question probably - but how should I go about adjusting the size of the images? They're currently scaled smaller than I would like. Cheers, Steve

10:42 - Web-Anfänger

Bei mir werden die Bilder einfach nicht angezeigt. Der Flow funktioniert, aber bei den Bilder kommt im IE nur der Rahmen und eben das kleine rote Kreuz im Eck dass das Bild nicht vorhanden ist! Kann mir bitte jemand helfen???



21
Sep
2009

21:01 - Mushu

Thank you for this good Cover Flow! it's perfect and very light, with a slideshow it will be perfect! Good Job and Thank you for the Community

13:12 - Martyn Wilkinson

Two requests which would make it easier to position the caption over the top of the images: 1) Ability to explicitly set the caption DIV width. This stops the DIV extending across the screen and capturing clicks to the right. Could be a property called captionWidth. 2) Click-detection on the caption: this allows a click on the caption to be processed as though it was a click on the frontmost image. Turned on/off in the settings. I'd also like to request the ability to register two callbacks. The first would be called as an image is about to become the frontmost; the second would be called when an image is no longer frontmost. Both callbacks would be passed the index of the image. These calls would allow the DOM to manipulated--to emphasise the highlighting for example, or change the onclick handler.



19
Sep
2009

22:36 - Dan Brady

To move slider, could mouseover and drag be implemented instead of mousedown and drag?



18
Sep
2009

13:24 - Thomas

Kann ich in die Caption auch ein img tag einbauen damit ich ein icon für die Eigentliche Beschreibung des Text machen kann? Wenn ja warum wird es bei mir nicht angezeigt er fügt den Tag und Text ein. Aber ich sehe das icon nicht.

12:30 - marv

tach zusammen, wie kann ich denn am besten die abstände der bilder definieren? mein ziel ist es, dass sich die bilder im hintergrund nicht mehr überschneiden... mit imageScaling: false wäre das zwar der fall, dann behalten die bilder jedoch auch ihre größe bei (logischerweise). sie sollen also im hintergrund zwar kleiner werden, sich jedoch nicht mehr überschneiden. vielen dank schonmal im voraus, marv

00:52 - kald

تحديث الايميل



17
Sep
2009

20:43 - Philipp

Hi, auf http://rootwar.org/gallery/set.php?id=72157621421855469&title=shots kannst du meine implementierung von ImageFlow sehen, leider lädt er Bilder nicht sobald sie anstatt auf die Platte auf ein Http Ziel zeigen. Ist das normal? Hoffe hier kann mir geholfen werden Grüße Philipp

15:13 - ollih

If you want to support png reflections in IE6 with TwinHelix's iepngfix http://www.twinhelix.com/css/iepngfix/ then the php generated images will need to end with .png. You can do this by using the reflectionGET parameter and setting it as { ImageFlowID:'myImageFlow', reflections: true, reflectionPNG: true, reflectionP: 0.2, reflectionGET: '&height=20%&.png'}. Once you've followed the instructions for including the IE png fix, your images will now be reflected in IE6.



16
Sep
2009

18:46 - ollih

Hi Finn, There is a problem with Imageflow and IE6, IE7 and IE8 that wont fade out a transparent png without ruining the transparency. These options will recreate the error: instanceOne.init({ ImageFlowID:'myImageFlow', reflections: true, reflectionPNG: true,opacity: true,}) There is not currently a known fix for this problem. The only solution is either not use transparency (reflectionPNG: false), or dont use opacity (opacity: false) I am also experiencing a display error when using these options instanceOne.init({ ImageFlowID:'myImageFlow', reflections: true, reflectionPNG: true, reflectionP: 0.5, reflectionGET: '&height=10%'}) the percentages of reflectionP and reflectionGET do not match so the image is stretched.



15
Sep
2009

21:42 - Chris

Bei mir will ImageFlow einfach nicht. Sitze da schon 2 Tage dran. Weiß aber auch nicht genau was ich Schritt für SChritt machen soll. Wirklich nur die angegeben Dateien hochladen, oder alle? Und was mus ich bei step 3 machen...?

16:01 - Kip

This is very good - and easy to use. The action is smooth and attractive in FF and Opera but 'chunky' and disconcerting in IE(7). Can anyone suggest why this is and whether there is a way to smooth it?

13:52 - Manuel

@splendidus: Please, could you show me an example of using auto-scroll? I'm very interested in that.

12:06 - sbh

hi ! what is the parameter to keep the original size of my image in imageflow ?

12:05 - hi ! what is the parameter too keep the original

hi ! what is the parameter to keep the original size of my image in imageflow ?

10:28 - @marjeta von md

ich habe das Problem gefunden. Es lag an der Pfad zusammenstellung in den php dateien. Ich habe die auskommeentierte Variante aktiviert und dasnn hat es bei uns funktioniert. anbei zu besichtigung die url: http://projekt2.stagingserver2.de/de/fotogalerie/galerie2.php



14
Sep
2009

22:16 - nick

does this support HTML..?

20:40 - @md von marjeta

Hast Du ein URL wo man sich das mal anschauen kann?

17:40 - macangelo

is it possible to have only one of the links on the images opening in a new window, and the others opening in the same window? Thanks a lot! (I love your work!)

14:30 - md

ich habe noch ein bisschen rumprobiert, aber er zeigt mir einfach die fotos nicht an. im ff sehe ich die rahmen der fotos und die alt tags, kann auch navigieren aber fotos sehe ich nicht. im ie8 bleibt er bei der ladeanzeige stehen. deaktiviere ich das javascript sehe ich die fotos jedoch. kann mir bitte jemand weiter helfen, bräuchte das dringend.

13:14 - marjeta

Hallo Finn, jetzt häng ich doch wieder am Firefox 3.0. Ich selbst benutze 3.5 aber es gibt doch den einen oder anderen der noch FF 3.0 verwendet und hier wird Imageflow weiterhin vertikal angezeigt. Gibt es hierzu einen Workaround? Hier die Problem-Seite: http://www.mprah.de/layouts



13
Sep
2009


11
Sep
2009

18:11 - md

ich habe die js, css und php dokumente auf meinen server geladen. die aufrufe in den header eingebunden. bei aufruf der galerieseite wird die galeri nicht angezeigt. das script hängt bei "loading images 0/4". habe ich da was übersehen?



10
Sep
2009

17:32 - loner

When will be possible to have an autoscroll function? someone already implemented it?

06:52 - G.R.

Soren. Both are adjustable in imageflow.css



09
Sep
2009

20:06 - Daniel

I downloaded the zip file, loaded up the example file and the images don't seem to show. I created my own page and the picture didn't show on that either. Any suggestions as to why?

15:09 - Søren

Hi Finn, is it possible to adjust the alignment of both the slider and the caption somehow? I have the problem of very light surfaces 'eating-up' white text (and of course the opposite can be problematic with dark text on a dark surface) ...



07
Sep
2009

04:31 - Lou

The reflection is almost impossible to get right ... any1 got the reflection working good on a background or gradient.



06
Sep
2009

19:44 - Adam

Hi Finn, your cross-browser right-click solution is great. Currently, the click field is only one element. What if I want to enable a click field for multiple elements?

13:45 - Tester

Hallo, dies ist ein Test, wie der Text angezeigt wird

07:42 - Lou

ya, finally got it to work, just now the reflection is too black, while using "reflectionPNG" as true don't know why ...



05
Sep
2009

22:59 - G.R.

Just keep experimenting with all the options. You would be surprised how interdependent they are.

22:57 - Lou

It's just very weird, I mean it should work, it's getting frustrating ...heh, but thanks for the help, any more ideas?

22:55 - G.R.

LOU. This may be a long shot, but insert a very large top and bottom margin on the outer image wrapper div to give a whole lot of leg and head room. Sqeezing image flow into too small a space , I have found , gave me all kinds of problems.

22:44 - G.R.

Lou. sorry about that. I should have checked the incoming posts first.

22:42 - G.R.

I suppose this is logical because PHP is a server-side scripting language and the Dreamweaver internal browser does not call any files from the server, at least I don't think it does.

22:40 - Lou

ya I uploaded to see on my website, but still does not show, the images don't show, only the text on the left side corner, and of course no reflection. Don't understand why...

22:24 - G.R.

LOU. I presume that you are running your slide show live on the web, while developing, becase I have found that the Dreamweaver internal browser does not show anything when I enable reflections. Whereas everything is ok on all web browsers.

21:30 - Lou

Checked if my server had GD library and it does, I assume the version does not matter much right? I don't get why enabling the reflection makes the images disappear... any help would be appreciated it. Thanks.

18:44 - G.R.

Roeland. Set a position for slider and caption in imageflow.css. Do not forget to leave sufficient margin (more than 100px) below the image outer wrapper div, while you are experimenting. I am presuming that you have read the instructions for doing this in Finn's FAQs.

18:29 - Roeland to G.R.

Love to hear how, dude. Can't figger it out

17:56 - G.R.

Roeland. Yip.

17:48 - Roeland

does Imageflow allow the caption to be displayed underneath the slider iso above?

14:54 - Ruben Wiersma

Is it possible to change the reflection into an image of a shadow? So that reflect2.php generates a shadow instead of a reflection by getting the width of the image given and making the shadow image the same size and putting it under the given image?

10:24 - Lou

I mean that when I turn the reflection back on, the images don't show and of course neither does the reflection

10:21 - Lou

Having the exact same problem.. help please

06:32 - andugoh

sorry for the post ?php $files = glob("gallery/testimage/*.*"); for ($i=1; $i

06:31 - andugoh

Hi have problems with reflection in image flow. Whenever i do a refresh page the images duplicates twice as many images. I use this to call our my images Please consult



04
Sep
2009

23:21 - Dan Brady

on ie7, images don't all load. It stops after loading 42 of 47, doesn't go further, loading stops. Works fine on firefox 3.5.2, safari 4.0.3 on mac and windows (windows is running 64 bit vista)

16:03 - Dan Brady

I should add that trying to get a different caption for each image caption in highslide is not a problem for text, but can't get text and links in the caption.

13:12 - Godfrey Ryan

Hi Finn, I must say that imageflow is easily the best slideshow that I have ever used. After a lot of fiddling around, I have got mine to work just as I want it, with just 3 small glitches in Internet Explorer, which are insignificant. Many thanks for a fine piece of work.



03
Sep
2009

23:36 - Tim

Never mind, it's working great now!

21:24 - Dan Brady

Trying to get a different caption for each image caption in highslide. The alt caption from image for imageflow caption is fine, but want each expanded image caption in highslide to be different. Just can't get any of the highslide caption methods to do this through imageflow. thanks Dan Brady

20:47 - Tim

Hi Finn, All i get is the images showing at full size. I thought I had it all set right, but it's not working. Any help would sure be appreciated!

19:42 - george

Hi, Finn.. I have a problem.. when reflection it´s=TRUE.. the images doesnt appear in my web... and when i turn it to false the images appear but without the reflection.. I have 5.2.10 PHP version and GD library.. where can it be the problem..?

09:55 - G.R.

Man Fatih. You are welcome. But what I'm saying is that is is showing up wrong in 7 or 8 browsers. This means that you have not done the configuration properly. Who knows why I.E. is showing it correctly. I.E has produced a "corrective error" If I were you, I would forget about I.E. untill the end of your set-up, and then when you are happy with it in every other browder, put in some alterations to make it acceptable in I.E. I.E. does a lot of wierd things for no apparent reason. I can tell you that it took me almost a week to get mine working half right in I.E.

03:14 - TheManFatih

Thx for the tips, but in fact not IE is showing it wrong... so for example a gallery with 3 Picture: In IE it looks like - oOo but in FF it looks like OOO - So the pictures do not get smaller in the background in Firefox. Thats my problem. How you can see on my link i actually use opacity :(



02
Sep
2009

22:19 - G.R.

Man Fatih. I have had another look at the page with Internet Explorer 8. It's the only one showing an image differential. You would be better off doing all your developement in Firefox or Opera, because I.E. is the one that gives all the trouble. You will then need to put some fixes in for it.

20:23 - G.R.

Man Fatih. It's hard to know what you mean about scale in Firefox, All the images look the same height in all my browsers including Firefox. You need to do a heck of a lot of fiddling around with the options to get everything as you want it. For instance, for some inexplicable reason, you get much more control over image size with opacity enabled. Just set all the values to 10, if you do not want opacity. Also give the outer image container a bit more space at the top and bottom. You also have a problem with adjacent images bumping into each other. There is no problem disabling the mouse wheel. Just delete the piece of script controlling it. It's not hard to find. Keep experimenting. It will take some time.

19:43 - The Man Fatih

Can nobody help me ?



01
Sep
2009

16:19 - G.R.

SET OPTIONS slider : false, ganz einfach!

16:04 - Thomas

Kann ich irgendwie denn slider ausblenden oder ausschalten! Ich hätte gerne nur die Bilder und den Text angezeigt!

10:31 - Godfrey Ryan

Sven, If you are still having problems, send me your Email (in non link format, to prevent web-scooping) and I will send you all four files for my page http://www.godfreyryan.com/Slideshow1.html which works fine on all browsers.

10:00 - Sven

Godfrey Ryan, I'll try it. Thanks!

09:35 - Godfrey Ryan

Sven, Can you describe the formatting and distortion problems? Also, looking at your link, I can see that you have not left enough space at the bottom of the scrollbar to move it down any further. You must make another outer container around the imageflow div container and write some css rules for it's top and bottom margins and it's position. It's in the FAQs. Then you will be able to move it up and down all you like. The older I.E. browsers do not allow as much space at the bottom of the scrollbar.

02:26 - the man fatih

oh. im sorry. this should mean: in the actual version of firefox the scale is not executable ...

02:25 - the man fatih

hey hey :) in the actual version of firefox the scale. so all pictures have the same high. is not executable. in IE it looks right. you can see what i mean on www.nightlife-cooperation.com/index.php?site=crew i am also interested in how i can deactivate the function of the mouse wheel in the gallery. PS: ich spreche auch deutsch =D



31
Aug
2009

23:58 - Dan Brady

hmmmm, css part didn't get posted. It is:

23:56 - Dan Brady

Can't get highslide to dim background when image enlarges. Imageflow js is: var Highslide_3 = new ImageFlow(); Highslide_3.init({ ImageFlowID: 'Highslide_3', buttons: true, aspectRatio: 1.525, imagesM: 1.2, startID: 10, onClick: function() { return hs.expand(this, { src: this.getAttribute('longdesc'), dimmingOpacity:0.75, dimmingDuration: 50, outlineType: 'rounded-white', fadeInOut: true, captionText: this.getAttribute('alt') } ); } }); css for images is:

21:55 - @ Bender, Ruben Wiersma

You should add longdesc="linkofchoice" to your image tag. E.G.

20:43 - Sven

Ich habe Version 1.2.1 installiert und in älteren Browsern funktioniert die Formatierung der Galerie nicht. Bilder verzerrt und slider & scrollbar passt nicht. I installed version 1.2.1 and in older browsers, the formatting does not work. Distorted images and slider and scrollbar does not fit. What can I do? www.united-pixel.com/test_update

19:12 - Bender

Ich bin ein Idiot! Erst das Maul aufmachen, bevor man in die FAQ schaut... Ganz ehrlich,Du bist super! mach weiter so!

19:04 - Bender

Huch :D habe gerade erst gemerkt, dass Du ja Deutsch kannst :) Also nochmal... Ich müsste die Möglichkeit haben beim klicken auf ein gewünschtes Bild, dass sich dann auch eine Gewünschte URL öffnet. Ist das Möglich? Grüße!

19:01 - Bender

Hello m8! i Love ur Script, it's AMAZING! But tell me please, is it possible to change it in this way, that by clicking on the choosen picture u can open an link of choice? I need help, i tried to do it, but it's nearly impossible for me to find how to do it. Love u m8!

18:11 - JSG

Feature suggestion: show html for every image. So you scroll to one pic and some content (might be name of photograph, might be anything else) is shown below the imageflow. Compare it to iTunes, where the corresponding album is shown in the table below.

11:59 - Ian

Got it working with Wordpress/NextGen but want images to show Thickbox style and not in just a new window. NextGen supports this so it must be easy with ImageFlow ;-) I presume I need to add a class="thickbox" to the image links but not sure where to do this - can you help?



30
Aug
2009

22:21 - Sven

Hi Godfrey Ryan, ich hatte die begonnen mit meinen alten Einstellungen die 1.2.1 zu installieren. Die Galerie war danach hin. Ich nehme mir aber nochmal die Zeit und werde probieren. Danke

19:58 - Godfrey Ryan

Sven, Ein Vorschlag: die neue Version (1.2.1) ganz voellig einstellen, und danach eine ueberpruefung wiedermachen.

17:08 - Sven

Hi Finn, erst einmal vielen Dank für imageflow. Ich habe ein Darstellungsproblem der imageflow Galerie mit älteren IE Versionen(6&7). Bilder werden verzerrt. Die 8er Version funktioniert. Ich habe auch schon with und height zugewiesen - geht nicht... Kannst Du bitte mal kucken und nen Kommentar geben. Danke www.united-pixel.com/test PS Wenn ich auf die neuste Version updaten möchte, muß ich alles neu erstellen?



29
Aug
2009

16:41 - mani

Finn never mind, I've sorted it out :D I went to 'imageflow.js' and changed the 'reflections' to 'false' :) now there aren't any reflections but my images are all visible :) which is just what I needed :D i love ImageFlow! :D

16:25 - Finn

@ mani: PLEASE post a link... I'm not a wizard ;D

16:25 - Finn

@ ceasar: Yeah that's nice, but they don't use the latest ImageFlow version and therefore it breaks with the IE and has some more bugs which I already fixed in the latest version... Take a look at the http://finnrudolph.de/ImageFlow/Changelog to get an idea what has changed since version 0.9...

16:21 - Finn

@ Ruben Wiersma: Not in with the current ImageFlow version, but as this comes up very often in the shoutbox I consider implementing it in the next release... . o O (Whenever that'll be ;D)

16:20 - Finn

@ Thomas Pinchen: Err, I don't see any images in your HTML that could be interpreted by ImageFlow. Please take a look at http://finnrudolph.de/ImageFlow/Installation to understand how to implement it...

16:18 - Finn

@ Paul Hepple: You already figured it out by yourself. Put your code-snippet random_num = (Math.round((Math.random()*9)+1)); inside the domReady function and replace the number of the startId you're using by the variable random_num.

16:12 - mani

Hi i've followed all the on screen instructions and yet, when i open my website on internet explorer, the images do not show up :| The box around them shows up, and the navigation is perfect as well, but the only problem is that the images do not show up :( PLEASE HELP

14:01 - ceasar

Hai Finn. Perhaps this is nice to add to the extension page of imageflow http://www.imageflow.nl/

13:21 - Ruben Wiersma

Hey Finn. I really love your script. Is there a way to loop the images, so that there isn't an end to the flow? You can see my implementation here: http://www.devettevis.nl/index.php



27
Aug
2009

19:05 - Thomas Pinchen

Hey Finn, Thanks for creating Imageflow its an awesome extension. I am having a problem however in that my images aren't showing up. I believe its because reflect2.php and reflect3.php cannot be properly found. Do i need to place them with any particular files. http://www.purple-technology.com I would be really grateful for any help you can provide. Thanks Tom

17:26 - Paul Hepple

Hi. Any chance you can help Finn? I am wanting to make ImageFlow load up with the StartID as a random number. Any help will do? Thanks.

13:09 - Decbrad

Hi Finn, thanks for making ImageFlow available, it's amazing! I was just wondering if it is possible to set ImageFlow up so that the images scroll infinately? It would be great if when I scroll to the last image, that it starts over at image 1. Thanks a milion! Decbrad



26
Aug
2009

14:35 - Jeff

Hi Finn, I just have this problem, the images are not shown. Do you know why ? http://www.e-pnp.com/pages/jeux.php Thanks for your answer.

08:37 - Ian Davies

@splendidus Doh! Thanks, I'll try that!



25
Aug
2009

17:14 - Godfrey Ryan

Ivan. Everything can be changed by experimenting with the options. I have found that you can get much more control over the size if the images when opacity is enabled. You can just set all the values to 10 if you don't want any opacity. It's important to follow Finn's instructions, including any that are in the FAQs, to get maximum flexibility. It takes a bit of trial and error but you will get the settings you want in the end.http://www.godfreyryan.com/Slideshow1.html

15:49 - splendidus

@Ian Davies: There is a message further below from zickzack (dated Aug 19) with a fix for your problem (single image in IE). Did you try that?

13:16 - Ivan

Thanks to author for this script. Everything works fine, but the size of images is very large. I.e. width and height pointing out for example, 80 x 100, and displayed 300 x 500. What is the reason? in js: InstanceOne.init ((ImageFlowID: 'my_projects', Buttons: true, ReflectionPNG: true, Reflections: false, reflectionP: 0.0,));

12:55 - Ian Davies

Back again! OK, this one is a genuine bug, since I'm running the latest download now ;) A slideshow that consists of a single image doesn't display in IE (IE8 and IE7 tested). I know, a single image kind of defeats the point, but I've got the content coming out of a database that is controlled by the client, so I have to deal with the possibility of a single image being selected. It works as expected in Firefox and Safari.

10:03 - Ian Davies

Ok, by bad. I hadn't realised there was a new version just released on the 10th August! This might sort out a few other probs I was having with image sizing and reflection trasnparency

09:46 - Ian Davies

Hi. Love the script! I am trying to add the navigation buttons to my scrollbar/slider. I tried adding the buttons: true parameter but that didn't work. I then discovered that my download didn't include the button graphics (!!!) and my CSS didn't include the button classes at the end (!!!!???) so I grabbed them off the site, but it's still not working for me. Is there something I'm missing?



24
Aug
2009

10:56 - Roeland

Guys, I love the option of linking Imageflow to Highslide. I am stuck on linking to Highslide Slideshow though. I get the popups of Highslide, but not in Slideshow view. What is wrong in my code (I call the hs.expand now --> should I call hs.addSlideshow?) My instance code in imagflow.js now reads: instanceSix.init({ ImageFlowID: 'Roeland4', onClick: function() { return hs.addSlideshow(this, { src: this.getAttribute('longdesc') } ); } }); Thanks a milion for any help.



23
Aug
2009

21:38 - splendidus

First: Thank you very much for this script (ImageFlow). It works great, the code is clean, easy to understand and to work on. I added the auto-scroll functionality; it scrolls forth and back repeatedly (not circular). For those interested: Declare the variable var direction = -1; Add the following function: this.autoNextImage = function() { if(thisObject.imageID == (thisObject.max-1) && direction == -1) direction = 1; else if (thisObject.imageID == 0 && direction == 1) direction = -1; thisObject.MouseWheel.handle(direction); }; And call it within the init() function: if(this.autoScroll == true) window.setInterval(thisObject.autoNextImage, 3000); You have to add 'autoScroll' to the list of options (see this.default and optionsArray).

12:51 - splendidus

I'm looking for something like your ImageFlow, only with a circular Auto-Scroll feature (return to first image at the end ...) for commercial use. I wanted to ask if you plan to implement such a feature in the near future...



21
Aug
2009

17:21 - Paul Hepple

I have found the following code to make a random number: ****random_num = (Math.round((Math.random()*9)+1))**** This will generate a random number between 1 and 10. I am just not sure where to apply this code and what variables to change.



20
Aug
2009

23:54 - Danny

If your GD do not support "imagelayereffect" you can use code below: //imagelayereffect($output, IMG_EFFECT_OVERLAY); for($y = 0; $y $alpha_end) { $alpha = (int) ($alpha_start - ($pct * $alpha_length)); } else { $alpha = (int) ($alpha_start + ($pct * $alpha_length)); } $final_alpha = 127 - $alpha; for($x = 0; $x > 16) & 0xFF; $g = ($rgb >> 8) & 0xFF; $b = $rgb & 0xFF; $cx = imagecolorallocatealpha($output, $r, $g, $b, $final_alpha); imagesetpixel($output,$x,$y,$cx); } } //imagefilledrectangle($output, 0, $y, $width, $y, imagecolorallocatealpha($output, 127, 127, 127, $final_alpha)); //imagefilledrectangle($output, 0, $y, $width, $y, imagecolorallocatealpha($output, $red, $green, $blue, $final_alpha));

07:34 - Godfrey Ryan

Paul, I'm sure that it would be no problem in JavaScript but it is beyond my kwowledge. I'm studying JavaScript at the moment but I find it tough going. I'm sure that a google search would come up with a suitable piece of code. It's probably quite a simple change.

00:27 - Paul Hepple

One more question. I know that you can auto start the ImageFlow script on a certain image number. But can you stat the script on a random image? This would be very handy. Thankyou.

00:19 - elohi

Google are owned by Mafia: http://mafiawww.com

00:19 - elohi

Google are owned by Mafia: http://mafiawww.com

00:04 - Paul Hepple

Thanks Godfrey Ryan, it worked perfectly. I am absolutely positive I tried that at the start though, god knows, it works now. Thankyou.



19
Aug
2009

21:43 - Godfrey Ryan

Paul. At one time, I was running two completely different slideshows on two seperate pages. I made a completely new imageflow css file by copying the original and called it imageflow2.css. I then changed the class to imageflow2 in the html file and of course made sure that all class references in the new copy were changed to .imageflow2. I then put a link in the header to imageflow2.css. I can see no reason why that would not work on the same page. You will need to change the div id for each slideshow and write a fresh set of rules in your page css file, to control the height etc as per instructions from Finn in the faqs.

17:43 - Paul Hepple

Hello. I have successfully loaded multiple copies of ImageFlow on one webpage. My question is, can you set different CSS attributes to each one. I have tried to change the CLASS in the DIV with no success?

14:11 - zickzack

Hello Finn, your Imageflow is great. But I found a bug, if I load only one image. The Internet Explorer does not show the picture, he shows only the text of the alt tag. I fixed it in imageflow.js in line 577 by this code: var images = document.getElementById('myImageFlow_images').childNodes.length; if(images > 1){ thisObject.sliderDiv.style.marginLeft = (thisObject.newSliderX - thisObject.sliderWidth) + "px";} But I think there should be a better way to fix this bug.



18
Aug
2009

18:45 - Finn

No answer from me untill next week, I am on vacation ;D

12:37 - Godfrey Ryan

Hi Lee, I'm afraid you'll have to wait for an answer from Finn on the highlight issue. I'm very new to JavaScript. If you make the centered image much bigger than the others, maybe that will make it more obvious. The space below the scrollbar can be altered by adding a position property to the .imageflow .scrollbar in imageflow.css. like this position: relative; bottom: -95%; The positions of all the elements can be altered within the two css files.

12:25 - Lee - me again

How do I apply the PNG fix for internet explorer? The menu images appear but the reflection doesnt.

10:30 - Lee - UPDATE

Hi again. I've managed to remove the spacing at the top and bottom of the imageflow by adding... margin-top:-9%; margin-bottom: -8%; But when im in the space below imageflow the mouse scroll is still active??? why is this?

10:14 - Lee

Thanks Godfrey. Love the cat's head for the scroller :-) Is there anyway I can highlight the main image? Also I have quite a lot of spacing at the bottom of the scroll bar?



17
Aug
2009

21:59 - Godfrey Ryan

Lee, the position of the buttons can easily be changed down at the bottom of imageflow.css. You can even substitute your own slider like I have, by changing the value of the properties in .imageflow .slider http://www.godfreyryan.com/Slideshow1.html

18:50 - Lee

Hi Finn, Is it possible to move the location of the buttons? Also is there anyway of having the image which is displayed in the center highlighted in anyway?



16
Aug
2009

20:28 - Wraith

Hi Finn, wollte nochmal auf das Problem mit der Navigation zu sprechen kommen. Mir ist aufgefallen, dass der Fehler (Imageflow in Kombination mit Highslide) auch bei deinen Beispiel auftritt. Wenn du auf ein Bild in Imageflow klickst, das Bild sich vergrößert und du die Pfeiltasten verwendest, siehst du wie bei Imageflow die Bilder weiter rücken aber im HS ändert sich nix. Gleichzeitig findest du in der Fehlerbox einen wunderbaren Fehler. Habe das HS mal geschrieben...sobald die was schreiben was hilft werd ich es posten, bzw vlt findest ja du den Fehler. MfG Wraith

14:38 - Godfrey Ryan

Enabling opacity in imageflow has fixed the issue with image-chopping in I.E.7 and I.E.8. Then setting all the values to 10 will effectively give no opacity. Bingo!



15
Aug
2009

13:53 - psprofi

Achja, wie kann ich es machen das man NUR mit dem Slider die bilder bewegen kann? MfG

13:50 - psprofi

Hallo Finn, Ist es Normal das die Rechts/Links Buttons immer durchsichtig sind?

04:26 - Keri

Hi, Finn -- As a first step I have uploaded the vanilla code to my ISP, as a test site to get it working there. It works as expected under FireFox but not under Safari (3.2.3). However, it does work fine on my iPhone (which is a Safari variant). Here's what I'm finding: everything loads, and I can move back and forth. I click an image (say, Image 3) and it loads. I use the browser 'back' button to return to the Flow, and it does return to (in this case) Image 3. But it no longer flows properly. And as I try to force it to move, the images begin to load at odd places on the page. Of course, a forced browser refresh causes a reload and things work once again, with the flow-head positioned at Image 1. Any ideas about what's up with Safari (or my ISP settings)? http://www.mywaikikicondo.com/stest/index.html



14
Aug
2009

22:09 - Bart

I already use jpegs.

21:06 - Finn

@ Bart: Okay, have you tried jpegs instead of pngs? Could be an FF on Ubuntu rendering issue...

14:22 - Bart

ImageFlow shows black lines around the images in FF 3.5 on Ubuntu, especially when "scrolling". See vertical black line on the rightmost image in the screenprint at http://www.heinsius.nl/imageflow-ff35.png, taken from http://finnrudolph.de/ImageFlow/Examples#White_background_color

13:15 - Godfrey Ryan

Hi Finn, Reducing the number of left and right images on imageflow has indeed improved it's performance on I.E. 8. In general though, I.E. 8 is just as bad as I.E. 7 from a web designer's point of view. A lot of the small irritating bugs seem to be still there. Thanks again for all your help. http://www.godfreyryan.com/Slideshow1.html

00:59 - Fat_Man

It's me again :P I`ve just found the solution. In Your shoutbox, of course :) Best wishes Fat_Man

00:12 - Fat_Man

Hello Finn, Please help me. I've been trying to install Imageflow with Highslide attached all yesterday's evening and I could'n have managed it. Today, I'm trying again - I've made some progress, but I only have achieved "loading" message. Could You, please tell me (in short and simple way), what I am doing wrong (or what I have to do, eg. where to paste a CSS code from http://finnrudolph.de/ImageFlow/Combinations#Rounded_corners_fading_and_captions)? Please, take a look on my gallery-to-be ;) http://www.fat_man.ovh.org/flow/index.html . Regards Fat_Man



13
Aug
2009

22:47 - Denis

Hi Finn, why Imageflow do not work if I just replace the file imageflow.js (v 1.0) per imageflow.js (v 1.21) ?

19:44 - mj

Michael Jackson almost 50 hitsongs overview in 15 minutes http://www.youtube.com/watch?v=As5XVm0Qz0I

19:18 - Finn

@ Timo: Das hat sich mit 1.2 geändert. Die komplette Changelog findest du hier: http://finnrudolph.de/ImageFlow/Changelog

17:52 - Timo

Hi Finn, "No image scaling" ist nichtmal schlecht. Mich hat aber bisher am meisten gestört, daß die Größe des zentralen Bildes abhängig vom Imageflow Container ist. Die dargestellte Größe war nahezu unberechenbar und sogar von Browser zu Browser ein wenig anders. Und nicht jeder Browser skaliert gleichgut, so daß selbst das zentrierte Bild mitunter verwaschen aussieht. Hat sich das bei 1.x geändert? Ich hänge noch bei 0.8 und hatte noch keinen guten Grund auf die aktuelle Version umzusteigen...

11:11 - Wraith

Hallo Finn, das Gruppieren ist nicht unbedingt das Problem (dachte daran könnte es liegen). Das Problem ist das bei den geslideten Bildern die Navi nicht geht. Habe heute bei Highslide mal nachgefragt. Antwort findest du hier: http://highslide.com/forum/viewtopic.php?f=1&t=4240&start=0&st=0&sk=t&sd=a#p20324 Ich schau mal, vlt finde ich noch einen Workaround oder bau selber einen.



12
Aug
2009

22:18 - Finn

@ Godfrey Ryan: You're welcome ;D

21:59 - Godfrey Ryan

OK Finn. I'll try all that, but first I will make a new page with the new version of imageflow. Many thanks.

21:08 - Finn

@ Wraiht: Dafür braucht es kein Workaround das gruppieren sollte auch über die Funktion "slideshowGroup" funktionieren. Schau mal in die Highslide Docu: http://highslide.com/ref/hs.slideshowGroup und bau das dann einfach ein wie im folgenden Beispiel auch src, outlineType und fadeInOut eingebaut sind: http://finnrudolph.de/ImageFlow/Combinations#Rounded_corners_and_fading

16:56 - Wraiht

Hi Finn, zuerst einmal möchte ich sagen, dass dein ImageFlow super is. Ich verwende es in Kombination mit Highslide und es funktioniert einwandfrei. Leider hab ich noch ein Problem bei der Navigation. Bei Highslide wird die Navigation zwar schon angezeigt, aber sie funktioniert noch nicht (die link-tags fehlen ja aufgrund von Imageflow). Gibt es hier bereits ein Workaround (für die slideshowGroup) so das ich wenn die Bilder groß sind die Navigation auch verwenden kann? Vielen Dank im Voraus, Wrait PS: Falls du dir ein Bild machen willst www.bujinkan-leipzig.de/test

16:22 - Finn

@ Godfrey Ryan, hmmm.... strange. Can you try to disable the IE7 hack in the css (http://finnrudolph.de/Blog/ImageFlow_1.1_-_Aspect_Ratio_and_IE7_Tweak). Perhaps the IE8 has some problems with that. Uh and please make use of the imageFocusMax variable. Do not set it to 14, but to a value like 4 or 5. That will heavily increase the performance!



11
Aug
2009

22:42 - Godfrey Ryan

It's worth having a look at my site with I.E. 8, just to see how bad it is. http://www.godfreyryan.com/Slideshow1.html

22:37 - Godfrey Ryan

The new Internet Explorer 8 mashes and chops the images when they are scrolled in imageflow even worse than I.E. 7. This problem does not occur with any of the other browsers .



10
Aug
2009

17:21 - SCaro

I'm sorry to cause you so much trouble. I have just found out that I can use HTML code in the captionText attribute when I add Highslide. Once again thank you very much.

17:08 - Finn

@Uwe S: JavaScriptObject ist domaingebunden, aber wenn du mir eine E-Mail schreibst (finn.rudolph@googlemail.com) dann können wir sicher auch eine Lösung für eine Server basierter Variante finden.

16:35 - SCaro

Thanks for everything. I have another question. I am working with Imageflow and I have added Highslide. Is there any posibility to add controls to the Highslide effect?

15:36 - Uwe S

Hallo! Wir finden JavaScriptObject sehr interessant und würden es gerne in unser eigenes CMS einbinden. Gibt es auch eine Serverlizenz?

12:32 - Finn

@SCaro: Hehe, wenn du reflections aktiviert hast, dann killst du deinen armen kleinen PHP Server mit MonsterBildBearbeitung ;D Geh mal mit der rechten Maustaste auf den Bildnamen und ruf das Bild direkt auf. Die reflect.php sollte dann einen Fehler schmeißen. Wahrscheinlich ist die Execution Time zu lang. Je nach Webserver liegt die so bei 30 bis 60 Sekunden pro Script. D.h. wenn die reflect.php 2 Minuten braucht das riesen Bild mit einer reflection zu versehen, dann wird es vorher abgwürgt. Wenn das der Fall ist kannst du entweder die Server Settings ändern, reflections ausstellen, oder die reflections lokal erstellen und dann hochladen.

11:25 - SCaro

Lieber Finn, am Ersten ich wollte ihnen für Imageflow danken, es is super! Aber ich habe eine Frage, ich sehe keine Bilder, nur die Bildnamen, wenn die Bilder sind gross (2300x3072 px), aber wenn ich die kleiner machen (1024x768 px) es klappt. Gibt es eine Lósung für arbeiten mit grosseren Bilder. Danke für alle!



09
Aug
2009


08
Aug
2009

19:15 - Clint

@Finn: Love ImageFlow and is thinking of using it in a site. Is there anyway of getting it to auto scroll through the images if a fix time passes and no manual scrolling by viewer?



06
Aug
2009

13:39 - Finn

@ Denis: *UARGH* You're right... have not tested that with the IE... Thanks for the bugreport, will take a look... seems as if the IE looses the event handling between the objects...

12:14 - Denis

another bug report with IE7 ? Finn, in example of JavaScripObjet, the 1st cube is automaticly loaded, I click on the second for the loading, on the third etc... and when I click on the last cube all the other do not work. The images are freezed. I have to reload the page.

06:23 - JMar

any way to allow it to search for a new topic without removing the playing videos?

06:16 - JMar

Dude YouFlow is amazing! I was looking for something like this for a long time, it makes it so much easier to see a lot of videos with little time, you're the man Finn!



05
Aug
2009

22:13 - Denis

Hi Finn. Is it possible with JavaScriptObject that all the images be loaded without you have to click on the main image ? Like ImageFlow. And for everybody who like Cinema4D, this is a good link ; http://www.instantshift.com/2009/03/31/80-excellent-cinema-4d-tutorials-and-best-practices/

15:10 - Kai

Hi Finn. Do you have an example somewhere, how I could use imageflow as a navigation; means with links around the images (I once saw that from a swiss programmer)? Thank you for this nice work.



03
Aug
2009

13:06 - Godfrey Ryan

Hi Finn. I'm delighted with imageflow. I noticed that I.E. 7 wouldn't render two instances on separate pages, so I had to copy imageflow.js and rename it imageflow2.js and make the corresponding changes in the second page html. I wonder is there any way to make the images glide back to the same one that opened up a link when reloaded. It would save the viewer having to find the spot where he started from before he clicked for the link? Thanks http://www.godfreyryan.com/Slideshow2.html



02
Aug
2009

19:09 - Finn

@ David: Why not, same principle as http://youflow.finnrudolph.de/ You just need to use the Flickr API to grab the content http://www.flickr.com/services/api/flickr.photosets.getPhotos.html

18:50 - David

Hello. I just wondered. Is ImageFlow ever going to be compatible with pulling in photosets from flickr?



31
Jul
2009

21:15 - michael

thx, danke :-)



30
Jul
2009

03:43 - michael

hi finn, great tool thx i've just starte to make my own version of imageflow with highslide, there i saw your already communicated version. i've implementet everything like it should but it's not working. the imageflow works fin but when click in an image there is a ...loading... screen, and nothing else happens. i included all files and change the start parameters. is it importent where i put the new css classes? in my midn it doesn't care but ich put them in both css files but no possitiv reaction. can you help me. some information, longdescript is direktlink and everything is correct importet also the pictures from highslide best regard michael



29
Jul
2009

20:47 - Finn

@ Denis: Thank you for the bugreport... there are weird things going on in the IE world. You won't believe me what caused the IE7 to crash the Examples: It did not like the a tags before a div container. Does anyone understand that? The Introduction page is fixed. Was caused by a text-align:center;

20:06 - Finn

@ dude: imageflow.css at .imageflow .slider -> background-image:url(slider.png); and please READ the http://finnrudolph.de/ImageFlow/Installation carefully: "Replace unique_name by a unique name."

14:33 - dude

also , if i load 2 imageflow classes in one page the first gallery wont load and the second one loads , because the second one is lighter than the first one why is that ?

11:25 - Denis

I have just tried JavaScriptObjet on IE7 instead of IE8 and in the tab "Introduction", the Mini's is centered and cutted by the Nokia. In the Exemples, no example work properly. In Cinema 4D, the Mini's works properly, no problem. Any bugs with IE7 ? because every work perfectly with IE8.

02:32 - dude

errr, where exactly did you specify the path of slider.ong ? cant find it in any .css !

00:04 - Finn

@ Denis: Currently working on a C.O.F.F.E.E. solution that scripts the rotation in CINEMA 4D. First result: http://www.flickr.com/photos/finnrudolph/3764543999/ and if you're interested in the progress check out http://www.cgnetwork.de/forum/showthread.php?t=102094



28
Jul
2009

22:23 - Denis

Excellent your Mini Cooper at 360° ! You are the best ! And why not to make this same animation as the Nokia with 200 pictures ? That would be a file of 10mo but it would be fine to see that !

09:00 - Finn

@dude: jepp... it misses the imageflow.css make sure, that it is included in the header.

07:49 - dude

any idea? :D



27
Jul
2009


25
Jul
2009

22:47 - Finn

Free Cinema4D Models... I like the Mini Cooper: http://www.oyonale.com/modeles.php?lang=en&page=58



24
Jul
2009

20:32 - Finn

@ cj: Ja, eine ordentlich Rechnung kann ich gerne ausstellen. Am besten mir einfach nach der Zahlung via PayPal eine E-Mail schreiben mit der Rechnungsadresse und dem domainnamen.

20:01 - cj

Hallo Finn, erstmal ein dickes *thumbsup* für das prima coverflow! Nur eine kurze Frage: Schreibst Du über den Betrag der Lizenzkosten bei kommerzieller Nutzung eine ordentliche Rechnung? zzgl o. inkl Mwst? Beste Grüße, cj

18:57 - Finn

@ marjeta: Nicht dafür ;D

17:39 - marjeta

Jetzt hab ich mir den aktuellen Firefox 3.5.1 runtergeladen und schon klappt´s auch. Scheint wohl ein Problem mit älteren FF Versionen zu sein. Jetzt muss ich nur noch IF und Highslide zum fliegen kriegen dann bin ich zufrieden ;-) Danke für die unheimlich schnelle Reaktion!

17:20 - Finn

@ marjeta: Hmm... bei mir wird ImageFlow im Firefox 3.5.1 horizontal dargestellt. Ein beliebtes Problem bei vertikaler Ausrichtung der Bilder ist das Fehlen der imageflow.css! Aber das scheint hier nicht das Problem zu sein.

17:05 - marjeta

Hallo Finn, ich habe ein Problem mit Firefox 3.0. Mir wird ImageFlow nur vertikal angezeigt. Hier zur Seite: http://www.mprah.de/layouts.htm Ich komm einfach nicht mehr weiter... Vielen Dank im voraus für Deine Hilfe



23
Jul
2009


22
Jul
2009

02:47 - Paul Rodarte

Thank Finn, but I got it figured out.

02:25 - Paul Rodarte

Where it dims (greys out) the rest of the screen in a certain percentage and the picture becomes the main focus.

00:04 - Finn

Learning Safaris Touch Events on the iPhone and iPod Touch: http://www.vimeo.com/5700951

00:02 - Finn

@ Paul Rodarte: What "overlay parameter" do you mean? The z-index value?



21
Jul
2009

22:24 - Paul Rodarte

One last question. How do you pass the overlay parameter to the imageflow function.

11:23 - covers

hi can not get imageflow working in internet explorer any version? can anyone help works in safari and firefox.



20
Jul
2009

11:11 - Finn

@ Paul Rodarte: I don't know. Try it, would interest me too...

10:34 - Finn

CSS cursor:url() - or why Opera does NOT stick to (quasi)-standards: http://my.opera.com/community/forums/topic.dml?id=283962



19
Jul
2009

03:05 - Paul Rodarte

I have this working with HighSlide on a per image basis, but is it possible to make it pull up a HighSlide horizontal gallery, with Thumbs.



17
Jul
2009

17:00 - @erlis

The implementation misses the imageflow.css

13:47 - Erlis

Hi, Please help me, I'm trying to load ImageFlow dynamically with prototype.js.. Having The following code: var objBody = $('gsContent'); $('ContentAlbum').hide(); var objSlide = new Element('div', {'id': 'pearImageFlow', 'class': 'imageflow'}); objBody.appendChild(objSlide); for (var i = 0; i < slideshowImages.length; i++) { $('pearImageFlow').insert(new Element('img', {'src': slideshowImages[i][0],'longdesc': 'javascript:focusImage(\''+i+'\');', 'width': slideshowImages[i][2] , 'height': slideshowImages[i][3], 'alt': slideshowImages[i][4]})); } var pearImageFlow = new ImageFlow(); pearImageFlow.init({ImageFlowID:'pearImageFlow',reflections:'false',preloadImages:'true', slider:'false'}); But I can't get it to work.. (have a look at http://erlis.se/~erlis/gallery/gallery2/main.php?g2_itemId=1037 and click on Carousel. Please help me.

01:22 - Wemerson - Brazil

Hi, I'm trying to use ImageFlow with PHP 5.2.9 and GD bundled (2.0.34 compatible). But the images does not appears. This version of GD are greater than the minimum required... Can you help me?



16
Jul
2009

01:09 - DT

Hey, I was wondering if it is possible to incorporate Lightbox with this script. I notice when you click on an image it opens it in another page. It would be nice if you could implement lightbox. Anyone know if this can be done and also how? Thank You



15
Jul
2009


14
Jul
2009

16:34 - Marco

Yes, you can! It can be done in the 'imageflow.js' file. All I needed was that komma to continue in the script.

14:04 - Marco

Is it possible to combine the 'highslide' scripts with the one's that are made in 'Imageflow'. For instance: I want to use a certain 'aspect ratio: 3.5' that I used before I implemented the 'highslide' script. Can I combine these scripts within the two javascript files?



13
Jul
2009

16:37 - Wiza

Great script..Wonderful script 1) i have an alphabet A B C D and so on.. So when i click on the alphabet it will point to the image number. lets say b is image 3. and d is image 9.. how to achieve this?



08
Jul
2009

23:26 - Oliver Mühlfeld

Hi Finn! As supposed, http://www.rotorlabs.com is online since today. Johan Wagner and me would like to thank you very much for the development of these great apps and for your direct and efficient support as for your documentation. Stay cool! Oliver



07
Jul
2009

21:16 - Paul G

This is a great app, but how about using client-side reflections, such as Reflection.js (MooTools), so that we can use it on local file system and not rely on any server technology?

19:18 - Ace

Hi does ImageFlow combination with the newhighslide 4.1.5 work?



05
Jul
2009

10:34 - popopome

Hello~ ImageFlow is wonderful. I would like to understand math part of it but i could not follow any detail thing. If you don't mind to show how it works, can I get some math related information? my email is popopome@googlemail.com (i mean gmail) Thanks.



04
Jul
2009


03
Jul
2009

07:38 - IainGR

A second question... Is it possible for images to move left and right by movement of mouse without clicking?

07:24 - IainGR

With ImageFlow, is there a way to have a small popup containing some text when hovering the cursor over the current image?

00:44 - oscar salas

hey excelent work, i have a question, how i can add a link to the images??? i want to click one image and go to other page, i tried to put an "a href" but the image desappear.



01
Jul
2009

23:07 - mezzer

Its verry good!

09:30 - Timo

@Matthias Scheible: Ich selbst kann Dir vermutlich nicht helfen. Da müsste sich Finn (oder jemand der sich mit der Materie besser auskennt) schon den Quellcode ansehen. Trotzdem möchte ich Dir vielmals danken: Ich habe selten eine derart höfliche und sauber formulierte Anfrage von einem unter-18-jährigen gelesen! Du kannst Dir nicht vorstellen, wie erfrischen das ist. Du könntest die Sache abkürzen, indem Du einen Link postest, unter dem man sich die Sache ansehen kann. Vielleicht ist die Lösung ja auch so einfach, daß Du sie schlicht übersehen hast. Eine Anfrage auf Englisch wäre auch nicht schlecht. Ich erkläre mich gerne bereit sie für Dich zu übersetzen, falls Du Probleme hast!

00:16 - Brisa

Hi I can't seem to remove the reflection. Where do i put this in the JS file var example_2 = new ImageFlow(); example_2.init({ ImageFlowID: 'example_2', reflections: false, reflectionP: 0.0 }); ?



30
Jun
2009

22:19 - Omar

Is youflow free and how do I go get it?...are there instructions on how to implement it?

22:15 - Mahanamatashi

Matt - Thanks for the info. Unfortunately, I still can't get the images to display in Imageflow. As you say, the problem occurs when reflections are enabled. As I would like them to remain so, could you explain how to tweak Reflect.php? I've tried adjusting the image links themselves, but have had no joy. I'm using the sample index.html page, in a folder called CoverFlow and sub folder called img.

02:50 - Matt

Chain posting! The "no image" issue, in my case, is only with reflections enabled. Reflect.php is looking for a local filesystem path. Potential solutions (for other people having this problem, not necessary for imageflow itself) are: * tweak Reflect.php to convert URLs to local filesystem paths (probably best) * disable reflections * create your site structure such that relative URLs and filesystem paths happen to be the same (as seen in the imageflow demos) Shouldbox is SO going to destroy this post.

02:30 - Matt

Oooooor the shoutbox could totally break my post.

02:29 - Matt

For those not seeing images: ImageFlow hates absolute paths. :) In particular, this will break imageflow: But this will work: (Assuming it's a valid path, of course.) Oddly, ImageFlow will appear to load the images either way-- it just won't display the former case, even if the URL is correct. (I tested this with the sample index.html that comes with IF.) I've just now figured this out. I may try to fix it, or I may just use relative paths.



29
Jun
2009

13:23 - Finn

@ all: Sorry for not answering your requests. I am currently "under fire" with my Staatsexamen (http://en.wikipedia.org/wiki/Staatsexamen) until (hopefully) the 16.07.2009. If I find some time between my learning sessions I'll try to answer as much requests as possible. So long...



28
Jun
2009

18:48 - Matthias Scheible

Sehr geehrter Herr Rudolph, mein Name ist Matthias Scheible, ich bin 15 Jahre alt und habe Ihr ImageFlow Script (in der Joomlafassung von Litchfieldmorris) verändert, sodass ich 17 Bilder implementieren kann. Nun stehe ich jedoch vor dem Problem, dass der Slider unter den Bildern beim Laden der Seite nicht mittig steht. Wenn Sie mir bei dieser, für mich sehr knifffeligen Arbeit helfen könnten, wäre ich Ihnen sehr dankbar. Wenn Interesse besteht, melden Sie sich doch unter: MWScheible@gmx.de



27
Jun
2009

01:04 - Andre Silva

I loved this new way to see videos on YF, but the only thing i missed was the time of each video, in YT we have this option but not in YF. Hope u put this option... Thanks



26
Jun
2009

17:02 - Uwe Noelke

Hallo Finn, ich freue mich sehr über Deine Weiterentwicklungen von Image Flow. In meinen aktuellen Relaunch http://www.menschenfotografie.de habe ich die neuste Version eingebaut und bin mit dem Ergebnis sehr zufrieden. Gerne würde ich Dir wieder eine finanzielle Anerkennung für Deine Arbeit überweisen. Bitte schicke mir eine Email an uwe@noelke.com mit Deinen Kontodaten. Viele Grüße Uwe

02:05 - Kevin

Well, I got impatient and unistalled the implementation of imageflow and installed the wordpress nexgen gallery plugin and nexgen imageflow plugin, which achieved the results I wanted. It also provides an upload and image description in the management interface. It also allowed me to hide the nexgen gallery which is only used for sample images from the coppermine gallery. Thanks anyway.



25
Jun
2009

13:10 - chestaz

how to make this image flow 1.1 start auto, i mean the image flow will anmation all image looping

12:40 - jorge taus

Can i get a imageflow version in ASP

06:59 - Kevin

D'oh! I'm also using Imageflow 1.1. The server also has GD 2.0.34 compatible. Thanks again.

01:00 - Kevin

Forgot to mention the versions. php 5.2.9 and IE8

00:57 - Kevin

Hi Finn, Great script! I implemented it in Wordpress 2.8 and it works great on a page, but not in a post, but that's okay for my purposes. There is an issue tough. If i put more than 7 images in the div, the captions and scroll disappear. Any ideas on why that might be happening? http://omniversified.com/theprichardcollection2/ Thanks



24
Jun
2009

18:40 - Bel

Hi. Love your code, it's brilliant. But I am having a weird problem with Safari/chrome. They are re-sizing the image + reflection to the original image size. So if orig image is 280x180, and with reflection it is 280x270 then Safari only shows the image+reflection at 280x180 which makes it look very weird. I can't work out why; it happens even if I use the example files in the download package BUT only with webpages on my server. If I view your site in Safari it's fine. I can't work out what could be the problem. Please help!!

15:08 - Bart

Hi, Using the startID attribute I can tell ImageFlow to start at a certain image. Is it possible to always have ImageFlow start at the last image? Thanks, Bart



21
Jun
2009

20:32 - SteveB

Hey Finn, is it possible to populate ImageFlow automatically from a Flickr feed? Thanks.



20
Jun
2009

23:44 - Mahanamatashi

Hi. I've installed ImageFlow on a test page on my home pc. Although the basic page runs, with the ImageFlow structure appearing, no images are shown. ImageFlow only shows placeholders for each image. The Flow functions properly and selecting an image then opens up the image itself, but ImageFlow shows no images initially. Any suggestions?

23:01 - peterk

so I guess it should be injected into the .js file as well, similar to getAttribute-alt .Can't figure it out.(I'm thinkiing about a buy it now link or something...) Thanks Peter

22:58 - peterk

Hi Finn How can I put an anchor in the caption div?Thsi script: http://highslide.com/ref/hs.Expander.prototype.onAfterGetCaption works well with highslide on it's own but as the markup is different for imageflow(

15:54 - Jeremy

Success!! I was installing Highslide incorrectly. Thanks again, great script.

12:05 - Jeremy

So I think I understand where I'm supposed to put everything now, but it still doesn't work. I replaced the default Imageflow instance at the bottom of imageflow.js with the Highslide_1 javascript on the instruction page. Now when you click an image, the "Loading" box pops up, but nothing happens. My test site is at http://singlebarreldetroit.com/imageflow/index.php . Any idea what I'm doing wrong? Thanks.

11:24 - Jeremy

Hi Finn - Thank you for the prompt response. After much frustration I did decide to switch to Imageflow with Highslide. Unfortunately, I can't figure out how to properly install it. I'm a javascript novice, so a more detailed walkthrough would be very helpful. Two questions: 1) Where exactly am I supposed to put the "var Highslide_1 = new ImageFlow();" script listed per your instruction page? Does that go in imageflow.js, or in the html of the actual page? And where, specifically? 2) The div of the first example on your instruction page has the id="Highslide_1." Do I also need to change the default id in imageflow.js from "myImageFlow" to "Highslide_1"? Do you have a bundle available for imageflow with highslide? I could easily install it if I had a full example to study. Thank you for your time, I appreciate it.



19
Jun
2009

19:20 - Finn

@ Ray: Schau dir mal das Beispiel an: http://javascript.pastebin.com/f59ee0316 (erklärt wie man die handleMouseWheel Funktion von außen triggert.) Und das ist eine Anpassung, die ich mal für einen Kunden gemacht habe. Kannst dir ja davon mal den Quellcode anschaun: http://testground.finnrudolph.de/js/ImageFlow_1.1.1_Topper/

15:42 - Ray

Hallo, ich verwende aktuell ImageFlow in einem Projekt, bei dem die Bilder beim Klick auf einen Button vor/zurück gehen sollen und nicht wie vorgesehen auf Drag/den Slider/Tastatureingaben. Wenn ich das Richtig im Javascript Code gesehen habe müsste ich dafür nur handleMouseWheel(-1) & handleMouseWheel(1) an die jeweiligen Objekte zum Steuern binden - doch ich komme leider nicht an die Funktion ran von Außen. Gibt es dafür zufällig eine (einfach) Lösung oder hat das jemand schon mal gebaut? Danke & Gruß

15:24 - Finn

@ Jeremy: No, for the Mediabox needs a lot of stuff (img tag included by a tag etc.) which will actually be cropped by the ImageFlow script onload (http://iaian7.com/webcode/mediaboxAdvanced#examples). Have you considered using Highslide instead of the Mediabox? http://finnrudolph.de/ImageFlow/Combinations#Highslide

02:48 - Jeremy

Is there a way to integrate imageflow with Mediabox (http://iaian7.com/webcode/Mediabox)? I want it so that when you click a thumbnail, it loads the photo in Mediabox's lightbox window. I was originally using Imageflow for Lightbox2, but I had mediabox on the same page. Mediabox uses the mootools framework, while Lightbox2 uses prototype, which conflict. Thanks. - Jeremy (openapple@gmail.com)



18
Jun
2009

11:40 - Finn

Taking JavaScript to the next level: http://www.chromeexperiments.com/

10:23 - Finn

@ Rajat: Hi, sorry for missing your post. It fails, for the reflect.php files don't support grabbing images from an different server. You could rewrite them to do so (that includes rewriting the caching of the reflected images on your local server). But either way I'd not recommend that, for you can never rely on external content. It will be a security risk, for everyone could call the reflect.php and give it any image on the web (or images that contain bad stuff?) to create a reflection... and now think of what HUGE images can be found on the web ;D So if you want to rewrite it make sure you're using a whitelist approach...

10:18 - Finn

@ revers: Scaling (and interleaving) of the images is the key thing that creates the illusion of a 3D rotation. Therefore: Not possible with ImageFlow. You can set the centered image to be exactly the image dimensions you want, but only if the images are all the same size.

00:07 - Rajat

Hi Finn, Is it possible to run imageflow with remote image/images present on a different server? Like can I run imageflow with google logo image by providing the link to it ? I tried it but it didnt work. The features list says "Supports Image Links" so i thought it meant this. Sorry I am re-pasting my query but I thought you missed it.



17
Jun
2009

22:06 - revers

I mean: the selected image should have its own size and should not be scaled.

14:40 - revers

How can I let the script use my images in the original sizes? They all get scaled and I dont'w ant that.

10:23 - Finn

Illuminated Bottle Wall: http://vimeo.com/5116519

10:20 - Finn

@ Hprata: 1. Nope, my IE8 renders http://finnrudolph.de/ImageFlow/Examples#Transparent_reflections nicely with transparency. 2. Why would you like controls on top of the ImageFlow navigation? That is a question for the Highslide Forum (http://highslide.com/forum/), cause I've never done that before...



16
Jun
2009

20:52 - Hprata

Two questions 1. reflectionPNG: true, seems not to work in IE 8. It renders as solid black reflection 2. Can you give an example on how to send info to Highslide to get addSlideshow with controls working, while having regular setup as well like src: this.getAttribute('longdesc'), outlineType: 'rounded-white', fadeInOut: true, dimmingOpacity: .7,

12:52 - Finn

@ Jamie: Not possible at the moment, but you can implement it without too much hazzle by triggering the glideTo function externally with an timer

10:52 - HJ8AG

Hi Finn, I'm just wondering how I would get the image to open in a new window when clicked? Thanks!

08:06 - Rajat

Hi Finn, Is it possible to run imageflow with remote image/images present on a different server? Like can I run imageflow with google logo image by providing the link to it ? I tried it but it didnt work. The features list says "Supports Image Links" so i thought it meant this.



15
Jun
2009

17:46 - Roeland @ross

Hi, the imageflow css starts with defining width. Base is 100%..

17:45 - Roeland

Hi, I love this. Though I don't see how the addon the Highslide gallery option. How do you the call that function? Adding on from var Highslide_3 = new ImageFlow(); Highslide_3.init({ ImageFlowID: 'Highslide_3', onClick: function() { return hs.expand(this, { src: this.getAttribute('longdesc') ; } }); All the rest works fine - but don't know whether Imageflow allows me more options with Highslide. Thanks a mill, Roeland

16:07 - ross

hey anyone able to make imageflow smaller. i have been trying to resize it to



13
Jun
2009

12:40 - Jamie

Hi - just wondering if its possible to get the photos to scroll through automatically - haven't been able to come across any documentation so far. Many thanks.



12
Jun
2009

20:14 - Finn

@ zys: Probably the reflect2.php has not rights to write its reflection images into the image folder. Make sure it is chmodded right. Check if files like http://finnrudolph.de/content/imageflow/refl_2e9018546b306c158b5b6cd0ddbcc816_demo_01.jpg are created on your server...

20:11 - Finn

@ Josef: Sorry I don't support that outdated version anymore. And I highly recommend using Highslide JS instead of the lightbox... besides that: Why would you want to build another navigation above the ImageFlow navigation? Please take a look at this example if it is an alternative for you: http://finnrudolph.de/ImageFlow/Combinations#Rounded_corners_fading_and_captions

20:07 - Finn

@ Smartin: Dunno whats wrong if you don't post a link on your implementation!

20:06 - Finn

@ Marc: Thanks for your feedback!



11
Jun
2009

09:49 - zys

@ Finn: I am using 15 images or more in ImageFlow, but I noticed loading time is rather long (3 seconds or more), I noticed the most of the latency is due to reflect.php, I like to use reflection but I was wondering if you have any tips to speeding this up? The cache argument is set to 1.



10
Jun
2009

12:35 - Josef

Hi Finn, i use the imageflow 0.9 in combination with lightbox2 - is it make possible to navigate in the lightbox like the lightbox-standalone-version? I was looking for an Example in the web, but i can`t find it. Many thanks for your good work!



08
Jun
2009

21:32 - Smartin

I am new to this and I have been trying to follow the instructions. I installed PHP on my server running IIS and as far as I can tell everything is correct. When I add the files to my directory and load the page I want to view the images on, I get loading 1 of 3 but nothing happens. Any ideas what I could check.

15:10 - Marc

I found two issues: 1.) in the loadingProgress function, the first if is wrong, it should read if((p < 100 || thisObject.firstCheck === true) && thisObject.preloadImages === true). The missing parentheses around the first OR made the loading bar appear, even if preloadImages was set to false. 2.) There should be a baseDir option incorporated, that lets someone set a prefix to the .php files. In most cases, the html file will not be in the same directory as the .php files.



07
Jun
2009

22:07 - Tom

@ Finn: working url with my modified IF version: http://omv2009.hauptversammlung.at/ (just enter anything into the registration popup) your 'longdesc' version: http://omv2009longdesc.hauptversammlung.at/ The videostream should be positioned according to the clicked slide. the longdesc version only works with FF but neither with IE6 or IE7. I've exchanged 'longdesc' with 'url' but anything else (but maybe 'official' attributes?) will work. And if you change your 'this.getAttribute("longdesc")' to "this.longdesc", IE will also work with 'longdesc'... can't remember if FF did, too. ... and ... yes I've already paid for the obviously commercial use ;)

16:34 - Armageddon

Vielen Dank für die schnelle Hilfe @ Finn! :-)



06
Jun
2009

21:52 - Finn

@ Tom: Huh? That is not possible. Any onclick linking at http://imageflow.finnrudolph.de/ works fine with IE6 and IE7 based on the information in the longdesc attribute of the images. Could you link on an example site where I can reproduce your findings?

18:57 - Finn

@ Armageddon: Dann rate ich dir dringend das mal durchzulesen: http://unixpapa.com/js/mouse.html Ist generell möglich, aber cross browser nur mit etwas Aufwand.

11:21 - Armageddon

Oh, habe vergessen zu erwähnen, das sich mein Beitrag auf "ImageFlow" bezieht!;-)

07:57 - Armageddon

Hallo, ich suche nach einer Lösung, in der man nur per Mittelklick auf eine neue Seite gelangt und beim normalen Linksklick sollte kein neues Fenster aufgehen. Wäre super wenn mir geholfen werden könnte! :-)



05
Jun
2009

11:37 - Tom

Hy Finn, I found a problem with IE (at least 6 and 7) regarding ImageFlow. IE couldn't read the 'longdesc' attribute of an image in your code at line 356 when doing "image.url = image.getAttribute('longdesc')", "image.url = image.longdesc" does work however. Anyway, I replaced 'longdesc' with 'url' (or whatever) and used that in my html. That also worked with 'getAttribute'... strange things happen in the IE world... Btw, a consequence of this problem was a not working 'onclick' event.

11:01 - Finn

@ Dennis: Thanks for the feedback. Will take a look into it... o O ( It's always a joy to debug JavaScript for the IE *freak* )

08:55 - Dennis

Hey Finn, I'm testing out JavaScriptObject to replace my flash based 360 product spins. What a great script! One problem, it seems to be buggy in IE 6. It's throwing a function expected error message. I see this in the demos on your site as well. Is this something your working on?



02
Jun
2009

17:10 - Cassie

IE7 + 8 return an "invalid argument" error on line #514 in imageflow.js - if and ONLY if there is a single picture. In this instance this.newSliderX returns NaN instead of 0. I fixed this by assigning (thisObject.max-1) to a var and setting it to 1 if it returns 0.

13:25 - George

@ Finn: hmmm... ich weiss gar nicht woher es kommt - wahrscheinlich von einem anderen versuch. Ich hab es den mooflow.js einfach unbenannt und jetzt geht es mit 7 aber nicht mit 8. Ich schau es mir mal an. Vielen Dank für deine Hilfe!

10:23 - Colin

Hi Finn, I got it working. I had the reflect2.php and reflect3.php copied to the wrong directory. I moved them, and it is working perfectly. Thanks! Here is the link if you would like to see: http://www.nirvanananda.org/galleries/lc/

09:27 - Finn

@ Colin: Without a link on your implementation? No ;D

09:25 - Finn

@ George: Der IE meckert, dass er Kram in der mooflow.js und imageflow.js nicht mag... Happy debugging: http://sixrevisions.com/javascript/javascript-debugging-techniques-in-ie-6/

08:55 - George

@ Finn: Vielen Dank für den Tip - es hat mit Firefox super geklappt! Allerdings ist der Imageflow mit IE nicht sichtbar... (http://www.divajo-photography.com/test-site/)

07:46 - Colin

I am having trouble getting the images to appear. I checked the FAQ, and then turned off reflections via "reflections: false, reflectionP: 0.0." That got the images to load. However, my server is running PHP Version 5.2.8 and GD version 2.0.34, so I think it should work just fine with the reflections turned on. Any ideas why it wasn't working?



01
Jun
2009

19:25 - Chris

Danke Finn, aber leider ließ sich das Problem mit den verzerrten Bildern nicht so leicht lösen, haben Sie noch eine andere Idee? Vielen lieben Dank!

18:06 - Finn

@ Amir J: Opera also fails.... seems as if you are overwriting the CSS attribute for the images globally somewhere. Try including the imageflow.js and imageflow.css as the last items in the header!

17:19 - Amir J

I am still having problem here in Safari browser, http://www.enoughproject.org/test/enough-news-test-page. The images do not change size upon scrolling. All images are cluttered too. Thank you



31
May
2009

22:29 - Finn

@ Chris: "null" steht da, weil keine caption gesetzt ist... einfach mal ein nbsp in den alt tag der bilder setzen. (ab v1.0 sollte das JS das eigentlich automatisch tun...) Wenn was verzerrt ist, dann fehlen die width und height attribute in den img tags oder sind fehlerhaft.

22:24 - Finn

@ UCC: *IEKS* IE6... ;D Try making your thumbnails used with ImageFlow smaller, make sure, that the reflect.php file has write access to the folder and caches the generated images...

22:18 - Finn

@ Terry Riegel: Nope there have been some changes to the javascript design. Please take a look at this to understand how to trigger that function from the outside: http://javascript.pastebin.com/f59ee0316

17:05 - Chris

Hi Finn, nochmal,... im Internet Explorer 8 wird genau in der mitte "null" als Text angezeigt... Die Adresse ist: http://lsvwahl.wsu.at/ Benutzername: wsu_nicolas Passwort: wsu_pia Im Punkt BMHS ist es eingebaut. Vielen Dank im Vorraus! lg Chris

16:49 - Chris

Hi Finn, PNG's sind bei mir leider verzerrt,... ich habe versucht in den Settings alle möglichen Variablen auf 1 zu setzen, aber das hilft leider nicht..., Das die "nicht" aktiven verzerrt sind ist nicht so schlimm, aber sogar das originale ist vergrößert, und hier sollte aber die Originalgröße vom Bild verwendet werden. Haben Sie irgendeinen Trick? lg Chris

09:53 - UCC

Hi, ImageFlow seems to work fine with IE and Firefox except when I put more then 10 images, IE6 stop to load and none of the images are displayed :-/ Sound like a IE6 bug but is there a way to fix it pleaze ? Here is the link : http://www.lescameliaspaysages.com/?page=Realisations thanks by advance! If you want to contact me for debugging, click on "UCC" at the bottom of the website



30
May
2009

23:03 - George

Hi Finn, ich habe versucht, dein echt cooles Tool auszuprobieren, allerdings geht es irgendwie nur vertikal statt horizontal. Woran könnte es liegen? Die Seite ist: http://www.divajo-photography.com/test-site/index.php ...vielleicht habe ich die unten gewünschte vertikale Lösung zufällig gefunden? ;) Vielen Dank, George

20:46 - Terry Riegel

I am upgrading from version .9 and am looking for documentation on the glideTo function. Is it the same as before? Thanks, Terry



29
May
2009

22:26 - Amir J

Hi Finn, There is a problem in outputting the imageflow here, http://www.enoughproject.org/test/enough-news-test-page in Safari browser. Any thoughts on this? Thanks



28
May
2009

23:39 - Terry Riegel

Ahhh, looking at the source I see it doesn;t do anything with the onCLick unless I have a url set.

22:53 - Terry Riegel

Hello, I am upgrading a copy of .9 to the new version and am having trouble getting the onClick to work. I have created a simplified case to show what my code looks like... http://www.localchurchresources.com/pages/start/coverflow_onclick.html



27
May
2009

22:57 - Jonas

Ah dieses rel! Merci viel viel mal, jetzt funktioniert dein cooles Skript. Noch viele gute Ideen beim Programmieren. Lg Jonas

18:31 - Finn

@ Jonas: Also momentan ist das dein img src "http://www.wapple.ch/reflect2.php?img=null" und das macht offensichtlich wenig Sinn. Du musst zwei Sachen ändern. 1. die reflect2.php in das root Verzeichnis kopieren (oder den Pfad entsprechend in der .js anpassen) 2. anstatt rel muss src in den img tags stehen, sonst passiert da nicht viel (nämlich "null" ;D)

18:27 - Finn

@ Chris: Seems as if your server has either not installed the gd library or disabled it.. You can use ImageFlow without the reflections http://finnrudolph.de/ImageFlow/Examples#No_reflections (while contacting your host ;D)

18:12 - Finn

Programming Language Inventor or Serial Killer? http://www.malevole.com/mv/misc/killerquiz/

16:39 - Chris

Ah, so it seems to be a server configuration problem. The host is networksolutions (inherited) - This is the message that appeared when I clicked on one of the spaces where an image should have been: Warning: dl(): Unable to load dynamic library '/usr/local/lib/php/extensions/no-debug-non-zts-20020429/gd.so' - ld.so.1: /usr/local/apache/bin/httpd: fatal: /usr/local/lib/php/extensions/no-debug-non-zts-20020429/gd.so: open failed: No such file or directory in /export/web/www.adler-consulting.com/reflect3.php on line 31 You are missing the GD extension for PHP, sorry but I cannot continue.

16:07 - Chris

Hope I'm not repeating myself - I don't see my last post so please help! The imageflow script worked nearly perfectly on my local server but I went live and the images aren't appearing? All of the other images on the site seem to be referencing the images folder so I'm lost? thanks for your help, Chris http://www.adler-consulting.com

14:50 - Jonas

@Finn: Hmm, also es klappt nicht! Hier mal meine Struktur: ich binde im Index inc/imageflow/imageflow.js ein. reflect2/3.php befindet sich auch unter inc/imgeflow/ ..... Irgendwo ist ein Pfad falsch, denn die grossen Bilder werden man daraufklicken angezeigt.

12:55 - Finn

@ Chris: Hmm... should work. Can you give me a link on your implementation?

02:03 - Chris

Wow! Yes, it's safari. But the window.onunload fix didn't address it? I inserted that here (maybe it should be elsewhere?): this.refresh = function() { /* Cache global variables */ this.iWidth = thisObject.imagesDiv.offsetWidth; this.maxHeight = Math.round(thisObject.iWidth / thisObject.aspectRatio); this.maxFocus = thisObject.imageFocusMax * thisObject.xStep; this.size = thisObject.iWidth * 0.5; this.sliderWidth = thisObject.sliderWidth * 0.5; this.scrollbarWidth = (thisObject.iWidth - ( Math.round(thisObject.sliderWidth) * 2)) * thisObject.scrollbarP; this.imagesDivHeight = Math.round(thisObject.maxHeight * thisObject.imagesHeight); window.onunload = function() { if (navigator.appName != "Microsoft Internet Explorer") { document = null; } }; Again, many thanks!



26
May
2009

22:59 - Finn

@ Jonas: Du musst den Pfad zur reflect.php in der imageflow.js entsprechend anpassen. Schau dir dazu mal das an: http://finnrudolph.de/Shoutbox/1241782741

21:25 - Conrad

problem gelösst. Hab versehentlich ständig die "packed" version verwendet. Noch ne Frage: Ist es möglich transparente GIFs oder PNGs anzeigen zu lassen, sodass der bg besser zu sehen ist? Wenn ich transp. PNGs verwende, ist der b der Einzelbilder immer schwarz. Later, Conrad

20:51 - Conrad

Hi Finn. ImageFlow ist ein echter Eye catcher! Habs vor dem Kauf mal gestestet. Leider zeigen Einstellunugen in der "imageflow.js" keine Wirkungen. z.B: "startID:8" oder "reflections:false". Was könnte das Problem sein? Beispiel URL: http://www.mesatronic.de/publics/imageflow/ Danke, Conrad

19:34 - Jonas

Sorry, hier der Link: http://www.wapple.ch/imageflow Die Srikpte befinden sich unter inc/imageflow/. Lg Jonas

09:09 - Finn

@ Jonas: Ohne einen Link auf deine Implementierungsversuche kann ich dir leider nicht helfen... Hellsehen kann ich nicht ;D

09:08 - Finn

@ PeterK: Why don't do you add that string to your echo output? something like echo "../".$yourimagestuff

09:06 - Finn

@ Chris: Hmm does that occur with Safari, or with every browser? Can you try adding the following inside the refresh function: window.onunload = function() { if (navigator.appName != "Microsoft Internet Explorer") { document = null; } };

09:02 - Finn

@all: Sorry for the delay in answering, had some "offline stuff" going on ;D



25
May
2009

18:27 - Jonas

Hallo Finn, Du hast ein sehr cooles ImageFlow, welches ich gerne einbinden möchte, doch hier liegt das Problem. Ich habe die Skripte in einem Ordner imageflow ausgelagert, doch nun ist irgendetwas mit dem Pfad falsch. Die Bilder werden nicht angezeigt. Hast du mir einen Tipp, wo ich den Pfad anpassen müsste? Merci Jonas

01:05 - PeterK

Hi Finn Any ideas how I could change the "src: this.getAttribute('longdesc') " to a different attribute in the imageflow.packed.js? Let me try to be more specific. At the moment on the page I' working on the image tag is something like this: echo ""; It's part of a loop that get's all the images out of the database with one line.It works brilliantly, however I have a feeling that since my rootfolder is set up differently than yours, it results in the onlick function that would trigger highslide not to work as it would need the following src: ../images/".$info['pic']." instead of the assets/images/".$info['pic']." . Keep up the great work!



23
May
2009

16:49 - Jon

Looks great!



21
May
2009

20:53 - Chris

Hi Finn, Thanks for the direction to the highslide documentation. I must have missed seeing where the issue is addressed but found, with help, that the following worked for me: I needed highslide.js to pull images from my images folder so I changed one line in Highslide.js: hs.graphicsDir = 'setup/media/highslide/'; to hs.graphicsDir = 'images/'; voila! But now that I have it working - and it is very cool - I am wondering if there is a quick fix for the following: When user clicks on an image in the imageflow gallery, it takes them to the specified link but when s/he exits that page and returns to the slide show, it won't work. Is there a way to get the page to dynamically refresh? Many thanks!

13:41 - Ian Applegate

I love imageflow, it is phenomenal and thank you! I have installed it but have an issue. I have the correct server setup, but for some reason the images wont display, seems to be a problem with the path. Any ideas? http://s68722.gridserver.com/films/ Thanks, Ian



20
May
2009

10:27 - Buschihh

Hallo Finn, jetzt hat alles geklappt. DreiFragen sind aber noch offen geblieben und ich wäre Dir dankbar, wenn Du mir einen Tip geben könntest: 1. Kann ich ImageFlow als GANZES (man stelle sich um das Karusel einen Rahmen vor in dem sich alles abspielt) exakt positionieren und 2. das "Focused Image" exakt in der Größe bestimmen. Zu 1. und 2. habe ich jetzt mit aspectRatio:1.39, imageFocusM:1.0, imagesHeight: 0.3 und imagesM: 0.701 rumprobiert und es auch ganz gut hin bekommen. Nur halt nicht exakt. 3. Ich benutze Highslide (die Kombi ist einfach geil) und hätte gerne zwei unterschiedliche Caption. Eine Caption in ImageFlow (alt="sfasdf") und eine wenn ich das Bild mit ImageFlow anzeige. Wie kann ich beides hier kombinieren? Hast Du eine Idee? Gruß, Karsten



19
May
2009

21:54 - Hunting

Hi Finn, htte mir ebne gerade die selbe Frage gestellt wie Vinny, find dein Script echt klasse und würd es auch gerne in einer vertikalen form nutzen um den ein oder andern Marquee auszumertzen. schade das das nicht von dir geplant ist, aber evtl. könnetest du mir veraten was ich wo in welcher form ändern müsste viell. bekomm ichs ja dann allein hin. schon mal vorab danke. Gruß Hunting



18
May
2009

22:38 - jb

schöne seite! grüße aus berlin, johann +++ www.johannbuesen.de



17
May
2009

22:30 - Vinny

Dang, I think this would be great to use for a web based locator in our building, each picture being a floor level....

16:24 - Finn

Wolfram Alpha is online and it hast humor: http://sandbox.finnrudolph.de/WolframAlphaHAL.jpg ;D

16:23 - Finn

@ Vinny: Not planed in the near future.

07:31 - Vinny

What is the chance of getting the ImageFlow script to work vertically?



16
May
2009

10:40 - Søren

Thanks Finn! I had completely overlooked that little notice of the longdescription url use! Sweet!



15
May
2009

17:02 - Finn

@ Alexandre Dupuis: Performance depends on the imagesize, dimensions and total number of images you're using. Bottleneck is the interpolation engine of your browser... make a screenshot of your implementation and measure the actually displayed maximal dimensions of your images. Resize your images to that dimensions, for anything larger would make no sense. Use jpeg compression to get an optimal imagesize/quality ratio. Limit the total images to something < 250...

11:32 - Alexandre Dupuis

Hello, I downloaded your application ImageFlow that I find beautiful to put it on a future personnal Web site. Unfortunately when I executes the scrolling of images is less fluid than your homepage. Could it be a setting of my server? Thank you

10:08 - Finn

@ PeterK: Since ImageFlow is written in JavaScript and not flash you can not achieve a 3D effect without a massive performance drop and therefore ImageFlow does not support the tilting of the images. (One could achieve something like that by generating frames of the images rotation... but that would come with ten times more images, just for an tilt animation ;D )

10:03 - Finn

@ SteveB: As I wrote in the installation guide: "The image width and height parameters (w_x and h_x) must be set in the XHTML for full compatibility with the Internet Explorer. Sorry for this extra load of work - every browser but Microsofts Internet Explorer can fetch the right image dimensions via the JavaScript!" - http://finnrudolph.de/ImageFlow/Installation

01:37 - PeterK

Hey there First of all, thanks a lot for this site.I have almost given up trying to integrate imageflow in one of my websites(zentrale.drurylanetheatre.org), won't have to, thanks to you. Question: how can I change the angle of the images that are not in focus?The result I'm aiming at is this: http://www.paulvanroekel.nl/picasa/imageflow/ Paul uses an xml file to read out the source of the images-I have no idea how to fuse that with php, hence your approach is much better.All I need to is a select* query and all the images in the database are being loaded! Checked your .js but couldn't figure out how to change the images' angle.Thanks for your help. Peter

00:23 - SteveB

Thanks Finn! I've resized the images so they are now much smaller, it is much quicker in IE now thanks, but the images are still not the correct aspect. I took out the portrait image to see if that made a difference but it didn't.

00:01 - Finn

@ SteveB: *UARGH* ;D Please SCALE the images before you use them with ImageFlow they are FAR too big. For example the image with the insect: It will only be displayed with 236 x 158 px max. But you kill the poor browser with an 2.547 x 2.553 px image... Use small thumbnail like images with ImageFlow and show the HighRes images onClick. Check my answer to Søren below on how to do that.



14
May
2009

23:35 - SteveB

Hi - Can you help me out please? I have been struggling all night to resolve this issue! My site works fine in FF but in IE7 the images are incorrect size and very slow to load: http://www.stockportcounty.net/pic/index.asp?q=1 Any thoughts? Thanks a lot

17:08 - Finn

@ Daniel Beeke: This should help: http://finnrudolph.de/Shoutbox/1241646278

17:07 - Finn

@ Søren: You can use the longdesc attribute to link to any target you want (that includes extremely large images ;D) - http://finnrudolph.de/ImageFlow/Installation

16:28 - BetaTest-Man

Hi! Coole Sache - fand so Effekte schon immer nett, war mir aber in Flash zu aufwendig bzw. zu unflexibel nachher in der Pflege. Hier kann man einfach bissi mit den Parametern spielen und hat tolle Ergebnisse.

12:47 - Daniel Beeke

Hello I like your script alot, I am trying to add two buttons who will use the function handleMouseWheel but i get really stuck, do you want to help me? Greetings Daniel, daniel.beeke@gmail.com

12:30 - Søren

Hallo Finn! Brilliant script and very beautiful too! I would, however, love the ability to download a separate, high res image loaded from a separate directory by the use of the onClick() function ... Can I ask you how this would be possible? I contemplate keeping my high res images in one location and use lower quality jpeg images loaded from another location for the imageflow ... The low resolution images would be automatically generated server side and placed in the images folder of the site's doc root ...



13
May
2009

20:46 - Finn

@ Buschihh: Die JS Beispiele rechts kommen natürlich in die imageflow.js und zwar nach dem gleichen Prinzip wie in der Docu (http://finnrudolph.de/ImageFlow/Documentation) beschrieben. Du manipulierst einfach nur die onclick Funktion über die Option "onClick" (ähnliches Prinzip: http://finnrudolph.de/ImageFlow/Examples#Target)

12:56 - Buschihh

Hallo Finn, Dein Tool ist perfekt. Ich bin HTML Novize und konnte das Tool sofort einbinden. Ohne Probleme, Klasse! Nur bei der Einbindung von Highslide bin ich gescheitert. Deine Angaben auf http://finnrudolph.de/ImageFlow/Combinations welche Zeilen ins HTML, JS und CSS gemacht werden müssen erschließen sich mir lieder nicht. HTML und CSS geht noch, aber bei JS habe ich "versagt". Kommt das nun in imageflow.js oder highslide.packed.js und vor allem wie und wo? Wäre es möglich, dass Du da etwas genauere Angaben machen könntest? Das wäre super. Gruß aus Hamburg Karsten P.S.: klasse das so ein Tool aus meiner alten Heimat Kiel kommt :-)

10:01 - Finn

@ Chris: If you have a problem with Highslide consult the Highslide FAQ: http://highslide.com/forum/viewtopic.php?f=4&t=606

07:29 - chris Canning

kate, did buying the license get you the support you hoped for?



12
May
2009

22:03 - Chris Canning

ARRGHH HELP ME PLEASE I LOVE this script - will happily pay for it BUT can't get the larger images to display - stuck on loading. I don't see a response to the inquiries here...files on my localserver as test before buying and loading so I can't post BUT all seems to be in right locations. Using imageflow.js --- added the var for Highslide_3 at bottom [[domReady(function() { var instanceOne = new ImageFlow(); instanceOne.init({ ImageFlowID:'myImageFlow' }); var Highslide_3 = new ImageFlow(); Highslide_3.init({ ImageFlowID:'Highslide_3', onClick: function() { return hs.expand(this, {src: this.getAttribute('longdesc'), outlineType: 'rounded-white', showCredits: false, fadeInOut:true, captionText: this.getAttribute('alt')}); } }); });]] --have highslide.packed.js, imageflow.js, and respective css files on server and linked to in html...calling the div in html by Highslide_3 name and leaving defaults - anything else? images are .pngs. link is set to http://localserver/IMG_5623.png... WHAT am i doing WRONG?

20:31 - Finn

@ amenidad: You can manipulate the size of the images with the options percentLandscape, percentOther and imagesM (http://finnrudolph.de/ImageFlow/Documentation#Options)

01:50 - amenidad

Whoops, just noticed I forgot to post a link with that. Still trying to adjust the sizes: http://protogeo.info/JA_Site/photos.html.



11
May
2009

11:30 - Finn

@MK: Does your firewall like 7z files? http://finnrudolph.de/content/ImageFlow_1.1.7z and if that does not work you can dowload the files by hand from http://testground.finnrudolph.de/software/ImageFlow_1.1_Download/ (If you really want to do that ;D)

05:41 - MK

Is there any way that I can download the actual files, not compressed? The firewall at my office does not like .rar files for some reason....



08
May
2009

20:18 - amenidad

Alright, I've given up on the reflections. :-( But now I'm having trouble with sizing. All my photos have the same height, so I don't understand why they don't display at the same height when they are in focus... Also, I've tried every CSS trick I can think of to move the myImageFlow div down on the page & I can't get it to budge.

20:08 - Anthony

Finn: Here is how I managed to hack something together that sort of works. On FireFox it works. In IE it says "errors on page" http://www.chasingame.com/index.php?id=85

18:59 - Finn

@ Anthony: Nope I'd say there is a problem with the IE handling the JavaScript of the flashplayer and ImageFlow in a different way than ANY other browser out there... o O ( I HATE the whole InternetExplorer family *GNAAAAA* ) ;D

17:52 - Anthony

@Finn: I dropped back to your completely generic example: http://www.chasingame.com/testscripts.htm This does not work either. Apparently there is just an inherent incompatability with ImageFlow and Flash Players.

17:25 - Anthony

Thanks but do you have any examples for me to look at that I can test with ? I am learning but I am still somewhat a beginner I am afraid. :)

17:14 - Finn

@ Anthony: You're using inline JavaScript to instantiate the ImageFlow objects. Please try to put the domReady stuff in the imageflow.js... Could be confusing for the beloved IE...

16:23 - Anthony

I am still having trouble with imageflow and player on the same page. ImageFlow by itself: http://www.chasingame.com/index.php?id=101 ImageFlow and JWPlayer: http://www.chasingame.com/index.php?id=100 these scripts are still interfering with each other and I am lost as to how to fix it.

15:03 - svenaushamburgbarmbek

@finn: hehe also verwirrung stiften wollte ich nun wirklich nicht ;) genauso hatte ich das auch verstanden, nur es funktioniert bisher nicht, wenn ich in der funktion this.createStructure den pfad vom dokument aus zu den php daten schreibe. es funktioniert "nur", wenn ich die php daten im selben ordner hineinkopiere. und auch wenn ich deine angebotene struktur benutze, sprich php daten und js datei im selben ordner ohne die funktion this.createStructure liegen habe, geht es nicht, erst wenn ich die php datei an die stelle kopiere wo das dolument die js aufruft. mal eine frage nebenbei, kann man die imageflow.js auch einmal laden, um dann von unterschiedlichsten seiten darauf zuzugreifen? mensch, ich brauch wahrscheinlich eine lehrstunde ueber korrektes relatives und / oder absolutes verlinken von daten ;/

14:49 - Finn

@svenaushamburgbarmbek: Jetzt hast du mich auch verwirrt ;D Also du hast drei loacations: 1. das JS und CSS den Pfad gibst du im Header an und da verändert sich nichts. 2. den Ort der Bilder, das gibst du im HTML an und 3. den Ort der reflect.php Dateien und der ist relativ zu deiner Domainstruktur. D.h wenn du eine Seite hast http://www.sven.de dann musst du standardmäßig die php dateien direkt in das Verzeichnis legen wo die URL hinlinkt. Wenn du die reflect.php Dateien aber in einen Ordner tust wie z.B. 'phpGedoens' dann musst du in der imageflow.js die unten genannte Zeile in src = 'phpGedoens/reflect'+version+'.php?img='+src+thisObject.reflectionGET; umändern.

14:31 - svenaushamburgbarmbek

vielen dank erst einmal fuer das zeigen der position, wo das geaendert wird, allerdings muss ich nach wie vor die reflect dateien bisher IMMER in den gleichen ordner kopieren, wo sich das dokument befindet von dem aus es benutzt wird. wenn ich diesen pfad veraendere, muss ich dann von dem imageflow.js ausgehen, um auf die php daten zuzugreifen oder wird das imageflow.js von dem jeweiligen genutzten dokument genutzt, und dann entsprechend von der position auf die php daten zugegriffen?? bin total confused und hoffe, dass diese wahrscheinlich newbiehaften fragen trotzdem hier beantwortet werden ;) ansonsten Vielen Dank im Vorraus, Gruss aus Hamburg

13:39 - Finn

@svenaushamburgbarmbek: Hi, die php Dateien werden im JavaScript verlinkt und zwar in der Funktion this.createStructure. Die Zeile ist da gehighlighted: http://pastebin.com/f411078f2 (einfach umändern in src = 'DeinPfad/reflect'+version+'.php?img='+src+thisObject.reflectionGET;)

13:33 - Finn

@N Nölke: Okay, schön zu hören. Sieht gut aus!

11:27 - svenaushamburgbarmbek

@finn: habe es jetzt geschafft, die bilder "sichtbar" zu machen, indem ich die reflect2.php in den selben ordner, wie die beispiel datei zu packen. weiterfuehrende frage: wo und wie werden die reflect dateien referenziert? damit ich nicht in jeden unterordner spaeter eine reflect2.php mit reinpacken muss? ansonsten grosse freude hier, dass es klappt, sieht wirklich gut aus! danke soweit ;)

10:19 - svenaushamburgbarmbek

hallo finn, ich habe gestern das erste mal dein imageflow entdeckt und bin am rumprobieren. leider kann ich weder in der offline version, noch auf meinem server bilder sehen. mein hoster sagt dass die gd lib installiert ist, aber das einzige, was er zeigt sind die alt tags ;/ . pfadangaben sind nach stundenlangen versuchen wohl richtig, zumal die offline angesehene index.html auch keine images anzeigt, auch nur die alt texte. habe ich einen grundsaetzlichen fehler? wenn du zeit hast waere eine antwort klasse ;) ansonsten sieht dieses flow richtig gut aus! beste gruesse aus hamburg

09:40 - N Nölke

@ Finn: Es scheint jetzt wieder richtig zulaufen habe das .js File neu runtergeladen und die Einstellungen vorgenommen.



07
May
2009

23:48 - N Nölke

@ Finn: Wir sind gerade dabei das aktuelle Imageflow zu implementieren. Testseite unter http://www.menschenfotografie.de/beta/business-fotograf.html Das Problem ist das bei eingeschalteter Reflektion die Bilder verzerrt sind, sie wirken gestaucht, ohne Reflektion nicht. Woran kann das liegen? Die Bildunterkanten laufen auch nicht auf einer Höhe? Vielleicht kannst du uns weiterhelfen

21:44 - Eric H

Finn - thanks for the link to the forward and back buttons - this is perfect!

02:10 - Amenity

Nope, they fail with yours as well - same error and all. :-S



06
May
2009

23:55 - Kate

Uh-oh... I only speak English! lol ;D Well, I guess I'll go ahead and buy the license then. Thanks again for your help and work on the plugin!

23:54 - Finn

@ Amenity: Perhaps they fail with your images only? Have you tried my images instead?

23:52 - Finn

@Kate: The plugin uses the latest ImageFlow version and on the plugin page are no further information on any licensing. So from my site you're good to go. And from the other site... on the contact site (http://shabushabu-webdesign.com/contact/) they say "Zusammenhang mit unseren KOSTENLOSEN WordPress Plugins"...

23:48 - Finn

@ Anthony: Not sure... its an flash overlay thingy... I'd try to increase the z-index of the menu instead... if that doesn't work I'd contact the support for the player.

23:46 - Finn

@ John G: Are you kidding me? Sounds on a website that the user not actually starts by himself is WORST practice... but if you really need it try google ;D

23:44 - Finn

@Adding arrows: read this http://javascript.pastebin.com/f59ee0316 and take a look at a project I once did for a client: http://testground.finnrudolph.de/js/ImageFlow_1.1.1_Topper/

23:42 - Finn

@ Michael: Nope... aber du kannst tricksen und einfach im Bild unten ein paar Pixel auslassen... oder noch einfacher ein div in der gewünschten Farbe und Position über alle Bilder positionieren ;D

23:34 - Kate

Hi Finn! Just wanted to make sure, as I'm about to buy the license: were you saying that the license would cover use of the plugin too? I just put the site live so I'm trying to wrap things up. Thanks!

13:10 - Anthony

Here is a test page integrated on my site showing the menu problem: http://www.chasingame.com/index.php?id=100

13:06 - Anthony

Finn: I installed the player: http://www.longtailvideo.com/players/jw-flv-player/ as you suggested and created a test page using imageflow and this player. it works but I discovered a new issue. My div based pull down menus go behind this player. Is there a way to set the z-order on a player object ?

01:06 - Amenity

Hi Finn, it looks like it must be reflections2.php, as it works fine with them turned off. Any idea why they might be generating a MIME type error? I've ensured that I'm uploading them with ASCI text encoding...and it's strange they work in another directory (http://protogeo.info/JA_Site/ImageFlow/index.html).



05
May
2009

23:17 - John G

Can you include a Aiff (Loop) file to play when viewing the gallery? I have posted this before, but this shout has not appeared in the shout box window.

23:01 - Adding left / right arrows

Hello, I was wondering if you had any versions os ImageFlow that had left and right arrows? thanks

22:24 - Michael

Hallo Finn! Ist es möglich die Position der Spiegelung zu verändern? Ich würde gerne ein paar Pixel Abstand zwischen dem Bild und der Spiegelung einfügen.

21:21 - Finn

@Kate: Okay... need to add the plugin to the extensions list then ;D - http://finnrudolph.de/ImageFlow/Extensions

21:05 - Kate

Just to clarify: I know that definition only relates to Akismet. It just got my wheels spinning in my head as to what would constitute a "commercial" site (elsewhere). :)

21:04 - Kate

No, I understand. I was just asking because I recently found out that according to Akismet's definition of "commercial", a site needs to bring in more than $500. Thus my curiousity! But, I certainly don't mind paying for something, especially if it will help a site I'll hopefully be generating some revenue from. (It's just a little side project of mine... nothing big.) Thanks for your work on the script, too! :) And, yes, that is the plugin I'm using. So far it's worked good. Thanks again!

20:58 - Finn

@Kate: If the site has ads on it, it brings money in and therefore it fits the definition of a commercial purpose. Google also has ads on it... and you wouldn't call Google a non-commercial company, would you? ;D BTW: Are you using this plugin (http://shabushabu-webdesign.com/wp-plugin-nextgen-imageflow/) ?

20:50 - Kate

Sorry... one more question: I took a look at the FAQs re: a commercial license. If I understand it right, even if the site doesn't bring any money in but it has ads on it, it's considered commercial?

20:47 - Kate

Thanks for the reply. Do you know if I'd have to buy a separate license for the WP plugin? Or, would this cover that? Thanks!

20:12 - Finn

@Kate: Hi, you can purchase a commercial license under http://finnrudolph.de/ImageFlow/Download

19:55 - Kate

Nevermind! I took a peak at your CSS from the sample page and saw you're using "overflow:hidden;". Tried it and it worked. I thought of that earlier, but was thinking the image would still shift. It didn't! ;) By the way: thanks for the great script! And, while I'm at it: how do you go about obtaining permission to use this on a commercial site? (I posted on the support forum for the plugin, but I figured I'd ask you too.)

19:49 - Kate

I seem to be having an issue with the browser's horizontal scrollbar. (I'm using the WP plugin.) It appears while the gallery is loading in IE7 and FF3 (at least, haven't tested other browsers yet). Once the page is loaded it disappears. I wouldn't mind it so much if it didn't cause the body's background image to shift also. (Not a good thing!) Any ideas what would be causing it? I've looked through the CSS and don't see anything jumping out at me. Thanks in advance!

18:29 - Finn

@Amenity: Hmm... that's strange. Have you tried it with disabled reflections (http://finnrudolph.de/ImageFlow/Examples#No_reflections)? Then you could narrow it down to the reflect2.php having a problem with your server...

16:32 - Amenity

Thanks Finn, but I'm still stuck. Relative to the php file or relative to the html? Neither improves my issue :-(. http://protogeo.info/JA_Site/photos.html Although I do see the image with reflection in your link perfectly.

11:42 - Finn

@ goran: Make sure, that the reflect php can be called: http://freeweb.siol.net/nmjgoran/reflect2.php?img=img/Scuba%20-%20001.jpg

11:34 - Michael

@Finn. Danke funktioniert. Werde dein script zur Navigation auf meiner Homepage verwenden.

10:53 - goran

Hi, I only see filename or alt name, but no photos. But when I click on filename I get photo in fullscreen. It is the same, in IE8 and Firexox. http://freeweb.siol.net/nmjgoran/

10:15 - Finn

@ Amenity: Hi, you should try to use a relative path to the images you want to reflect rather than absolute... Try something like this: http://protogeo.info/JA_Site/ImageFlow/reflect2.php?img=../photos/headshot.jpg instead of http://protogeo.info/JA_Site/reflect2.php?img=http://protogeo.info/JA_Site/ImageFlow/img/img1.png

01:03 - Amenity

Hi Finn, I have a problem getting ImageFlow to work on my site. I can see the demo fine uploaded to my server: http://protogeo.info/JA_Site/ImageFlow/index.html But when I try to place it in my pages, I get MIME type errors: http://protogeo.info/JA_Site/photos.html I even changed the encoding to match yours, but that doesn't seem to help either. Ideas? ImageFlow is really beautiful. Thanks for your work!



04
May
2009

17:24 - Finn

@ Michael: Du musst die funktion instanceOne.handleMouseWheel(1) innerhalb der domReady funktion einem a element deiner Seite hinzufügen, weil sonst die ImageFlow Instanz noch nicht erstellt wurde. Guck auch mal da: http://javascript.pastebin.com/f59ee0316

16:37 - Michael

Hallo Finn, brauche Hilfe !! Habe versucht mit instanceOne.handleMouseWheel(1) in einem a-Tag einen weiter-Button zu implementieren. Funktioniert leider nicht, da immer der Javascript Fehler instanceOne ist undefiniert erscheint. Wie spreche ich die Methoden in Deiner Javascriptklasse richtig an?

15:29 - Finn

@ Anthony: Okay, I also get that problem with the IE8. Can you make the document valid (http://validator.w3.org/check?uri=http%3A%2F%2Fwww.chasingame.com%2Ftestflow.php&charset=%28detect+automatically%29&doctype=Inline&group=0) and try another flashplayer with an valid XHTML implementation like http://www.longtailvideo.com/players/jw-flv-player/

13:47 - Stuart

@ Finn - Strange that! Seems not to happen for me either. I think it may have been a caching issue. I was originally using larger images. I have got another problem now. I'm using the Highslide combination as described and, for some reason, IE doesn't seem to pick up the onclick behaviour. Any ideas?

00:05 - Andreas

@ Finn: Inspirated from 200Hz Motionflow ... maybe an idea for an imageflow experiment: http://www.pbase.com/erichmangl/image/70602201



03
May
2009

19:40 - Anthony

Sorry.... This link works on all machines: http://www.chasingame.com/testflow2.php This link has the flash player and will not work on many: http://www.chasingame.com/testflow.php Thanks in advance! My site is non profit but I will gladly pay for its use. :)

19:34 - Anthony

This link works on all machines: http://localhost/chasingame.com/testflow2.php This link has the flash player and will not work on many: http://localhost/chasingame.com/testflow.php Thanks in advance!

19:31 - Anthony

I have installed imageflow and it works on my site. On pages where I have an adobe flash payer it does not work on some workstations under IE7. 50% of them! Does anyone know what I can do to fix this? I want to keep imageflow but if there is no workaround I will be forced to give it up.

18:56 - Eduard

Hi there, I am trying to use an img as link within the alt tag of imageflow, but the image is invisible. What can I do to overcome this? Thanks, Eduard

14:07 - Andreas

@Finn: Thanks for the fast anwser. You have to know, that i'm not an js-expert ... but i tried to solve the problem ... I added a new function "show_imageinformation" and code some lines into the "Initializes image gliding animation"-part of imageflow.js. Is it possible that you check my horrible code? Please look at: http://www.xs-hoppelhase.de I think it would be a great extensions for ImageFlow ...

10:53 - Finn

@ Andreas: Sure. You could add some hidden div containers full with content beneath the ImageFlow container and give them ids that correspond to the image ids... like "c0", "c1" etc. And then you need to add some lines of JavaScript into the glideTo function that unhide the current div container and hides the previous one...

01:44 - Andreas

@Finn Gibt es eine Möglichkeit zu jedem angezeigten Bild im ImageFlow ein extra DIV-Container mit mehr Informationen (z. B. aus einer XML) zum Bild automatisch mitladen und anzeigen zu lassen? Als Alternatie zum "img-alt-text". Is it possible to show automatically more informations - e.g. collected from an xml-file - in an extra div-layer, for each image from the ImageFlow?



02
May
2009

19:28 - Finn

@ Stuart: hmm... strange I have checked your link with Firefox and refreshed the site... no strange scaling issues. I'm using the latest Firefox version 3.0.10

15:59 - Stuart

OK, I think I've found the source of the double size issue. It only seems to occur when I refresh the page in Firefox. Any ideas? The IE7 issue was caused by a missing image. Firefox and Safari just ignored it, while IE7 hung.

00:28 - Finn

3D with JavaScript!!! Spread the word ;D http://finnrudolph.de/JavaScriptObject



01
May
2009

15:37 - Stuart

I meant ImageFlow, not Highslide! I'll get it right eventually!

15:36 - Stuart

Sorry. Should probably point out that this is Highslide I'm talking about. Didn't realise that the shoutbox was for the whole site!!

15:26 - Stuart

First of all, great work with this script, it's easily the best implementation of coverflow effects I've seen, but I am having a few problems. Firstly, for some unknown reason, the images seem to be rendering at double size randomly. Sometimes it works, sometimes it doesn't. Secondly in IE7 (surprise, surprise) it seems to freeze before loading the last image. See here for example http://dev.pezholio.co.uk/century/music.html (and yes, I know it's a commercial site. License fee will be forthcoming once the site goes live :) )



30
Apr
2009

20:51 - Karimun

The following snippet invokes the glideTo function with jQuery. Dont forget to comment/delete the ImageFlow instance creation in your imageflow.js in this case. $(document).ready(function() { var instanceOne = new ImageFlow(); instanceOne.init({ ImageFlowID:'instanceOne' }); $(function(){$('#glideLink').click(function(){instanceOne.glideTo(3);});}); }); // ready.function



29
Apr
2009

15:23 - Jamie

Will ImageFlow run on PHP 5+? We have PHP 5.2.5 installed. GD Version => bundled (2.0.34 compatible) with Apache 2.2. Any problems with this setup? I'm testing ImageFlow and have tried several combinations, turning off reflections, etc. but nothing. Love this, hope to get it working. If I can I'll make the proper payment and usage request for a commercial site. Thanks!

15:16 - Dave

I prefer the simple version (#3) without the reflections and extra noise, but the effect is great. Well done.

15:11 - Patrick

Wie kann ich imageflow in XHTML nutzen, wenn das Dokument als application/xhtml+xml ausgeliefert wird? Dachte bisher, document.write wäre die einzige inkompatible Funktion.

15:10 - Michael

Würde gerne zusätzliche Pfeil-Buttons zur Navigation einfügen, die die Funktion der Arrow Keys der Tastatur haben. Wie mache ich das?

14:53 - Terry Brown

Hello - I would like permission to use imageflow in a few of our sites - do I ask for such permission here?

07:46 - Thomas

Danke für die Antwort, aber das hat mein problem irgendwie auch nicht gelösst, denn ich habe die Attribute width und height im img Tag gesetzt. Ich habe mir als Notlösung einfach zwei weitere Parameter in deinem Optionen Array angelegt, wo ich die Bildgrößen höhe und breite übergebe. Denn er hatte bei mir immer falsche breiten werte im Firefox bei getAttribut übergeben.

00:10 - Andy

Hi I have installed imageflow and it works great! I am trying to get the highslide JS to work, but all I am getting is the loading graphic and nothing else. What am i doing wrong? http://www.nashfrancis.com/flow/



28
Apr
2009

23:29 - emer

wie kann ich imageflow mit phpfusion 7 kompinieren möchte sie in einem pannel abspielen habe keine ahnung davon -.-

12:18 - Finn

@ Thomas: "The image width and height parameters (w_x and h_x) must be set in the XHTML for full compatibility with the Internet Explorer. Sorry for this extra load of work - every browser but Microsofts Internet Explorer can fetch the right image dimensions via the JavaScript!" - http://finnrudolph.de/ImageFlow/Installation

09:19 - Thomas

Gibt es eine Lösung warum die Bilder im IE in der Höhe gestaucht werden? Im Firefox klappt das alles!



27
Apr
2009

08:53 - Finn

@ Marko: The reflect script should throw you an error...



25
Apr
2009

20:40 - Marko

im wondering why ImageFlow doesnt work with PHP 5? I've updated a PHP version on my server,from 4 to 5 and now ImageFlow wont work.Why?



24
Apr
2009

21:09 - Wilks

http://svenystar.mybrute.com look at this, you will like this site! Fight me and Win :) Please, i need Points. Thanks!



23
Apr
2009

23:29 - Bellamy

This is a very nice shout box. Contrats

22:44 - Wilks

Finn, disregard my previous question, I was able to make it work using a custom HTML module and configuring it in a frame. Works like a charm. Thanks

09:50 - Michael

Würde gerne zusätzliche Pfeil-Buttons zur Navigation einfügen, die die Funktion der Arrow Keys der Tastatur haben. Wie mache ich das?



22
Apr
2009

19:20 - Wilks

Awesome product. I am trying to use ImageFlow in my joomla CMS website. I am attempting to insert the code into a custom HTML module (I have tried a few different custom HTML modules). Each extension I have tried changes the output of the files. It adds "/" to the relative path and then the php file cannot read the source. Basically the php source reads the image file as img=img/ However after running it through a Joomla module the output looks like img=/img/ Do you know of anyone being able to utilize this awesome app in a Joomla module? Or is there any way you can think I can edit your code to read the files with the relative path img=/img/ Thanks for helping a newbie Regards-

10:42 - BOBO

Bei Verwendung der Version 1.0.3 wurde durch die Implementierung in das CMS "phpWCMS" mittels eines Templates die ganze Angelegenheit der Bildformatierung gelöst, bevor Finn Rudolph dies nun auch in die neuste Version integriert hat. Und es läuft einwandfrei im IE6, 7 FF2,3 Opera, Safari ...



21
Apr
2009

20:55 - Lucian

... never mind.... that won't fix anything because it doesn't work with any ie version... and the problem is not even imageflow sorry for posting

19:29 - Sahil

Hi, I get Imageflow working fine in Firefox, but in IE I see the whole component standing vertical on 1 side of the page. what do I do to make it to normal in IE 6

18:48 - Lucian

Is there any way to disable imageflow for ie6 only? thx

16:05 - Wolf

Hallo an Alle! Kennt jemand nen Weg Higslide mit voller Funktionalität in Imageflow einzubinden? Speziell die Bilder über Higslide in einer Slideshow abzuspielen? Vielen Dank im Vorraus, Wolf. Hello to All! Does anyone know a way to integrate higslide with full functionality to imageflow? Especially to play the pictures in a slideshow? Thanks in advance, Wolf.

14:08 - Finn

@ ilen: Err... I understand english and german. If you want to know where this shoutbox comes from: I wrote it myself ;D

14:07 - Finn

@ Zabdiel: Simple as that: You need to (!) set the width and height attribute of each image. "The image width and height parameters (w_x and h_x) must be set in the XHTML for full compatibility with the Internet Explorer. Sorry for this extra load of work - every browser but Microsofts Internet Explorer can fetch the right image dimensions via the JavaScript!" - http://finnrudolph.de/ImageFlow/Installation We all do love the IE family right? ;D

14:04 - Finn

@ Lucian: No the speed of the StartAnimation can not be changed. It is limited by the browser and loops at 50ms... Concerning the centered portrait format: Try the option percentOther with some different values...

14:00 - Finn

@ Johann: Ich dachte du findest es selber heraus ;D Guck mal bei den options: http://finnrudolph.de/ImageFlow/Documentation#Options und zwar die preloadImages sollte das tun, was du willst...

05:47 - ilen

mejor miren el corel design shoutbox....... nada se le compara

05:46 - ilen

que es esto???? ta horrible



20
Apr
2009

21:39 - Zabdiel

Hi Finn! We have a problem, our images appears out of proportion in IE6 and IE7 I did tried changing the attributes of the constructor but nothing happens; could you help me to fix this? Here you can see the problem: http://www.fotosmile.com.mx/pages/productos.php?menu=3 Thank you

19:16 - Lucian

hello again, Finn Is there any way to change the 'StartAnimation' speed? Also... for some reason the front picture is not centered to the rest... don't know why... http://www.lukasig.com



19
Apr
2009

18:27 - Daniel

Hi Finn! Danke! Nun gehts auch "nicht" im Firefox! Sehr fein so wollte ich es! Wenn ich den longdesc weglasse öffnete sich immer eine leere seite :-/ Einzig der Safari unter Vista ist noch komisch, aber den lass ich jetzt mal außen vor *g* Dank dir nochmal!

12:41 - Johann

Hi Finn, kannst du bitte mal nch meiner letzten Frage gucken (16. Apr. - 14:17 Uhr) ... Das Problem besteht weiterhin! Es wäre toll wenn es eine Möglichkeit gäbe ie Bilder wärende des Ladens anzuzeigen.

10:47 - Finn

@ Jo: Klar, du kannst z.B. via CSS den Bildern einen Border verpassen oder die Bilder vorher mit Rahmen generieren...

10:04 - Jo

Hi! Gibt es eine Möglichkeit, den Bildern im Karrussell einen schönen Rahmen hinzuzufügen?



18
Apr
2009

19:46 - Finn

@ Daniel: Lass einfach das longdesc Attribut der Bilder leer. So wie da http://finnrudolph.de/ImageFlow/Introduction#Demo

15:51 - Daniel

Hi! Wie kann ich beim Imageflow den "Onclick Event" beim Focusierten Bild entfernen, damit KEIN Popup oder neues Tab etc aufgeht? Im IE gehts indem ich keine URL in der HTML-Dateu angebe, der Firefox reagiert darauf aber nicht. @Steve:Look for the Start-ID in the FAQ



17
Apr
2009

19:20 - Steve

I have downloaded ImageFlow0.9_Lightbox2 from your website. There is only a single problem I am facing. When the page loads, the imageflow slides to the 5th image in start. I want it on 2nd image and not on the 5th image. I have also tried to change a global variable named "current" = 2 but still it directly goes to 5th image at start. Can you please help that how can I make it possible to glide to 2nd image on page load? Thanks a lot in advance.

04:22 - Bob

High praise for this unqiue imageFlow!! I just wanted to share with you that deafCensus.org uses old version of imageFlow with some modifications to handle 2,500 images. Yes, it's huge, yet beautiful book flow I called it bookStream. Take a look at www.deafCensus.org. Go to Publication menu, bookStream menu. What's more unqiue is that it does not have to wait until all images are loaded. You can flip images while loading images.

03:38 - Ted

@ Finn: Thanks for the response. Is there a way to substitute the 3 in "{yourInstance.glideTo(3); }" with text? ie: { yourInstance.glideTo(category); } ?

02:23 - Svein

Thanks :-) got it workin now. Some filenames was different from filenames in the html file. Did you know that filenames containing & or ' dosent load?



16
Apr
2009

18:02 - Christian S.

MSI - Wind u-100 zu verkaufen. http://b-red.net/verkauf/

17:40 - Michael

@Finn: Nochmals danke für die schnelle Antwort, dass war genau der Hinweis und die Sache die ich falsch gemacht hatte. Ich hatte die *.php's in das Verzeichnis mit dem js kopiert.

14:34 - pmd

Hi, is there a chance to make the coverflow infinite. I mean, if there are eg 9 Pics, that you can scroll left till pic 9 and than pic1, 2, 3 will be displayed? Like a roundabout? I will give it a try in changing the source. If i have a solution i will let you know. cheers pmd.at

14:17 - Johann

Wir nutzen ImageFlow auch auf 2 Websits und sind einfach nur begeistert. Nur ein Problem haben einige, die unsere Seite besuchen ... die Ladezeit. Wir binden zwar alle Bilder mit niedriger Auflösung ein, dennoch werden erst alle Bilder geladen und dann die Seite angezeigt. Gibt es vielleicht irgend eine Möglichkeit, die ersten Bilder schon wärend des Ladens anzuzeigen?

09:15 - Finn

@ Michael: Die reflectionx.php muss im gleichen Verzeichnis wie die HTML-Datei liegen. Guck einfach nach was für ein Bilderlink generiert wird und schieb dementsprechend die php dateien da hin.

09:15 - Finn

@ Faith: Can do. Simply disable the reflections: http://finnrudolph.de/ImageFlow/Examples#No_reflections

09:14 - Finn

@ Svein: Make sure, that the reflect2.php is allowed to write into your images folder. If it's not it always creates all imagereflections if you open that site. With 202 images it is possible that your server takes too long and drops the creation of 3 images... Also make sure that the images are completely uploadet. (check: http://www.ibuymymusic.com/bloggen/flow/reflect2.php?img=img/Various%20Artists%20-%20Black%20and%20White%20Blues.jpg)

03:25 - Faith

Hey, i have a laptop running xp. and for a projext im trying to get image flow to work. do i have to have php and a web server? is there any other way. i just want the pictures to scroll using internet explorer. the scrolling is working but the images just come up as little 'x'.

01:49 - Svein

Hi Finn Thank you for this lovely script. I have made a page at my blog showing the covers of my CD collection. In Firefox it works like a charm, but n IE the loading of the images stops at 199 of 202. Yesterday with less pictures it also stopped before all was loaded. Why is this? HAve I done something wrong? Take a look if you can find the time at : http://www.ibuymymusic.com/bloggen/flow/



15
Apr
2009

13:05 - Michael

@Finn: Danke für Deine schnelle Antwort. Es ist alles eingebunden wir Du es unter "Install" so klasse beschrieben hast und *ohne* Reflection geht ja auch alles. Muss ich irgendwo die reflectionx.php als Pfad angeben?

08:53 - Finn

@ Michael: Ohne link auf deine Implementierung kann ich dir leider nicht viel weiterhelfen. Öffne mal das (nicht) generierte Bild direkt im Browser. Also folge dem generierten Bildlink. Achja: Und überprüf nochmal, ob du auch die geänderte JavaScript Datei im header einbindest (imageflow.js != imageflow.packed.js)...

08:50 - Finn

@ Lucian: Since you seem to have a CSS problem (read: some browsers are standard compliant other handle things different...) you can try a few things. But that takes time and at the moment I have no idea what could cause safari to fail...

08:47 - Finn

@ Route: That narrows the problem down to your images generated by your server. If every demo on this server works fine for your with any IE but even the unchanged ImageFlow package on your server breaks there is something strange going on with your server creating the reflected images. Can you test the script on another server? Just to make sure?



14
Apr
2009

20:03 - Michael

Hi Finn, tolle Arbeit Dein Imageflow, vielen Dank! Ich probiere es gerade mal etwas aus und komme mit der Reflection nicht weiter. GD ist bei mir 2.0.28 installiert und trotzdem erhalte ich ohne die Parameter reflections: false und reflectionP: 0.0 nur Text statt Bilder bei der Anzeige. Ohne Reflection geht alles. Kleiner Tipp für mich, wo es haken könnte? Danke :-)

19:14 - Ted

Hi Finn, great script. Is it possible to copy/alter the glideTo function to make it glide to an image name rather than an imageID? The function would be used for a menu. Thanks

11:48 - Lucian

so... i'm guessing that there's not much I can do..(?)

10:50 - Route

Sorry for my English please. I got help with the text, so send you it again So, I downloaded the lust version, didn’t changed anything in the files. Opened in browser IE8 (in IE 6 и 7 the same situation) and at scrolling of images here that occurs: screen: http://pic.ipicture.ru/uploads/090414/6xXOzH13W5.png website: http://kazennoff.ru/ In other browser: Opera, Firefox and so on everything fine. I tried to delete from imageflow.css: -ms-interpolation-mode:bicubic; /* Enables bicubic image resampling for the IE7 */ But it didn’t help. Help tp solve this problem please. Interesting note when I opened your site http://finnrudolph.de/ImageFlow with IE and in demo version everything work correct.

10:06 - Route

Problem at scrolling. In all other browsers works well! Changed nothing. Has downloaded and at once has started. In advance many thanks. ;)

09:59 - Route

It is difficult to me to explain, as I do not know English. Look please on a sreen http://pic.ipicture.ru/uploads/090414/6xXOzH13W5.png and on a site http://kazennoff.ru/ You will understand at once all

09:54 - Route

I have downloaded last the version. Has opened in IE8 (In IE 6 and 7 too most). When you scroll images here that occurs: http://pic.ipicture.ru/uploads/090414/6xXOzH13W5.png Tried to delete. -ms-interpolation-mode:bicubic; /* Enables bicubic image resampling for the IE7 */ It has not helped!

09:53 - Route

I have downloaded последнею the version. Has opened in IE8 (In IE 6 and 7 too most). When you scroll images here that occurs: http://pic.ipicture.ru/uploads/090414/6xXOzH13W5.png Tried to delete. -ms-interpolation-mode:bicubic; /* Enables bicubic image resampling for the IE7 */ It has not helped!

09:50 - Finn

@ Lucian: The ImageFlow container div has no margin or padding. What you're running into is the joy of cross-browser-compatible webdesign...

09:43 - Finn

@ Enix zhang: Sure, why not? You need to figure out how to trigger the Shadowbox JS "from the outside" on click events. Check http://finnrudolph.de/ImageFlow/Examples#New_Window to see how you can manipulate the onclick behaviour of the images in ImageFlow. If it does not work out for you and nobody in the Shadowbox Forum can help you ( http://www.shadowbox-js.com/doc/forum.html ) I suggest you also take a look at the ImageFlow Highslide Combination which works like charm ;D http://finnrudolph.de/ImageFlow/Combinations#Highslide

09:37 - Finn

@ Route: Hi. What exactly do you mean by glare/break? If you are using the IE7 I suggest, that you disable the tweak I implemented in the latest version ( http://finnrudolph.de/Blog/ImageFlow_1.1_-_Aspect_Ratio_and_IE7_Tweak ): Simply delete line 18 of the imageflow.css and the IE7 will fall back to its default image resampling... If that does not work try smaller images and/or other jpg settings (progressive/optimized etc.)

09:08 - Route

Please help! Has already put gd, has not helped! demo on your site in browser IE works well. Why at me http://kazennoff.ru/ images brake at scrolling?



13
Apr
2009

22:25 - Route

Hi! when the image scrolls in IE browser, they provide glare. www.kazennoff.ru How to fix? Sorry for my English. :)



11
Apr
2009

12:10 - Enix zhang

could it work with ShadowBox ? ImageFlow it drive me crazy.....



10
Apr
2009

18:29 - Lucian

here is a link in case you need it: http://www.lukasig.com/ i placed the add 13px higher, so it displays correctly in firefox and ie, but not in safari

18:01 - Lucian

hi Finn, When adding the imageflow, other html items will be displayed 13 pixels lower than their original position. do you have any sugestions?



08
Apr
2009

17:44 - Finn

@ der Koenig: ;D War nicht auf dich bezogen, brauchte nur eine Ablage für den Link. Ich habe mit Absichte keine Frameworks benutzt, weil man sich auf eines festlegen müsste und alle haben ihre negativen Seiten... ausserdem wage ich zu behaupten, dass es so kleiner ist ;D Aber wenn du eine jQuery Implementierung schreibst lass es mich wissen. Das Ergebnis interessiert...

12:17 - der Koenig

Was will mir der Author damit sagen ;O)



07
Apr
2009

21:42 - der Koenig

Hi Finn, a great work with a very nice feature-list. it would be perfect if a) it is a jQuery plugin and b) i could scroll vertically. thinking about working on such a version and send it to you... Bis gleich der Koenig



06
Apr
2009

01:41 - Steve

Hi Finn, I am trying to use the latest version of ImageFlow with the LightBox2.0 I am using the function "function () { new Lightbox(); }" in the init function of imageFlow. ImageFlow is detecting the click and passing it to LightBox but LightBox is unable to display the image. And continuously showing image loading. May be the image path is not passing to LightBox. Can you please help?



05
Apr
2009

01:35 - Troy Forster

I've been playing with ImageFlow this afternoon and really like it. I'm wondering if anybody has taken a stab at wrapping it into a jQuery plugin yet? T



03
Apr
2009


01
Apr
2009


31
Mar
2009

22:41 - D

Hi, I'm trying to do what Nico wanted to do and have a link that changes the focused image. I'm not sure what the http://javascript.pastebin.com/f59ee0316 os trying to say.. Thanks for the script

16:51 - m1ke.t

I have been using your ImageFlow script for my coursework and it is fantastic! If I decide to use it in an industry environment I would be more than happy to donate the $20.

15:02 - Finn

@ Denis: Have you read the documententation? http://finnrudolph.de/ImageFlow/Documentation#Options take a look at the opacityArray ;D

13:22 - Denis

Finn, the option of opacity exist between the images from the 1st to the last ; but would be possible to add the option of blur ? like : BlurArray: [4,3,2,1,1] });



30
Mar
2009

22:19 - Finn

@ Joakim: Yeah... I know that one ;D Thank you for reporting! Will be fixed in the next version.

20:07 - Joakim

Caught a bug ;) If there only is one image in the imageflow, it crasches with MSIE 7.0 - but works perfect with FF 3.0.8 Regards, Joakim

16:46 - Joakim

@Finn, okey good luck with your Staatsexamen and keep the god work up! Joakim

14:44 - Finn

@ Joakim: Sure, if they can do it is possible. But it is currently not supported with ImageFlow and I am "under fire" with other things... o O ( like making my Staatsexamen ). What I tested at the beginning of the developement of ImageFlow is the reflect.js solution... but had to drop that approach: http://finnrudolph.de/ImageFlow/FAQ#Implementation_9

12:23 - Joakim

Hi Rudolph! Great Imageflow - but I really want to have the refelctions without installing PHP. I know that it is possible because these guys have succed with that - with only javascript! Possible? http://www.outcut.de/MooFlow/

11:50 - SimoBenso

Hello, I was wondering if there's a way to make ImageFlow have a circular effect ? Thanks



28
Mar
2009

13:32 - Nico

Hi, How to put 2 buttons to change images ? How to access objects outside it ? Thanks

00:21 - Stefan

Hi, ich nehme alles zurück !! Es geht, ich habe ienfach ver gessen das JavaScript am anfang des HTML Files anzu geben. Ein " hs.graphicsDir = 'highslide/graphics/'; " Eingefügt und schon läuft es !! Trotzdem , noch mal Dane für das Tolle ImageFlow. Gruß aus Hamburg Stefan

00:10 - Stefan

Hi, also alles ausprobiert wie drin steht,aber leider keinen erfolg. :-( Ich benutze "highslide-4.1.2", habe alles wie drinsteht auf den Server kopiert. Dann in der "highslide.css" folgendes eingefügt: .highslide-container { z-index:10003 !important; } .highslide-credits { display:none !important; } .highslide-caption { color:#333 !important; } Und in der "imageflow.packed.js" dies: domReady(function() { var Highslide_3 = new ImageFlow(); Highslide_3.init({ ImageFlowID:'Highslide_3', onClick: function() { return hs.expand(this, {src: this.getAttribute('longdesc'), outlineType: 'rounded-white', showCredits: false, fadeInOut:true, captionText: this.getAttribute('alt')}); } }); }); Und in der "highslide.packed.js" dies : hs.graphicsDir = 'highslide/graphics/'; Alles Bilder haben die exate größe und die Links sind auch ok. Kann es vieleicht am Server von Strato liegen?



27
Mar
2009

23:01 - Stefan

vieleicht ist es leichter zu verstehen wenn man es sieht: http://www.blinkmann.de/Neu/test.html

22:35 - Stefan

Hallo Finn, tolles ImageFlow ! Ich komme nicht weiter und brauch mal Hilfe: Das ImageFlow läuft, nur wenn ich versuche "Highslide JS" einzubinden, dann wird zwar alles gleaden, aber wenn ich das Bild anklicke steht nur "loding.." da. Wenn du noch mehr Info brauchst sage bescheid,möhte nicht gleich alles Posten. Danke. Gruß Stefan

21:14 - schmidex

So wie ich das sehe liegt das Problem in der reflect3.php. Aber der 100% durchblick hab ich da auch nicht. sorry

20:00 - Simon

@schmidex Ja, das refelctionPNG steht auf true, ansonsten ist ja der Hintergrund des Bildes schwarz (nicht bloss die Reflektion), das irritiert mich. Gibt es irgendwo funktionierende Beispeile? Ist ev, mein PNG aus Photoshop nicht korrekt? Ich poste hier mal meine Version: http://kurzfilmnacht.com/kfn_team.html

14:23 - schmidex

Simon hast du "reflectionPNG" auf "true" gesetzte? Ansonsten übergeb doch per "reflectionGET" deine Hintergrundfarbe. Gibts auch ein Beispiel zu.



26
Mar
2009

22:30 - Simon

Hallo Finn danke fuer deine rasche Antwort zum Post vom 23. März. Komme dennoch nicht weiter. Mein PNG hat eine Transparenz, diese erscheint in der Reflektoin aber immer Schwarz!

07:41 - LauLau

ImageFolw ist ein sehr schönes script :) vielen dank dafür ;)



24
Mar
2009

22:05 - schmidex

sorry. Hatte mehrere Testinstallationen... und hab in der falschen css geändert. Deswegen hab ich's erst nicht hinbekommen. Danke trotzdem. Habe jedoch noch ein weiteres Problem. Ich verwende auf der selben Seite wie Imageflow auch den TinyMCE Editor. Das scheint zu einiges Schwierigkeiten (komischweise nur im Internet-Explorer) zu führen. Binde ich zuerst Imageflow ein... funktioniert alles bis auf die Lade anzeige. Binde ich zuerst TinyMCE ein. Funktioniert der Editor nicht :-( Eine Idee wie ich das umgehen kann? Vielen Dank nochmal. Klasse wie du hier auch hilfst.

21:26 - Finn

@ Buddy: The example is correct... with the reflect2.php you need the % but with the reflect3.php a % breaks the thing... Need to change the reflect3.php in the next release.

20:31 - Finn

@ schmidex: Schau dir mal die CSS Angaben in dem Beispiel an: http://finnrudolph.de/ImageFlow/Examples#White_background_color

20:00 - schmidex

Hallo Finn. Grossartiges Scrip. Habe genau soewtwas gesucht. Ich verwende Imageflow auf einem weißen Hintergrund... daher sieht man den Ladebalken nicht. Kann man die Farbe irgendwo ändern? Im css file habe ich nichts gefunden was geholfen hätte. Danke

19:02 - Buddy

Finn, just a reminder to update the examples page code for the fade starts. Best, Buddy

18:56 - Buddy

Big Man, thanks. You're the bomb! Best, Buddy

12:13 - Finn

@ Buddy: Okay, my fault... you want to use ImageFlow with reflectionPNG enabled and strip the % sign from the fade_start... that should give you this and that works: http://www.rodaian.com/reflect3.php?img=img/img2.png&bgc=000000&fade_start=20

00:47 - Buddy

Here is the corrected version of my previous shot but still shows just image box outlines: domReady(function() { var instanceOne = new ImageFlow(); instanceOne.init({ ImageFlowID:'myImageFlow', reflectionGET: '&bgc=000000&fade_start=20%', onClick: function() {window.open(this.url, '_blank');}, }); }); Thanks, Buddy

00:38 - Buddy

http://www.rodaian.com/ This is what I have in the packed js so far: domReady(function() { var instanceOne = new ImageFlow(); instanceOne.init({ ImageFlowID:'myImageFlow', reflectionGET: '&bgc=000000&fade_start=20%' }), onClick: function() {window.open(this.url, '_blank');}, }); }); The line that threw it off was the fade line. I am getting ready to change background colors, so I began with this custom tweak. Thanks for your guidance! Cheers.

00:02 - Finn

@ Buddy: A link on your implementation helps...



23
Mar
2009

19:31 - Buddy

Hi Finn, I can't seem to get the fade_start to work under any condition. Every time I add it to the packed JS file at the bottom, I get missing images. reflectionGET: '&fade_start=20%' }); Every other modification works from your example page, but the fade_start. Any suggestions. I just downloaded the 1.1

18:14 - Finn

@ Rajat: That is not possible. ImageFlow is - as the name suggests - only for images.

18:13 - Finn

@ Simon: Lies dir doch nochmal die Dokumentation durch. Am meisten wird dich die Option reflectionPNG interessieren ;D Die Funktion glideTo kann man extern so aufrufen: http://javascript.pastebin.com/f59ee0316 und die startID kannst du z.B. aus einem PHP-Script übergeben wenn du das JavaScript dynamisch damit generierst, also nur den Part der das ImageFlow Objekt instantiiert...

17:55 - Simon

Kann man die startID auch aus einem PHP-Script übergeben?

11:26 - Simon

Hallo Finn grossartig das ImageFlow, herlzichen Dank! Ich suche auch die Möglichkeit, dass glideTo extern aufzurufen und habe bei PNGs keine Transparenz in der Reflektoin sondern Schwarz. I'm have a Black Background in the PNG Reflection. Is there any solution?



22
Mar
2009

22:04 - Rajat

Thanks. Will do that. But just for confidence, there is nothing in the ImageFlow js that restricts it only to images as I want to replace them right there by html blocks. More like a searchme interface through ImageFlow.

13:45 - chris

hallo finn, sehr nette js app. ist es möglich die glideTo function extern aufzurufen? z.b. über ein onclick event in einem tag?

11:12 - Finn

@ Rajat: I used iframes with Highslide for the YouFlow thing... was the only way it worked for me. Highslide html did not work... So if iframes with Highslide are not an option check Torsteins support: http://highslide.com/support

11:08 - Finn

@ martin: No clue. ;D

07:56 - Rajat

Hi, First of all,excellent work! I am trying to configure ImageFlow to work with HighSlide for html content but was getting nowhere with it. I saw your YouFlow implementation and you seem to display a screenshot first which further needs to be clicked to load the HighSlide object with the flash content. Is this the way I have to do for normal HTML content as well ? I was thinking of getting to display a stack of HTML blocks directly through imageflow. Any pointers would be helpful.Thanks in advance.



21
Mar
2009

23:56 - martin

hi fin, have the problem with ie7 too. using imageflow1.1 and Highslide JS. everything works fine with firefox. if i start my side with ie7. it says loading and it didnt load any image. the funny thing i check your side with ie7 to look if it works with ie7. on your side eveything works fine with ie7. the funny thing now, after i check the function with ie7 on your side i go back to my side and it works too ???????? have you any idee ?

00:29 - Finn

Several screenshots of norwegian websites suggesting IE6 users to upgrade (or switch) their browser! http://blog.peterhaza.no/current-web-sites-in-norway-warning-against-internet-explorer-6/

00:24 - Finn

And norway starts the revolution against the IE6 ;D http://www.trygve-lie.com/blog/entry/bye_bye_to_ie6_in

00:22 - Finn

Seems as if IE6 is going down somewhat sooner than I thought: http://www.robertnyman.com/2009/02/09/stop-developing-for-internet-explorer-6/



20
Mar
2009

17:41 - Finn

@ Lucian: You can define the color for the whole ImageFlow instance. Check the CSS for the id #example_14 in http://finnrudolph.de/ImageFlow/Examples#White_background_color

17:35 - Lucian

Where can I edit the font collor from white to something else (#333333)



19
Mar
2009

18:44 - Simon

Highslide JS funktioniert ja nur mit 0.9 - wo kann ich die alte Version noch runterladen?



18
Mar
2009

22:11 - Denis

Just want to know how to do that. Unfortunatly, I am not an expert of database. Your script is really fantastic.

22:02 - Steve

Love the code Finn. I'm by no means a coder. I have figured out how to change most of the settings I want but even after checking on your site, I still can't get the reflection to work on white... http://www.rethinkmagazine.com/ImageFlow/index.html I thought I had changed the code in the right spots... Any suggestions would be appreciated. THx Steve

22:00 - Finn

@ Denis: Sure that is possible. Simply build a dynamic website that generates the XHTML for ImageFlow based on the search query... no big thing with PHP and a MySQL database... Or what do you wanna know?

21:43 - Denis

Imageflow with a engine search with query: http://www.europeana.eu/portal/year-grid.html Is a kind version would be possible ? It would be very useful.

20:01 - Finn

@ Lucian: You're welcome ;D

19:51 - Lucian

thank you, Finn

19:33 - Finn

@ lucian: The imageflow.css is not loaded... check the path...

19:11 - lucian

i get the images scrolling vertically http://www.lukasig.com/temp/ lukasig@hotmail.com

17:09 - Andrew

Hi Finn, That's exactly the sort of effect I was talking about! Will definitely keep an eye out if that is to be implemented ;) Cheers

12:08 - Keith

Yes! That's exactly what I was trying to achieve. If anyone could come up with a quick hack, that'd be so awesome. Thanks!

11:42 - Finn

@ Keith and Andrew: That is possible, but needs some time to understand/hack the thing. I once did that for a client with an old ImageFlow version. Check http://petralangemeyer.com/ . o O ( If you really really want this I consider implementing it in the next version... coming when I find some time for it ;D )

11:02 - Keith

Quoting Andrew (12.03.09 @ 17:18): ...is there an easy way to make the flow continuous i.e. so when it reaches the end of the images it starts of again, like a carousel? Would also like to know if this is possible. Thanks, Keith



17
Mar
2009

11:49 - Finn

@ Rob: Um eine optimale Bilddarstellung für das zentrierte Bild zu finden gehst du am besten andersrum vor. Konfiguriere erst ImageFlow wie es am besten aussieht und mache dann ein Screenshot. Dann miss die exakten Bildmaße und speicher die Bilder in den Relationen. Alles andere ist sehr umständlich. Optionen die die Bildabmessungen beeinflussen sind: imageFocusM, imagesM, percentLandscape, percentOther (http://finnrudolph.de/ImageFlow/Documentation#Options)

11:07 - Rob

Hallo Finn, ist es möglich die Originalgröße der Bilder darzustellen, ohne dass sie skaliert werden? Bin schwer beeindruckt von dem Programm, aber durch diese Skalierung stimmen die Verhältnisse teilweise nicht, wenn ich kleinere Bilder einsetzen möchte. Schonmal Danke LG Rob



16
Mar
2009

14:20 - Keith

I have reflection and slider turn off for my setup. And now, there seem huge spaces at the top and bottom. Any tips on how to reduce these spaces? Thanks.

12:07 - Denis

Yes Finn, why use Imageflow with only 1 image ? But if you begin a new gallery of pictures with only one picture, the time you collect the other, your 1st image must appear. This is the problem I have seen. Thanks

11:37 - Louis

@ Finn Thanks for your quick answer. I had an old version which didn't include that option... But scrollbarP works perfectly.

10:31 - Finn

@ Denis: Hum.. okay. I'll have a look into that. I always thought: "Why should anyone use ImageFlow with only one or even no images?" But considered some nice dynamic content there are some cases it would make sense... will be fixed in the next version ;D

10:29 - Finn

@ Louis: The option scrollbarP is your friend ;D ( http://finnrudolph.de/ImageFlow/Documentation#Options )

10:15 - Denis

Finn, I have just seen that if Imageflow contains only 1 picture, that do not run, then it was the case with the last version. The minimum is 2 pictures.

09:55 - Louis

Hi, how can I easily change the width of the scrollbar? Thanks



15
Mar
2009

13:55 - Denis

That's works now. That's perfect !

11:25 - Finn

@ Denis: Okay... where are you running ImageFlow? On your local machine? If that is true are you aware of the requirement of PHP with the GD library for the reflections? If it is somwhere on the net a link on your testenvironment would be nice... otherwise it's guessing ;D

11:20 - Denis

Finn, Imageflow works, but there is not images. Then when we extract your zip, I have well the images.png in the folder img. But your link works perfectly : http://testground.finnrudolph.de/software/ImageFlow_1.1_Download/



14
Mar
2009

21:55 - Finn

@ Denis: Hmmm... does that error occur also with this ImageFlow http://testground.finnrudolph.de/software/ImageFlow_1.1_Download/ ? That is the content of the download package and it works just fine with my IE7 under WinXP SP3. And just to make sure: I am checking the ImageFlow version with BrowserShots http://browsershots.org/http://testground.finnrudolph.de/software/ImageFlow_1.1_Download/

19:33 - Denis

I have extracted the new version of ImageFlow and it does not run. The images do not load. Either the images do not appear, either, the scrolling bar block at the beginning of the loading. I have IE7 and all the other version runs perfectly

17:57 - Finn

@ Jelte Liebrand: Sure thing. What did you have to change? ... wrote you a mail...

16:03 - Jelte Liebrand

Hey there, I've updated your script so that it works with shadowbox... would you like the patch to get that in to the main version? (also added an option to turn off mousewheel scrolling as it annoyed me ;-)) /Cheers, Jelte (jelte at liebrand dot co dot uk)



13
Mar
2009

22:54 - Finn

There is a new ImageFlow version online! Check the changelog at http://imageflow.finnrudolph.de/ and grab yourself a hot new copy at http://finnrudolph.de/ImageFlow/Download (Soon you can read more about the release in the blog...)

11:52 - nikhil

nice scripts .....

03:04 - Jacob

This script is great! However, I can't seem to lower the scrollbar. I'd like to drop the scrollbar and images so that I can fit taller images on the screen. Right now, I have several inches of blank space under my images and scrollbar. I've tried messing around with the imageflow.css file, but can't seem to get it right. Thanks!

01:42 - Philipp S.

Hi Finn, du hast geschrieben, dass es demnächst eine neue Version geben wird, in der man die Relation selbst definieren kann. Das wäre sehr nützlich! Wann wird es ca die neue Version geben? Viele Grüße Philipp S.



12
Mar
2009

21:09 - Ellen

Some of my users are getting a “Script Error: Member Not Found” error message when closing an IE window that was on our page that includes ImageFlow (http://beckerexhibits.wustl.edu/mini/wusm-new.html): In our case the Line referenced is 245, Character is 5; Code is 0. Is there anything I can do to fix this?

17:41 - Joshua

I'd like to get the front image to be larger. Right now, it appears limited to a preset max size. I've tried changing the "imageFocusM" from 1.4 to 1.7 or larger. I see no difference. In imageflow.css, I have the imagleflow width @ 100%. Any ideas?

17:18 - Andrew

Hi, With regards to Imageflow, is there an easy way to make the flow continuous i.e. so when it reaches the end of the images it starts of again, like a carousel? Thanks!



11
Mar
2009

22:53 - Andy

Hey Finn, your software is awesome. ImageFlow and MyFlow are killers ... thankx for that! Andy

14:43 - Finn

@ Tom: Schreib mir mal eine E-Mail...

14:42 - Finn

@ Des Deeney: Check the header of your HTML.

14:42 - Finn

http://blog.iphone-dev.org/ "iPod Touch 2G: Hi, welcome to the jailbreak family" YEEEHAAAAA!!! ;D



10
Mar
2009

16:02 - Des Deeney

Love the software, looks really well and have really played around with it. My problem is "How do I change the icon". I have changed the favicon.ico but it seems to be hard coded. Is there anyway to fix this. Regards, Des



09
Mar
2009

20:05 - Tom

Hallo und Lob und Anerkennung-) Ich würde gerne ImageFlow anstatt eines in meine, template eingebauten slider nutzen. Hier eine Demoseite zum meinem Template. http://projamlight.oinkba.com/ Ist dies möglich? Besteht die Möglichkeit das Script inklusive Einbau zu erwerben? Danke Tom

18:48 - George

OK i disabled the reflections and works. But i have PHP on my PC ( i have WAMP SERVER which is php, apache and mysql all in one). Why i will not work with reflections?? Thanks Chuck!

17:53 - Chuck

George - if you are trying this on your own computer instead of a server, you'll need to install PHP. #5 of the FAQ states: I don't see any images, just imagenames. What am I doing wrong? ImageFlow needs a PHP server running a GD library to generate the reflections. It will work without PHP if you disable the reflections. I hope this helps you. Chuck

17:38 - George

Hi, I have a problem with my pictures. I load pictures from my database but i can't see it in ImageFlow. i can se only the pictures name. if i click on the name i can see the picture in another window. I use only jpeg pictures. can you help me?

16:13 - Chuck

How can I lower the amount of open space that is above the image, as well as the open space below the scrollbar? Any assistance would be appreciated.



07
Mar
2009

16:07 - Terrence

If you decided to find any kind of files fast you should try here http://sharesdigger.com All informational recourses are divided according to their features, so it's easy to search for what you really need now.

05:00 - Question...

This looks pretty awesome, but I seem to be having a weird problem. I got the effect working and the images showing up, but when I test it, the coverflow runs vertical, along the side if the div! The images are correctly shown, but they scroll from top to bottom! Any ideas?



06
Mar
2009

20:40 - marius

Hey Finn- First of all thank you so much for all that you have done. I have 1 question. I upload images through my site and store there location in a database. When i call the images from the database to display in the image flow, all the images stay the same size and do not get smaller as they move further from the center. I do not know what im doing wrong or weather it will work as i wish. Thank you again for great work and God Bless

18:00 - rickydazla

Fiddled a bit more but still no joy! Please can you take a look? Pretty please? http://www.layabarak.com/dance.html



05
Mar
2009

19:59 - rickydazla

Hey Finn - Love your flow! Hvae bought a license and will buy another if I can get the fokker to work. It seems to be OK in FF but in IE on this page it won´t show (checked the ones on your site and they show fine): http://www.layabarak.com/dance.html Help much appreciated Rick



04
Mar
2009

10:06 - Ruud

Can you explain on your website that the license has changed at some time? Version 0.9 was Public Domain: [quote]You are free to use this in any product, or on any web site.[/quote] Now it "suddenly" is CC3-Non Commercial. Nowhere (documentation/faq) I find when this change took place.



03
Mar
2009

12:00 - Wojtek

James - work with your paths - right click on your "invisible" image and check path, make sure it is right.

11:45 - Michael

Schaut mal bei mir vorbei [link:www.physik-lexikon.de] :) Michael

11:44 - Michael

Schaut mal bei mir vorbei www.physik-lexikon.de :) Michael

10:56 - James @ NC

Hi there, I am having difficulty replacing the images, the script i downloaded when previewed I can only see the text and not you images. However if I click where I think the image should be it links to another page and becomes visible. I really would love to know how to see the images and change them to my own with the reflections working and visible too, please please help. Many thanks, James



02
Mar
2009

20:51 - Wojtek

Ohh, and one more. After turning on opacity and reflections, reflections are not working corectly in ie

20:45 - Wojtek

Hi! Thank you for your really good script. I think, that I found one bug in it. When I want to place really high and norrow image it is not centered in preview and looks really bad.(tried on clean version from your download section) Maybe you know any solution for that? Would appropriate your reply. wojciech.radomski [at] gmail.com I will definately donate after finishing my project

14:56 - Markus

@Finn: Danke für die schnelle Antwort. Ok, das hatte ich vermutet. Ja, ändert ja nichts daran dass es trotzdem ein feines Teil ist, echt super! Dann bin ich mal auch auf die neue Version gespannt. Gruss M.

12:18 - Finn

@ Markus: ImageFlow skaliert die Bilder in Relation zur Breite des Div containers. Es wird demnächst eine neue Version geben, in der man diese Relation selbst definieren kann.

12:16 - Finn

@ slochhewie: Check the Highslide Forum and especially that FAQ: http://highslide.com/forum/viewtopic.php?f=4&t=606

08:02 - rob

Hi Finn habe mir ein solche antwort schon gedacht. Das "aus dem Hintergrund kommen" statt nur von der seite wäre halt schön (gewesen). Kennst du jemand der deinen Vorschlag für mich realisieren könnte?



01
Mar
2009

21:58 - Markus

Ich habe ein kleines Problem. Meine Bilder sind 170px x 133px. Leider werden die aber immer vergrößert dargestellt, trotz eingabe der Grössen im imagetag. die grösse der Galerie ist 760x300. Ich habe es im Moment gelöst indem ich "imageFocusM: 0.7" eingefügt habe, so stimmen die Bilder. Nur während dem scrollen z.B. sind die Bilder trotzdem vergrössert. Irgend eine Idee woran es liegt? Gruss, M.

19:05 - Shayne

Found out :( for some reason you can not start your page with it seems you must have something like :(

17:41 - Shayne

Really having problems with one of my image flows as it keeps showing the images vertical instead of horizontal. I have a simpler page that does it perfectly but on this one they grow and all but its like the x position is completely ignored. If I haven't fixed it by the time you answer check it out at http://www.nickydee.net/blog/ I have a working version at http://www.nickydee.net/index2.html ps. great app, definitely going on my link page ;)

17:17 - Steffen

Hallo, kurzer Hinweis. Wenn man die Caption, also den Alttag des Bildes als Link darstellt (HTML Entities), dann wird die Caption im FF und IE nicht richtig zentriert und der Opera und Safari schiebt das ganz komplet nach links. Um das zu vermeiden müßt Ihr im CSS einfach nur folgendes ergänzen: .caption a {text-align:center; position:relative;} Mfg Steffen

07:26 - slochewie

Can this be use with hs.htmlExpand to and objectType: 'ajax' so that the highslide can render an external html file instead of an image? I did try myself but my js skills are zero to nil and every time I click on slide I just get the loading image.



27
Feb
2009

20:40 - Alexandre

Hey I need you´re help... I can´t Install this into my webpage.. I want that when I click on 1 Picture that it go to another frame... example: I have a Picture where is written Mobile-Phone Designs then when I click on this picture they go in the same frame to another page where the mobile phone Designs are... Who can help, please write to: alex.dacruz@yahoo.de And when it is in German it is aswell better for me to understand xD Thanks...

17:02 - Finn

@ Simon: Sure. You can purchase a commercial license - http://finnrudolph.de/ImageFlow/Download

14:36 - Simon

Hi, I am a software developer, and would like to know whether i could you your coverflow to show examples of my work?



26
Feb
2009

17:19 - Dodg3r

YouFlow rockt :)

08:17 - Dieter

Hallo Finn, ich mache mit einen onclick links oben auf der Seite ein div sichtbar und möchte, dass ImageFlow dann wieder auf das erste Bild geht, ich also links vom ersten Bild Raum habe. (Sowas wie onclick="Imageflow.glideTo... " )



25
Feb
2009

22:00 - Philipp S.

@Finn Ich habe schon versucht die Proportionen in Javascript zu ändern. Leider hat sich dann alles verzogen. Reicht es nicht aus wenn ich die Berechnung der Seitenverhältnisse des Containern ändere? Kannst du mir ein Tipp geben, in welcher Funktion ich ansetzen soll. Viele Grüße Philipp

20:37 - spaxi

Habs jetzt Gott sei Dank hinbekommen! Ich wäre echt fast verzweifelt. Danke.

19:55 - Finn

@ spaxi: In irgendeine css datei, die für die Seite in der du ImageFlow mit Highslide kombinieren willst aufgerufen wird (also im header der html seite auftaucht)...

19:50 - spaxi

Kann mir niemand helfen?? Wo muss ich diesen Code: / Where to put this code: #### .highslide-container { z-index:10003 !important; } .highslide-credits { display:none !important; } #### einfügen??

00:23 - Finn

@ Frédéric: Try setting the option (http://finnrudolph.de/ImageFlow/Documentation#Options) preloadImages FALSE



24
Feb
2009

23:52 - Frédéric

I have tested image flow, it is really good. But there is a problem when you have too much images: they appears only when they are ALL loaded. So, you have to wait a long time before to see images. Is that not possible to show ten images, for instance, after they are loaded, and only after continu the loading for the others ?

22:17 - spaxi

Hallo. Erstmal möchte ich sagen, dass mir das ImageFlow wirklich super gefällt. Jetzt möchte ich gerne Highslide hinzufügen, aber irgendwie hilft mir die Seite mit den Kombinationen nicht weiter :( Kann mir jemand helfen? Bei welchen Dateien muss ich was verändern damit das klappt? Danke im voraus, spaxi

20:15 - Nightfly

Wäre eine super Sache wenn du das hinzufügen könntest ;)

18:51 - Finn

@ Philipp S.: Du kannst die Relationen im JavaScript ändern... Aber das ist nicht so trivial ;D

15:50 - Philipp S.

Hi , gibt es keine andere Möglichkeit die Proportionen des Containers zu ändern. Ich brauche einen Container der 500px Breit ist und nur 200px hoch. Mit "position:relative; und margin-top:-50px; margin-bottom: -50px" ändert nicht die größe, weil die dargestellten Bilder nicht auf meine gewünschten Proportionen berechnet werden. Grüße Philipp

10:17 - Finn

@ BorGus: I don't know. Ask the forum of the CMS and everything else is documented there: http://finnrudolph.de/ImageFlow/Installation

01:32 - Fredrik

Hey Finn, I have a website where you can listen to webradio, music and view web-TV. Its a very userfriendly website that makes all these things easy manage. I also have TubeSpider on the site, but I found your YouFlow much more nicer. So I would like to have it there. At fist I had this site for personal use on my local machine, but I upload it for fun a couple of years ago, and there are some people enjoying it and using it.



23
Feb
2009

11:39 - BorGus

How to add the Imageflow in a Panel in Php fusion v7 ?

10:09 - Finn

@ Frederik: YouFlow is simply ImageFlow combined with Highslide (which is simple and documented there: http://finnrudolph.de/ImageFlow/Combinations#Highslide) plus some lines in PHP to access the YouTube API (which is a littlebit more complex and documented there: http://code.google.com/intl/de-DE/apis/youtube/overview.html)... At the moment YouFlow is a service as it is. For what would you need it?



22
Feb
2009

23:30 - Fredrik

Is YouFlow a script that you will release or sell?

20:36 - Finn

@ Rob: Hmm.. das hat dann aber auch nicht mehr viel mit ImageFlow zu tun... am einfachsten wäre es einfach so wie bie Apple zu realisieren, also einen ganz breiten Streifen mit Bildern und via JavaScript den Streifen hin und herschieben und den Rest mir overflow:hidden; verstecken.

20:33 - Finn

@ Jon: Check out the best pop-up JS combined with ImageFlow http://finnrudolph.de/ImageFlow/Combinations#Highslide ;D

18:03 - Rob

Hi Finn. ich bin experimentire gerade mit ImageFlow und würde es gerne auf unserer Homepage einsetzen. Natürlich werde ich dann eine Lizenz erwerben. test: http://www.mitsm.de/fileadmin/user_upload/Test_ImageFlow/ Ich habe es jedoch bei folgender Aufgabe es nicht geschafft, sie mit den vorhandenen Einstellungen zu lösen. Anbei eine Fotomontage. Hier sind mehrere Images, in der Mitte gleich groß. Das ganze ist breiter. Besteht die Möglichkeit, so etwas mit den vorhandenen Einstellungen zu realisieren? fotomontage: http://www.mitsm.de/fileadmin/user_upload/Test_ImageFlow/Fotomontage.png Wenn nicht, wie viel würde eine individuelle Entwicklung bzw. Erweiterung des vorhandenen Image Flow kosten? Ich habe tatsächlich (in Zukunft) auf meiner Homepage die gesamte Breite 1024px Platz, um diese in einem oberen Balken anzugeben. Ähnlich wie bei http://www.apple.com/de/itunes/ aber mit flow effekt Das heißt, es wäre interessant, wenn es einen Parameter gebe, in dem ich angeben könnte: 4, 5, 6 oder mehr Bilder im "Fokus" zu haben. Vielen Dank im Vorhinein für die Antwort. Danke rob

17:01 - Jon

Thanks Finn! Works great! Any chance you will be adding the ability to link in a shadowbox capability that works with web pages when you click on the focused image such as http://orangoo.com/labs/GreyBox/?



21
Feb
2009

18:32 - Jon

Hey Finn, I was trying out your imageflow script for my portfolio (It's beautiful) and wanted to see if I could get it to work before purchasing a license. I uploaded your default files and it works fine at http://www.firelyte.com/ImageFlow/ but when I try to apply the changes for a white background at http://www.firelyte.com/portfolio.html, the reflect2.php doesn't appear to work at all. I moved all the files into the same directory and it still doesn't work. If I turn off the reflections it works, but I can't figure out how to point the imageflow.js to look for the reflect2.php file. In other comments you said line #158 could be adapted, but my line 158 looks to have nothing to do with that. Thanks for any help. - Jon



20
Feb
2009

20:26 - elnino

ah ne das isses nicht. Irgendwie ist das Bild auch nicht richtig mittig. Sorry für den Spam hier.

20:01 - elnin0

ich glaub die Antwort steht 2 Beiträge unter mir, sorry. Ich test das gleich mal.

20:00 - elnin0

Hallo Zusammen, erstmal vielen Dank für das Script, sehr schön und günstig. Ich habe ein kleines Problem mit Imageflow: Merkwürdigerweise werden manche Bilder leicht in die Breite verzerrt. Bsp: (an der Wasserflasche gut zu sehen) http://bark0t.bplaced.net/flo/produkte/index.html Irgendwo ist da der Wurm drinn, die ImageSize Tags sind passend ausgefüllt und passen alle. Wäre echt nett wenn einem CSS Neuling hier schnell geholfen werden kann.

17:17 - Finn

@ Steve: Check line 373 following in http://imageflow.finnrudolph.de/imageflow.js and alter the value for the landscape format from 118 to 100... should do the trick...

16:34 - Steve

Hi Finn, I would like to know how to maintain the proportions of images? For instance, on your examples page you use an image that is 400px wide X 300px high (portrait) and an image that is 300px wide X 400px high (landscape) but when they are focused, the portrait image is scaled down to 156 X 208 and the landscape image is scaled down to 156 X 117. Is it possible to display the landscape image as 208 X 156? Thanks



19
Feb
2009

08:38 - Dieter Kahl

Hallo Finn, ich mache mit einen onclick links oben auf der Seite ein div sichtbar und möchte, dass ImageFlow dann wieder auf das erste Bild geht, ich also links vom ersten Bild Raum habe. (Sowas wie onclick="Imageflow.glideTo... " )

04:33 - Barbara Weibel

I figured put how to put it in the header of my blog: http://holeinthedonut.com

00:43 - Finn

@ Dragan: Hi, that will not be possible, for ImageFlow is an 2D applikation and the tilting of the images happens in a 3D space... One could do the trick somehow on the 2D level, but the performance would be really bad. i.e. the tilting animation needs at least 15 differently "tilted" thumbnails per image to look smooth. Generating that in realtime is no option and precache them via php would cost too much data to load.

00:39 - Finn

@ Cobus: Can you please post a link on your implementation?

00:38 - Finn

@ Dieter Kahl: Statisch gibt es lediglich die Möglichkeit via startID ein Anfangsbild zu wählen. Alles andere muss dynamisch via JavaScript angesprochen werden und durch eine Event ausgelöst werden. Also z.B. onclick etc. Was soll denn genau wie und wo passieren?



18
Feb
2009

02:54 - Dragan

.... I think they call it TILT, instead of "angle" as I first referred to it.

02:52 - Dragan

Finn, are you thinking about implementing "angle" on out of focus images? Thanks.



17
Feb
2009

19:08 - Cobus

Hi, I'm trying out your imageflow, and it works wonderfully! However I cannot get the onClick function to work. This is my javascript: var instanceOne = new ImageFlow(); instanceOne.init({ ImageFlowID:'myImageFlow', opacity: true, opacityArray: [10,6,4,2,2], slider: false, reflections: false, startAnimation: true, captions: false, preloadImages: true, startID: 2, reflectionP: 0.4, imageFocusM: 1.3, imageFocusMax: 3, onClick: function(){ alert("hello"); } }); Thanks!

09:59 - Dieter Kahl

Hallo Finn, sehr tolles Script, gerade gekauft... Gibt es die Möglichkeit, dem Script von der umgebenden PHP-Seite zu sagen, dass es wieder auf Bild 1 springen soll?

09:44 - Finn

@ kamla: You altered the imageflow.css please use the original version: http://imageflow.finnrudolph.de/imageflow.css If you want to show the images as they get loaded disable the option preloadImages (http://finnrudolph.de/ImageFlow/Documentation#Options)



16
Feb
2009

17:55 - kamla

hi.. great script. i have quick question.. when the script is pre loading the imgs it displays them in two places... one on the top left corner and one over the slider.. is there a setting to pre load the imgs without diaplying them in two places see here http://singhera.com/baby/gal4/

15:41 - James Henderson

I would like to get your permission to use you rfantastic application on a commercial web site please. It is not a very popular site (we are lucky to get 100 visitors per day). We are a small new digital agency and are putting ideas together about rotating images on our new site. The current site is at www.sevensquared.co.uk Thank you very much for your time, great app by the way! James (james.henderson@sevensquared.co.uk)



15
Feb
2009

19:35 - Guzber

Thanks a lot!



14
Feb
2009

20:21 - Guzber

Hi, Finn. How do I change the aspect ratio of the imageflow div? It is now 16:9? And my focused image seems too small, leaving extra empty space above it. Is it possible to change the magnification ratio too? I tried changing multiplicator and height values in the script itself. but it seems to react only to the overall width, set by css proportionally.

08:00 - Barbara Weibel

Hi Finn: Is there any way to integrate your code into a blog header? I have tried, without success. If so, I would be willing to hire you to do the work. I want the images to show up under the blog title and subtitle, and I will change the header image to be solid black if this can be done. You can see my site at http://holeinthedonut.com and contact me there. Thanks.



13
Feb
2009

00:27 - Finn

@ Oli: Hmmm... Autoscroll kann ich mal implementieren... Mal sehen, wann ich Zeit dafür finde. Wegen einer Alternative zu PayPal schreibe mir doch bitte einfach eine E-Mail.



11
Feb
2009

17:29 - Oli

Ist eine Lizenzierung auch ohne Paypal möglich? Möchte gerne überweisen.

17:14 - Oli

Gibt es die Möglichkeit, einen "Autoscroll" zu verwenden? Ist sowas in Planung?



10
Feb
2009

19:15 - John Paul

Hi I am trying to intergrate imageflow into my design. http://www.bsfc.ac.uk/knockabout/index.html id like it to be the same height & width (200 x 617) as the advert here (http://www.bsfc.ac.uk/knockabout/apply.html ) cheers John Paul please could you reply to johns@bsfc.ac.uk

18:22 - Christian

Hello again, i still have issues with ie and want to push my concern (http://finnrudolph.de/Shoutbox/1233849112). ie stops after showing loading bar. i load images via xmlhttprequest with prototypejs. ff don't have any issues. URL to my test-site: http://projects.christian-renner.eu/image-flow/ anybody knows this problem?

17:12 - Uwe

@Finn: Vielen Dank. Das hat geklappt.

16:29 - Finn

@ UWE: Aaah okay... du hast im Quelltext für diese Bilder die Namen im alt Tag angegeben. Entweder du entfernst diesen Eintrag, oder du versteckst generell alle Bildunterschriften, indem du für die id 'caption' im CSS die Eigenschaft visibility: hidden; setzt.

15:23 - missAmour

Very useful files search engine. http://Indexoffiles.com is a search engine designed to search files in various file sharing and uploading sites.

15:12 - UWE

@Finn. Wenn Du auf Editorial gehst und das zweite Bild, die Dame vor dem roten Haus, anklickst, siehst Du die schwarze Bildunterschrift.

10:50 - Finn

@ Sean Riley: If the search engine is available only under one domain you can simply purchase a commercial license under http://finnrudolph.de/ImageFlow/Download If that is not the case and you want to redistribute ImageFlow you should contact me via E-Mail.

10:48 - Finn

@ ikki-jamie: Something overwrites the settings for the IMGs inside the imageflow div. Make sure, that the settings for .imageflow img (see http://imageflow.finnrudolph.de/imageflow.css) are not globally overwritten... try to include the imageflow.css as the last css in the header...

10:46 - Finn

@ Uwe Nölke: Ich sehe keine Bildunterschriften... selbst hinbekommen?

10:45 - Sean Riley

Hi Finn, our company Entelligence (www.entelligence.co.za) is keen on using your technology for graphical presentation of search results in a search engine we are develping - I am seeking your permission ot use ImageFlow for this...

09:26 - ikki-jamie

Dear Sir, I've tried to install image flow module within my joomla site, but it appears to flows vertivally, as its suppose flows horizontally. Hope fore your kind explanation or solution from You bout this issue. Plese check out my website at "http://bumilangit[dot]com/site", under menu "Popular", article title "test". Please PM me at sulato83[at]yahoo.com. Thank you very much... best regards. Ikki-Jamie

09:22 - ikki-jamie

Dear Sir, I've tried to install image flow module within my joomla site, but it appears to flows vertivally, as its suppose flows horizontally. Hope fore your kind explanation or solution from You bout this issue. Plese check out my website at "http://bumilangit[dot]com/site", under menu "Popular", article title "test". Thank you very much... best regards. Ikki-Jamie



09
Feb
2009

22:06 - Uwe Nölke

Hallo Finn, ich benutze image flow 0,8 (www.menschenfotografie.de). Im HTML Code kann man zu den Bildern alternativen Text eintragen. Kann ich im Image flow irgendwo diese Anzeige abschalten, so daß man meinen Alternativtext nicht mehr sieht? Viele Grüße Uwe



08
Feb
2009


07
Feb
2009

12:17 - Finn

@ all: Sorry, if you are waiting for any answers from me. I am currently 'under fire' with my diploma and have no time for support until the next week... If you are interested in what I do take a look at: http://www.flickr.com/photos/finnrudolph/sets/72157613087646375/ Full documentation and download of the written diploma will come soon...



06
Feb
2009

23:43 - Jon

Posted a note on my blog here: http://acuras.blogspot.com/ Thanks again!

23:36 - Jon

Very cool. Keep up the good work. Jon - Acuras

20:50 - Raggs

Finn, I figured out both of my questions... Thanks for the great code. I will forward link when finished.

11:17 - Wes

another question... how can i keep the last image that was clicked as the focused image? it resets back to the start image of the flow, where i want what the user clicked to be the starting image after the new page loads. help?

11:15 - Wes

Hello. I am having the loading bar problem in IE as well. Worked in FF great. Any ideas? Also, would it be possible to have other div content on my page change depending upon which image in the flow is focused? I tried changing the OnFocus, but couldnt get it to work. Please help! thank you



05
Feb
2009

16:51 - Christian

Hey all, i use imageflow and with firefox everything works fine. IE stops processing after displaying loading bar. Anybody knows this problem?

06:49 - Andrew

I am not sure what I am doing wrong but when i add in the Highslide capability and click on the image all i get is a "loading" bar. Any suggestions? Thanks.



04
Feb
2009

23:16 - Iain

Further to my last message, I managed to fix the problems, I don't know how, but it all works fine now!

19:34 - Iain

I am having a few problems getting this to work for me... First, in IE, it gets stuck on the image preloader, at like image 10 of 14 - the images are only about 25kb each? Second, in Firefox and Safari, Imageflow loads but the images are not displayed, just the 'alt' text for each image, same images, around 25kb each... I have the code setup as per the instructions, do the image paths need to include 'http://.......' or is a short description such as 'images/image1.jpg' ok? Also, when each image is clicked I want it to open an html page which I have in the 'longdesc' field as per the instructions... Help!!! Thank you!!!

18:48 - Raggs

Finn, is there an example css or implementation of a modified container size that I can look at so I know where to make the changes? thanks!

18:26 - Raggs

Hi Finn, Great Code. I'm trying to find out how to reduce the container size. I'm looking through the posts now, but wanted to also ask about what the cost is to license this for one site? Thanks in advance! Raggs

11:57 - David

OK. Solved this one by adding a higher z-index into the .highslide-wrapper

11:14 - David

Great script. I have got it working with highslide but when I 'onclick' the slider shows through the picture. On your examples it does not. Is this an imageflow problem or a highslide one? Example here http://www.palmerstonforts.org.uk/tour.htm Any clues as to where to look would be helpful.



03
Feb
2009

20:56 - Brendon Kozlowski

Finn: Thanks for the clarification! Your website/script already had a link-back in our copyright information page. :)

14:21 - Kelly

What is the request in "longdesc" to play the youtube link in the highslide window from imageflow, is there a special player script (.php) I have to include on my server? I've googled for inc_players but am not a php expert. Thanks if you can help.

12:40 - Rick

I got the imageflow working, nice! But when i see te image size and the loading time with the reflection on, reflect3 (reflectionPNG: true). I see that the image size is 8 times the size of the jpg file. How can i bring this back to 1 time the size for faster loading of the imageflow.



02
Feb
2009

21:54 - Kelly

I've tried to put youtube movies in the highslide pop up s from imageflow, but with no luck. Should this work?

19:39 - Steve

I am trying to test IamgeFlow 1.0.3 but facing a problem. I am trying ImageFlow to glide to image number 3 when the page loads. As in the imageflow.js I found some default values where I found StartID, I have changed it to 3 or 4 but it didn't worked. Please help that how can I set the StartID so that on page load 3rd images can be focused.

06:10 - Zitheran

I thought that I would add that this will work in firefox without reflections, but will not go past the loading screen in IE with or without reflections. It seems that the imageflow.js is running fine, but the reflections.php is causing the problem. Here is the Directory structure that I am trying to use: /assets/imageflow.js /assets/reflections2.php /assets/reflections3.php /assets/*.css /images/*.png (or *.jpg) /gallery/test.asp Thanks again for the help.

04:51 - Zitheran

Hi there, I have a dumb question. i am trying to use imageflow in to my site. the problem that i am having is, when i put all the image flow files in to a subdirectory of the server root it doesn't work. to me it looks like the imageflow.js is not running. Do you have any suggestions for me? thanks



01
Feb
2009

08:35 - Matthew

Don't want to waste space, but I managed to figure this one on my own. Added function to the default case of the "Change zIndex and onclick function of the focussed image" section. In case someone else was wondering how to do the same

03:01 - Matthew

Hey! Thanks for the great script. I was wondering if anyone had a solution to call a javascript function when an image is clicked anywhere in the imageflow. Currently, it only works once you have brought the image into focus and then click again. Thanks for any help



31
Jan
2009

14:32 - Finn

@ Archana: You can dynamically generate the XHTML of you site based on the daily changes and ImageFlow will show you the content.

14:31 - Finn

@ Brendon Kozlowski: Nope, you can use ImageFlow for free. (And a link to the implementation is always welcome ;D)

11:21 - Joost

I already got it with the highslide-full.js

10:49 - Joost

Hi Finn, I'm trying to tweak highslide but I can't get it work when I but for example a dimmingOpacity: 0.75, in the imageflow.js. Is there some interference in imageflow holding this back? Thanks for your answer.



30
Jan
2009

19:16 - Brendon Kozlowski

Finn: For ImageFlow's licensing, do you consider educational/government organizations to be commercial as well? (Specifically, my site is a Public Library funded by city tax dollars, but we are not considered non-profit, even though we don't actually sell items on site.)

02:25 - Archana

Dear Mr.Finn Im trying to develop something like image flow for my site but the problem is my site has daily changing videos. Im wondering if image flow would work on it? is there something that i can do??



29
Jan
2009

21:44 - Finn

@ vin: du kannst mir gerne eine E-Mail schreiben, dann stelle ich dir eine Rechnung aus (pdf). Die Funktion window.unonload verursacht bei mir im IE7 irgendwie keinen Fehler... hmmmm. Die ist für den Safari, da gab es Probleme mit dem Backbutton "Fixed the back button bug (using the back button with Safari 3 or Opera sometimes crashed ImageFlow)"

21:07 - Finn

@ Lukas: Check mal die Firefox Fehlerkonsole. Die schmeißt onclick "hs is not defined in imageflow.js" Da scheint HighSlide nicht richtig geladen zu werden...

16:10 - Vin

Hi Finn, die Funktion "window.onunload" wirft einen Skriptfehöer im IE5 & IE7 aus ("Mitglied nicht gefunden"). Was für ein "Back Button Issue" soll die Funktion lösen? Ohne die Funktion habe ich keine Probleme...?

11:07 - Puck

Found it! In the CSS .imageflow , was trying in .imageflow .caption

11:05 - Vin

Hi Finn, ich habe ImageFlow mit etwas Mühe in mein Web Projekt integriert. An der Stelle nochmal ein großes Kompliment! Sehr gelungen! Ich habe es immer noch nicht geschafft die Glide Funktion von aussen anzustossen. Ich möchte das ImageFlow nach 5000ms zum nächsten Bild gleitet. Und am Ende der Bilderstange ganz zurückspult. Aber ich kapiere nicht wie ich das Objekt entsprechend adressieren kann. Gibt es eine andere Möglichkeit als mit Paypal ImageFlow zu lizensieren? Banküberweisung möglich?

09:36 - Puck

Hey there, How do I change the font ( color, style ) for the image loading text and captions



28
Jan
2009

21:07 - Lukas

Hi Finn! Sorry, my fault. My problem is, I don't really know where to put the "var Highslide_1 = new ImageFlow(); Highslide_1.init({ ImageFlowID: 'Highslide_1', onClick: function() { return hs.expand(this, { src: this.getAttribute('longdesc') } ); } }); " And the ".highslide-container { z-index:10003 !important; } .highslide-credits { display:none !important; } " I saw the "css" and the "js" at the top right hand corner, so i changed it in the imageflow.js and the .css But nothing changed in the ImageFlow galery. (I just noticed that there isn't a link to the picture when i make a doubleclick on it, as it was before) You can have a look here: www.vflasslar.de/Flugzeugpark.html

19:15 - Finn

@ Lukas: How could anybody possibly help you without a link on your implementation? ;D

18:33 - Lukas

Hi together! I've a problem with including Highslide JS into Imageflow. I've done it as it was explained in the "combined" section. But somehow it doesn't work! I just need to modify the imageflow.js and the .css file right? Would be nice to get some help! I'm new in Homepagedesign... Thx (and sorry for the bad english) Lukas



27
Jan
2009

21:39 - Jay

Hello, is it possible to run this on IIS? ive enabled PHP files to be able to run but no joy??



26
Jan
2009

18:00 - Eddi

Hi, sorry for wasting space on the shoutbox :P the solution was simple.. in IE if you have that doesn't correspond to one of the images it will block the script..

17:04 - Vin

Hi Finn, bei Version 0.9 konnte ich über die funktion handle() das nächste bild mit hilfe einer eigenen js-funktion anschubsen von aussen. da ich nicht der obj-pro bin, kannst du mir vielleicht helfen wie ich das mit version 1.0.x hinkriege? ich brauche funktionen wie "vorwärts", "zurück" und "zum anfang" (vorher handle(-1), handle(1) und handle(imgcount)).

13:33 - Finn

@ Eddi: It works with alle IEs since the 5.5 (thats what I tested... even with the Betaversion 8 it works)... Can you make a screenshot of your problem?

13:17 - Eddi

sorry to double post, is there anyway to make imageflow work on ie?

12:58 - Eddi

@pelli, i had the same problem.. managed to fix it with z-index

11:36 - Peili

Hi Finn, i already tried using a negative margin. Unfortunately there are hyperlinks right underneath the imageflow box and those can not be clicked if i use margin-buttom: -50. Is there a workarround? Best regards Peili



25
Jan
2009

19:36 - Peili

Hi , ImageFlow is a great Script, but how can you customize the dimensions? Right now there is a huge Margin-top/buttom when i insert via: How I can i change that? Greets Peili



24
Jan
2009


23
Jan
2009

19:01 - macangelo

Hi Finn, thanks a lot for the adjustable height!

18:59 - Roman

Hi,...great script...it seems thou that the script does not work if the table design already another control... so..I would have: some text Your help is appreciated

17:15 - Simon

Hi Finn, Ich habe noch ein Problem mit dem ImageFlow. Gibt es eine Moeglichkeit die caption ganz auszustellen(mit Platzhalterframe)? JS fuegt immer dieses Frame ein und aendert so mein restliches Layout. Ferner skaliert mir die Applikation immer anhand von der angegebenen Breite das Frame. Ist es moeglich ImageFlow absolute "width" und "height" zu geben? Ich stelle mir das als div-containervorgabe vor. ImageFlow passt dann die restliche Skalierung diesem Container an. Vielen Dank Finn. Simon

14:25 - Hans-Peter

Perfekt! Vielen Dank!

13:23 - Finn

@ Hans-Peter: Schau dir doch mal die Option (http://finnrudolph.de/ImageFlow/Documentation#Options) "imageCursor" an ;D

08:56 - Hans-Peter

Hallo Finn, erstmal vielen Dank für dieses großartige Programm. Ich habe noch eine Frage hierzu. Ich möchte ImageFlow dazu benutzen um weiterführende Infos zu präsentieren, sprich eine simple Weiterleitung auf eine neue HTML Seite. Das funktioniert alles einwandfrei. Nur habe ich festgestellt, das meine Probanden nicht sofort verstehen das die Bilder anklickbar sind da keine Webtypische "Hand" über dem Bild erscheint. Kann man da was machen? Muchos gracias!

04:36 - Will

Thanks Finn . I'll fiddle with it.



22
Jan
2009

18:16 - Finn

@ Macangelo: Since you are not the first one asking that question I made a new FAQ entry: http://finnrudolph.de/ImageFlow/FAQ#Implementation_13

16:27 - Macangelo

Finn: Thank you. It works. - second question: I have a lot of free space on top of the images and beneath the slider (respectively beneath the reflections. Where can I adjust the height of these spaces - I didn't find it in the css files. thanks a lot!

14:29 - Garcia Jr.

Hi, I'm from Brazil, sorry by my english. First off al, thanks for posting this amazing gallery. I do the steps of installation and I got it work in Firefox. But the instructions for the gallery work in IE doesn't work. Even your gallery example don't work in IE. What I do? Visit mu blog: www.imagetica.net/blog And my gallery test: http://www.imagetica.net/parceiros.php

13:14 - Finn

@ Jason: This is the right place. Thank you I'll have a look into it for the next version.

13:12 - Finn

@ Will: Have a look at http://paste2.org/p/133888 line 26 down should do the thing. But this is not tested, could be, that you have to check that function that will be called on key press 13.

13:04 - Finn

@ Lars: hmm... guck mal in die http://imageflow.finnrudolph.de/imageflow.css und da interessieren dich ".imageflow .loading" und ".imageflow .loading_bar". Die .loading_bar kannst du einfach verstecken, indem du height auf 0px setzt. Dein animiertes gif kannst du dann via background-image als Hintergrund des .loading div containers setzen. Dieser wird automatisch invisible gesetzt, wenn die Ladeprozedur abgeschlossen ist. Viel Erfolg!

06:41 - Macangelo

Hi Finn, I want to use ImageFlow in an iFrame - and want the urls in the img tags ( with targeting out of the iFrame (target ="_parent") - ist that possible? Thanks a lot!



21
Jan
2009

23:59 - Lars

Hallo Finn! Hatte bislang ein wenig mit der v.0.9 rumgesbastelt; würde u.a. aufgrund der IE Bugfixes aber gerne die aktuelle v.1.0.3 verwenden. Einziges Problem: ich würde gerne wieder - wie in der 0.9 möglich - nen aminiertes GIF als Preloader nutzen! Ich weiß... Rückschritt.. und du hast dir bestimmt Mühe gegeben... aber gibt's ne einfache Möglichkeit um das umzusetzen?? Lieben Dank schonmal, Lars

17:58 - Jason

Where can I submit a change I've made to stop images from scaling up but not effect images that are getting scaled down? /* Process new image height and image width */ var newImageH = (image.h / image.w * image.pc) / z * thisObject.size; var newImageW = 0; if(newImageH > image.h){ var leftOffsetDiff = ((image.w * newImageH / image.h)-image.width)/2; var newImageH = image.height; var newImageW = image.width; }else{ var leftOffsetDiff = 0; } switch (newImageH > thisObject.maxHeight) { case false: if(newImageH < image.h) newImageW = image.pc / z * thisObject.size; break; default: newImageH = thisObject.maxHeight; newImageW = image.w * newImageH / image.h; break; } var newImageTop = (thisObject.iWidth * 0.34 - newImageH) + ((newImageH / (thisObject.reflectionP + 1)) * thisObject.reflectionP); /* Set new image properties */ image.style.left = (xs - (image.pc / 2) / z * thisObject.size)+leftOffsetDiff + 'px'; if(newImageW && newImageH) { image.style.height = newImageH + 'px'; image.style.width = newImageW + 'px'; image.style.top = newImageTop + 'px'; }

02:21 - Will

I have a question regarding how difficult it would be to have the enter key do a click action. as in if I select the images with my arrow keys I would like to press the enter key to act as the click. any thoughts?



19
Jan
2009

22:08 - Finn

AntiVJ - Live Painting: Shackleton http://vimeo.com/2690618



18
Jan
2009

21:32 - TRU

Disregard image about asp.net

19:15 - ImageFlow Reflections in ASP.NET

Finn, I have tried to use your .net solution located at http://finnrudolph.de/Blog/ImageFlow_Reflections_in_ASP.NET_available I simply dropped your files into the default settings of imagflow 1.0.3. I get the following error. Server Error in '/ImageFlow_1.0.3' Application. -------------------------------------------------------------------------------- Object reference not set to an instance of an object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. Source Error: Line 23: private void IODrawImage() Line 24: { Line 25: string stringwid = Request.QueryString["width"].ToString(); Line 26: string imgr = Request.QueryString["img"].ToString(); Can you help with this?

11:50 - Finn

@ QRcom: Please read my answer to "Dav" below and check this error message: http://sandbox.queensryche.com/imageflow/reflect3.php?img=/imageflow/img/ep_150x150.png

03:37 - QRcom

I, too, have the same problem when reflections are turned on... the images do not display, but the links work. Here's an example: http://sandbox.queensryche.com/test.html The php files are in /imageflow The images are in /imageflow/img Is there any trick to get this going, because I really like this feature. Thanks in advance for any help you can provide!



17
Jan
2009

14:31 - Dav

Ok, it works! Thank you very much for this cool javascript! (It was the reflection...)

13:48 - Dav

I am sorry, the site is not published yet. Maybe the syntax is wrong, cause the links to the files work, only that they do not appear in the slide. Can you tell me the correct syntax please? (except the javascript files than i have included already)

12:50 - Finn

@ Dav: A link to your implementation would be very useful! Open the image (which does not show up) directly(!) in a browser tab and the reflectionX.php will probably throw an error message. Also have a look at: http://finnrudolph.de/ImageFlow/FAQ#Implementation_5

10:49 - Dav

That worked. OK, and the HTML : -div id="myImageFlow" class="imageflow"- -img src="windows/adobe_logo.png" longdesc="windows/adobe_logo.png" width="400" height="400" alt="images/ubuntu_logo.png" /- -img src="windows/adobe_logo.png" longdesc="images/ubuntu_logo.png" width="400" height="400" alt="Adobe logo" /- -img src="images/ubuntu_logo.png" longdesc="images/ubuntu_logo.png" width="400" height="400" alt="images/ubuntu_logo.png" /- -/div-

10:48 - Dav

I don't know why, but i can't post it right. I will put - instead of . -link rel="stylesheet" href="imageflow.css" type="text/css" /- -script type="text/javascript" src="imageflow.packed.js"--/script-

10:47 - Dav

The HTML:

10:46 - Dav

I don't know why, but the images won't show. They do link to the images, but i can't see them. What is wrong? This is the HTML: i also linked the needed files: I can see the frames moving while sliding, but there is no image! Thanks you for help!



16
Jan
2009


15
Jan
2009


14
Jan
2009

20:14 - Eric Hobart

p.s. the target images referenced in the longdesc tag are on the server. Thanks again!

20:12 - Eric Hobart

Hi Finn, I'm giving your script combined with Highslides a try on a university site. ImageFlow works fine: http://www.norwich.edu/media/popupTemplate.html And I'm bringing in highslides.js, because the loading image appears when an image in ImageFlow is clicked. But then it hangs and the target image doesn't open. Any ideas? By the way, excellent interface/functionality. Can't wait to get it to work. Thanks

12:35 - sushil

how to get reflection under images flow loop

00:12 - Finn

@ Marc: lies dir bitte erst die Dokumentation durch: http://finnrudolph.de/ImageFlow/Documentation und dann schau dir das Beispiel an http://finnrudolph.de/ImageFlow/Examples#startID



13
Jan
2009

18:21 - Marc

Hallo Finn Ich schaffe es nicht den Start meiner Gallerie in die Mitte zu verlegen. Trotz Deines Startup example. Wo muss ich -"var example_6 = new ImageFlow(); example_6.init({ ImageFlowID: 'example_6', startID: 3 });" in imageflow.js reinschreiben und was muss ich verändern, damit es auch mit meiner Seite funktioniert. Vielen Dank schon mal im Voraus



12
Jan
2009


11
Jan
2009

16:14 - semih sahin

veryy nice

12:25 - Finn

@ mozilo-Projektteam: Nice! Dankeschön ;D

12:25 - Finn

@ Chris: Sorry, there is no implementation of ImageFlow that uses the latest version. Ken Lowther did a plugin for Joomla based on the old ImageFlow version 0.9 I don't suggest you use that old code, but perhaps you can have a look at how Ken did it and write a new Plugin? http://www.joomlaos.de/Joomla_CMS_Downloads/Joomla_Module/ImageFlow.html



10
Jan
2009

21:30 - Chris

Finn, Is there a download link for an implementation of YouFlow suitable for Joomla? I am deeply impressed by your work and wish to use it on a non-commercial site.



09
Jan
2009

10:26 - mozilo-Projektteam

Hallo Finn, wir empfehlen den Nutzern unseres freien Content-Management-Systems moziloCMS (http://cms.mozilo.de) den Einsatz von ImageFlow in Verbindung mit HighSlide. Bisher fiel das Feedback durchweg positiv aus, und auch wir persönlich mögen es sehr :) Vielen Dank für dieses großartige Stück JS und weiterhin viel Erfolg! Arvid, einer der mozilo-Entwickler



08
Jan
2009

21:25 - Frank

Hi Finn, First of all, excellent work on the Imageflow object! I love it! I have encountered a problem, I hope you are able to help me: My Imageflow works great in Firefox and Safari, but in IE the images show up out of aspect, all images seem to have the same maximum width. Do you have any idea why this is and how to fix it? Thanks so much in advance, Frank

21:15 - Mike

Hi Finn. I sent an email to finn.rudolph@googlemail.com from MainStreetllc@gmail.com requesting use of your product. Please advise once you've had the opportunity to review. Thank you.

11:29 - Finn

@ buechse: Check the css file and make sure, that nothing globally overwrites the settings for images within the imageflow div (img tag!).

10:17 - buechse

hello, fist great work, but i have one problem. on my private local webserver the gallery works great, but on the productive webserver the images are simple one under the next. any ideas? sorry for poor english



07
Jan
2009

23:00 - pete

btw, i fixed my problem with the options imageFocusM: 1.52, startAnimation: true causing the first image to be very large by adding the following code: instanceOne.glideTo(1);

13:50 - Finn

@ Multimediany: No, because as you can see in http://youflow.finnrudolph.de/ you can still navigate ImageFlow via click or mousewheel or scrollbar without loosing the highslided stuff. The problem (read: Highslide feature) you are facing is, that Highslide uses the arrow keys to navigate through many images. (try opening an image at http://highslide.com/#examples and use the arrow keys and you'll see what I mean). So what you need to do is disabling the Highslide Key support. And I don't support Highslide ;D

13:39 - Multimediany

I think you can handle it also. What I need to do is when the key event RIGHT fires the imageFlow slides. It just has to check if the highSlide was open, if true then fire the image.click event. No?

12:23 - Finn

@ Multimediany: General tipp for debugging JS in the IE http://www.microsoft.com/downloadS/details.aspx?familyid=E59C3964-672D-4511-BB3E-2D5E1DB91038&displaylang=en And concerning Highslide: That is a problem with Highslide. You need to contact the Highslide Forum to get to know how to disable the key events for Highslide. Check also: http://highslide.com/ref/

12:14 - Multimediany

Finn, I found the resolution, maybe you have to put it in your JS. Check out the link : http://groups.google.com/group/rubyonrails-spinoffs/browse_thread/thread/c0a4ae87cba265f7/d78509661cd1d400. Only the problem with highslide isn't solved. Please try to find a solution. Thx!

11:40 - Multimediany

Finn, thank's for the good comment. :p Is there a workaround for Internet Explorer, I really can't find it. In Firefox it also works I see. :p Any idea about the other problem with the highslide?

11:34 - Finn

@ Multimediany: Wow, nice Implementation. Clicking a link that glides ImageFlow to a specific image seems to work now (with opera, not with the IE ;D). Wouldn't it be cooler to allow multiple image highslides, that a user can compare images by just dragging them next to another? Like there http://finnrudolph.de/ImageFlow/Combinations#Rounded_corners_fading_and_captions

11:14 - Multimediany

Also I thing I would like to do is when I click on a picture it get's big with the highslide javascript. When I push right or left on my keyboard it goes right or left but the highslide goes away. It would be nice to stay in the highslide ... Do you understand.

11:08 - Multimediany

Gutentag Finn, Ich bin von Belgien, I speak Dutch, English und ein bitchen Deutsch. Please go to : http://www.quadrigacar.eu/new2.0/autofiche2.php?autoid=6008. You'll see the equipment there with lines underneath. If I click on that link I want the photo's to scroll. I found something on the internet that uses getElementsByClass but I can't get it to work. Thx!

10:53 - Finn

@ Multimediany: Hmmm.. wir können uns auch auf Deutsch unterhalten ;D Hast du einen Link auf deine jetzige Implementierung?

10:26 - Multimediany

Hypelink doesn't work in the shoutbox I see ...

10:26 - Multimediany

Ok. But, in my php I loop true a dataset and at that moment I know the fotoID I want to go to. So I need to call the glideTo with a parameter in the PHP and not in the JS file. How do I do that? In previous version I had somehting like this: Armlehne hinten Beifahrersitz höhenverstelbarFahrersitz höhenverstellbarGeteilte Rückbank

09:34 - Finn

@ Multimediany: This should show you how it works with the latest version of ImageFlow: http://javascript.pastebin.com/f59ee0316



06
Jan
2009

21:50 - Multimediany

Maybe, my question is not clear. In previous version it was possible to call the glideTo function as in being a public function. Now everything is object oriented so I don't seem to find to getting it to work. I'm using it for a project wit cars. I have like 30 picturen of a car exterior/interior and underneath there is an description with all the equipment. Certain equipment can is linked to a picture. So I put an onlick event on the hyperlink of such an equipment. When in previous version I called the glideTo function in that onclick event, the imageflow scrolled to that picture. That's what I need to achive with the new version also. THX!

19:57 - Mike

Thank you for getting back to me. I will have a link soon for you to see. Currently, I am using my personal pc for testing the layout. Last night, I copied your html into my existing web page html and all works well now. I'm really not sure what was causing the problem, but it has somehow been remedied. I am currently trying to figure out how to specify the height for the ImageFlow div container. Thank you.

17:41 - Multimediany

Is it possible in the new version to glideTo when clicking on a link on the html page. In previous version it was possible to call the glideTo. In the new version it doesn't work. Thx

17:21 - Finn

@ Jerry Louise: I highly recommend Highslide. Also take a look at http://finnrudolph.de/ImageFlow/Combinations#Highslide

17:20 - Finn

@ Bryah: YouFlow ist ein standalone Mashup, aber wenn du ImageFlow meinst, dann schau dir doch einfach mal die Installationsanweisung an: http://finnrudolph.de/ImageFlow/Installation

17:19 - Finn

@ Mike: Do you have a link on your implementation?

17:19 - Finn

@ Mu: Sorry, that is currently not supported.

15:49 - Jerry Louise

What would be nice to see is a better way to handle the large images, perhaps something like light box. and perhaps with a html interface. Write now i have easily made it gather images from a database record but for further integration i think the large image mode should be much nicer.

06:43 - Bryah

Hallo - wird es YouFlow auch als Wordpress Plugin geben? Bzw. wie bindet man das in seine Seite ein, wenn man Wordpress nutzt?



05
Jan
2009

18:16 - Finn

MusicBox: Mapping and visualizing music collections: http://thesis.flyingpudding.com/

17:47 - Mike

I should have been more clear on my loading .jpg problem... When changing the default .png files (in the index.html) to .jpg files, the html starts to load, but gets stuck on loading the images. Any thoughts? Thank you.

16:50 - pete

hey Finn, start animation makes the first image really big. Here is my init code. var instanceOne = new ImageFlow(); instanceOne.init({ ImageFlowID:'propertyImageFlow', reflections: false, reflectionP: 0.0, captions: false, imageFocusM: 1.52, startAnimation: true });

01:54 - Mu

I use AJAX in my site.. How can i additional insert after loaded? Is it possibility?



04
Jan
2009

19:57 - Mike

I am having trouble loading .jpg files. Do you have any suggestions? Thank you

16:25 - jojo

ja genau aber immer noch das gleiche problem wird nicht richtig angezeigt! Schaus dir mal an unter http://www.die-trums.de/pictures/

16:13 - Finn

@ jojo: AAH, du willst ImageFlow onload verstecken? Dann schreib das doch einfach in das JavaScript. Also die imageflow.js (oder imageflow.packed.js) so anpassen: http://pastebin.com/f6367221c

15:34 - jojo

ja soweit funktioniert das ja aber ich hätte es gerne standartmäßig versteckt habe s mit style="display:none;" probiert aber dann sieht das wieder so komisch aus ^^ also keine imageflow ist da

15:09 - Finn

@ Simon and Edie: Please! read the FAQ: http://finnrudolph.de/ImageFlow/FAQ

00:56 - jojo

Hi, kann man den imageflow in ein div reinpacken und es dann ausklappen? Bei wird wird der imageflow dann nicht mehr richtig angezeigt! Danke für jede Hilfe Gruß jojo



03
Jan
2009

22:43 - Edie

Is there a way to make the pictures bigger in ImageFlow? Thanks!

15:41 - Simon

Hallo nochmal, Ich habe noch ein Problem mit der Groesse der angezeigten Images. Koenntest du mir bitte sagen, wo genau die Groesse der Bilder skalierst? Vielen Dank.

13:59 - Simon

Hi Finn, Habe es jetzt mit meinen leider nicht vorhandenen jscript Kenntnissen und deiner Hilfe hinbekommen. Der "Trick" war die Zeilen in der .packed.js zu aendern und nicht in der .js vom imageflow. Vielen Dank nochmal fuer die nette und schnelle Hilfe.

13:07 - Finn

@ Simon: Ach mist, schon wieder in der falschen Sprache gedacht/geschrieben ;D

13:06 - Finn

@ Simon: The reflections are still enabled. The images linkt to http://87.106.58.154/ImageFlow/reflect2.php?img=img/img1.png which throws a GD library error. Try the following example to disable reflections: http://finnrudolph.de/ImageFlow/Examples#No_reflections

13:02 - Simon

Den Pfad zu den Bilddateien habe ich bereits ueberprueft. Es ist der Standardpfad, der mit deiner Application kommt. Ein Beispiel des Dilemmas: http://87.106.58.154/ImageFlow/index.html Vielen Dank.

00:19 - Finn

@ Pete: Hmm... okay, that is another small bug ;D Try the startanimation... should be a walkaround the problem: http://finnrudolph.de/ImageFlow/Examples#startAnimation



02
Jan
2009

21:49 - Pete

imageFocusM does not seem to take affect on the initial focused image. Only after scrolling off and back to the first image does it take affect. Any ideas?

18:29 - Finn

@ Simon: Poste mal einen Link auf deine Implementierung, ansonsten mal rechte Maustaste auf das Bild und prüfen ob die Bild-Adresse überhaupt stimmt.

18:18 - Simon

Hallo Finn, Ich habe Probleme, mir Bilder in ImageFlow anzeigen zu lassen. Die reflections sind bereits auf false. Bisher haben weder die Standardbilder funktioniert, noch meine eigenen. Es werden nur die Platzhalternamen angezeigt, wenn ich auf diese klicke erst das hinterlegte Image. Ausprobiert habe ich es in Firefox und IE. Hast du eine Idee, woran es liegen koennte?

13:28 - Finn (other Finn)(

Hi i just randomly found this webpage.... Lookes...Fun.

11:59 - Pascal

Ok i got it with a trick... If you think the image-container is just to heigh change the line "thisObject.ImageFlowDiv.style.height = thisObject.maxHeight + 'px';" to a lower value such as thisObject.ImageFlowDiv.style.height = '350px'; and you're fine. Regards



01
Jan
2009

22:27 - Finn

Machines that Almost Fall Over: http://www.vimeo.com/1609126

14:22 - Pascal

Frohes neues! @Adrian, Guckst du FAQ Punkt 5! Bin immer noch am Rätseln wie ich die Größe des ImageFlow Containers einstelle. Weiß jemand rat?

04:19 - Will

See all I needed to do was to stay home and not go out this new years !! I was able to hack something together .. it is not pretty .. but it does the work. I still would be interested to hear your sugestions

02:24 - Will

I love image flow ... it is smooth and precise. I have been attempting to ad a bit of personal style and have discovered some stumbling blocks. The main one is that I added some nice background images to the scrollbar container div and to the slider but I cannot seem to adjust the scrollbar container size. no matter how I try to force it to become wider in reference to my main div it just sticks the same darn size. I can see it as the page loads flying down from the left at the size I try to set it but as soon as it "lands" it is cropped on the right side. I can move it around, increase the div width etc, but the scrollbar itself never gets wider in relation to the slider handle. I cannot seem to get the slider handle div to not adjust its width with out putting the handle on the "outside" of the scrollbar container . Its endpoint is all ways at the end of the scrollbar container div I really would like to push it to the left somehow. Is this easy? Do I make sense.? I essentially have attempted to make div background img files that mimic the actual Apple implementation. It works and looks great .. I just need to wiggle some things a bit . any thoughts? Oh .. Happy 2009 Everybody !!