Archives
  categories
 
Skype Razor Pulse
My status
razor pulse blog (flipshare)
flexifusion 2.5 coming this October
October 20th, 2007

Our team has actively been working on the next iteration of our flagship package, flexifusion, which integrates the power of web 2.0 with the powerful Adobe Spry for AJAX Framework. All new flexifusion based projects will now use this version and this package will be made available to our existing clients as an upgrade option.

Among features in this release:

  • Enhanced WYSWYG editor with improved inline tables and layers editing
  • Enhanced online files and documents management
  • Online Images/Photo Management and Editor (PhotoPolish)
  • Redesigned interface and workflow
  • New enhanced electronic marketing management tools including new subscribers groups, custom tracking code, live statistics, graphs and the ability to easily tag content for Google Analytics
  • New enhanced Ecommerce features that includes a new promotions/samples campaign set of tools
  • Integration of a new control panel within the Real Estate Edition package that allows the publishing of flexifusion content directly to our new SimWin touch screen application
  • All major browsers including IE 5, 6, 7, Firefox, Opera, Safari and Safari for iPhone/iPod Touch are now supported
  • Countless additional bugs, fixes and enhancements

For more information about this exciting version, please contact us .

Posted in flexifusion | No Comments »

TIP: setInterval, AJAX and Page caching on Internet Explorer
September 12th, 2007

I am certain that some of you may have pulled their hair off when starting with AJAX trying to understand why a setInterval call to an AJAX function would work perfectly on most browsers but not on Internet Explorer 6 or 7. As simple research on the web will demonstrate, page caching mechanism on IE is quite different than on other browsers. To prevent IE from caching the page(s) called by your AJAX function(s) make sure to add a no-cache headers such as:

header(”Expires: Thursday, 26 Jul 1970 08:45:00 GMT”);
header(”Last-Modified: ” . gmdate(”D, d M Y H:i:s”) . ” GMT”);
header(”Cache-Control: no-store, no-cache, must-revalidate”);
header(”Cache-Control: post-check=0, pre-check=0″, false);
header(”Pragma: no-cache”);

Posted in Tips | No Comments »

flipshare
September 11th, 2007

As time passed, it appeared to me that it was time for us to give back to the community, whether on a local level or on a global level. In today’s world, one cannot, in good conscience, hope for a free ride. Getting involved does not necessarily mean participating exclusively in charities and environmental movements (although I believe both are essential), but also sharing any knowledge that we may have acquired over time. This is why Flipshare, our blog, will try to not only cover opinions and ideas but also provide our visitors with tips, short tutorials and multimedia development references.

Posted in General | No Comments »