impt simple dev issue ---- image gallery using flash on mac
I am newby developer with limited experience around web dev on pc but I am now on a contract putting together an image archive on a mac using a flash front end, but in terms of the back end I am lost. I can use VB and MS Access to control 5000 records easily for server side scripting generally but is that possible on mac or even wise or should I use PHP and MySQL. If you cant help directly can you sign post me to useful sites.
peace & luv y'all
peace & luv y'all
Comments
http://www.macromedia.com/support/fl...slideshow_xml/
good luck
Last I did this (a year ago) Flash MX only allowed loading jpeg files via ActionScript (even though it can handle GIF, PNG and other formats via the authoring interface).
You'd be better off having the images be shown via html pages (if you need to scale them down use the GD libraries in conjunction with PHP). The database could then merely handle the image pathnames. Flash could merely be the control interface.
But if all you need is jpeg support and if you need to move and animate the images somehow, then ok, do it all in Flash.
I certainly wouldn't bother actually storing the actual images in the database (as people often do) short of using Oracle (which you aren't!
Why flash? For large photo galleries with many sub categories and many photos, the pure-flash gallery eliminates needless page reloads.
Click a thumbnail? The grid of thumbnails fades out and the full size photo fades in. Click next, and the photo fades to the next one. A standard HTML based gallery would require constant page loads.
That said, I'd say develop it all in PHP first. Once that works, its easy to use flash to display the photos.