tag:blogger.com,1999:blog-20807691470570173512008-07-25T06:43:29.025+01:00phatfusionSamuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comBlogger16125tag:blogger.com,1999:blog-2080769147057017351.post-32267822806378035222008-07-11T13:45:00.002+01:002008-07-11T13:53:01.301+01:00mootools 1.2First off i must apologise for the lack of 1.2 compatible scripts, i am working on them! If you have managed to modify to scripts to work with 1.2, i would be <span class="blsp-spelling-corrected" id="SPELLING_ERROR_1">grateful</span> if you could leave a link in the forums for others to use until i can get official releases out! (hopefully very soon)<br /><br />I think in most cases its just Fx.Transitions that need to change, but the best way to find out is to check the errors in firebug.Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-35862602326216782132008-05-09T16:57:00.003+01:002008-05-09T17:16:35.391+01:00Phatfusion forum launchedHopefully this will be a place where people can get help, post bug and even better post fixes. Discussions on improvements and new features are always welcome.<div><br /></div><div>I've just set it up so no initial posts from me yet, i'll be moving things over from the comments on this blog to start with. But please go ahead and use it.</div><div><br /></div><div><a href="http://forum.phatfusion.net/">forum.phatfusion.net</a></div>Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-87960036380553582202008-04-22T14:37:00.002+01:002008-04-22T14:39:17.432+01:00a few bugs have been fix for multiBoxA bug with repeatedly open the same image has now been fixed. And if you don't have the title attribute, the controls will still show.<br /><br />version 1.3.1Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-29432362250924779582008-04-16T17:32:00.005+01:002008-04-16T17:47:32.257+01:00More multiBox updatesHere's a few...<br /><br />1. New option: 'showControls'. This will turn off the controls.<br /><br />2. New option: 'offset'. This is an object containing x and y offsets for the box relative to it being centered.<br /><br />3. New option: 'fixedTop'. This options allows you to specify a fixed top position to all boxes to open to.<br /><br />4. New option: 'openFromLink'. This says if the box should open from the link thats clicked or from the center of the window.<br /><br />5. Bug fix: the problem with movies or music still playing when closed or moved to the next item is now fixed.<br /><br />i've also added a hidden iframe to the box so it will go over dropdown menus etc in IE6 and i've also added one to the overlay script.<br /><br />now at version 1.3<br /><br />if there is anything else that people would like let me know.Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-36145859297956577202008-04-15T08:31:00.002+01:002008-04-15T08:32:19.547+01:00Flash in multibox fixedThere was a small bug with using flash files (swf) in multiBox. This has now been fixed (version 1.2.1)Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-84652260560337555792008-03-05T11:28:00.002Z2008-03-05T11:32:33.727ZmultiBox update - Safari iframe fix.The multiBox script has been updated to include a fix for the iframe caching issue in Safari.<br /><br />The problem was happening when you used the browser back button, then it didn't matter which links you clicked/iframes viewed it would always show the content for the first item.<br /><br />Well the fix was to assign a dynamic id to the iframe each time it was called, therefore forcing the browser to treat it as different and not cache the src.<br /><br />this fix is in version 1.2Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-70122583390125495992008-02-29T16:19:00.003Z2008-03-01T09:13:14.178ZgoogleDriveA little project i've been working on is now live!<br /><br />googleDrive is a little google maps mash up that allows you to drive a little car around on the maps.<br /><br /><a href="http://www.phatfusion.net/googledrive">http://www.phatfusion.net/googledrive</a><br /><br />I'm also planning a doing another version called googleRacer that will allow you to race on predefined circuits against the clock, for example the paris ringroad. I'm also thinking of doing this one with the sat view images instead.<br /><br />comments and suggestions welcome.Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-46949717139723500412008-02-12T10:15:00.000Z2008-02-12T10:19:07.649Zopening links with imageMenuTo open links that are used in imageMenu, simply remove the onClick option:<br /><br />var myMenu = new ImageMenu($$('#imageMenu a'),{<br />openWidth:310,<br />border:2<br />});<br /><br />I've used the onClick option in my example code to demo some of the other features of the menu.Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-73587975224199310902008-02-07T13:55:00.000Z2008-02-07T13:57:00.864ZimageMenu updateThe image menu script has been updated to fix a small bug. You probably won't notice it.<br /><br />anyway its now at version 2.2Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-7282754615249319402008-02-05T09:19:00.000Z2008-02-05T09:23:06.874Zauto open MultiBox onDomReadyI've had this request a few times now, so i thought i'll post the code.<br /><br />It's very simple. Just call the open function and pass the element in:<br /><br />var box = {};<br />window.addEvent('domready', function(){<br /> box = new MultiBox('mb', {descClassName: 'multiBoxDesc'});<br /> box.open($('mb1'));<br />});Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-17042087494258633672008-02-04T16:06:00.000Z2008-02-04T16:15:51.378ZMultiBox - compatibility with mootools 1.2betaHere is what you need to do to make the MultiBox script compatibile with mootools 1.2 beta 2.<br />I'm not releasing these updates in a script as i want to rewrite it when 1.2 gets released, so i can use all the nice new features.<br /><br />Replace the following:<br /><br /><ul><li>Fx.<span style="font-weight: bold;">Styles </span>with Fx.<span style="font-weight: bold;">Morph</span></li><li>transition: Fx.Transitions.<span style="font-weight: bold;">sineInOut </span>with transition: Fx.Transitions.<span style="font-weight: bold;">Sine.easeInOut</span></li><li><span style="font-weight: bold;">Class.empty</span> with <span style="font-weight: bold;">new Class()</span></li><li>this.containerEffects.<span style="font-weight: bold;">stop</span>() with this.containerEffects.<span style="font-weight: bold;">cancel</span>()<br /></li></ul>Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-5831086560648686712008-01-31T09:52:00.000Z2008-01-31T09:59:11.105ZMultibox updates!lots going on in this one!<br /><ul><li>onOpen / onClose optional functions have been added.</li><li>external urls and querystring parameters are now supported.</li><li>it auto detects the format (ie. jpg, flv, htm, etc) but now you can also specifiy what format the item should be. This will allow you to add querystring parameters to a jpg or flv for example.</li><li>a loading graphic has been added.</li><li>the replaying flv bugs has been fixed.</li><li>bugs with boxes closing and leaving residue have been fixed.</li></ul>also zip files are now available for downloading for all scripts.<br /><br />multibox is now at version 1.1Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-48325181567916061092008-01-28T12:03:00.000Z2008-01-28T12:04:38.268ZValidate updatedA few bugs have been fixed in the Validate script. It now submits the form! ;)<br /><br />now at version 2.1Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-13612873345144236832008-01-21T15:22:00.000Z2008-01-21T15:23:14.951ZimageMenu updated (bug fixes)imageMenu's been updated with a couple of bug fixes.<br /><br />Now at version 2.1Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-77304248177055678812008-01-13T17:30:00.000Z2008-01-15T13:28:15.076ZInitial Feedback & Development planHi to anyone reading this.<br /><br />Initial feedback of the newly released and updated scripts has been positive but there have been a few requests. So here is what i'm thinking of doing...<br /><br />imageMenu.<br /><ul><li>option to reveal the images from the center/left/right.</li></ul>slideshow.<br /><ul><li>option to set the direction for the transition for wipe/slide effects for Next/Previous functions.</li></ul>multiBox.<br /><ul><li>allow for quicktime options</li><li>allow for flash options</li><li>support for querystring parameters</li><li>support for external urls<br /></li></ul>if you have any other requests please leave a comment.Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.comtag:blogger.com,1999:blog-2080769147057017351.post-11610041660816736562008-01-04T10:45:00.000Z2008-01-04T10:50:24.703ZNew year, new siteSo a another new year, a new year and this time a blog as well!<br /><br />In this blog I will share ideas and thoughts i'm working on or i'm thinking about working on.<br /><br />All code that's been released can be found at <a href="http://www.phatfusion.net/">www.phatfusion.net</a><br /><br />Please feel free to leave comments, suggestions, etc.Samuel Birchhttp://www.blogger.com/profile/04583300610997426204noreply@blogger.com