nice basic example, thanx
Here's another Flash CS4 free utility created by FlepStudio.
This is a Flash GuestBook with 3D effect rotations using the property rotationX of Actionscript 3.0.
If you want to load into your main SWF on your site or application or site of your clients, just create the logic on your main FLA
to load and you're done.
Very easy to install, requires PHP and mySQL.
Very useful as a space dedicated to the signatures and comments from visitors to your blog or website.
Interactive utility that allows visitors to a website could leave signatures and comments.
Installation
- Open the file configuration.php and change the setting for access to your database.
- Upload the PHP folder on your server in a folder in which you wish to install the Guest Book
- Go with the brower to address where is located PHP/install.php that you just uploaded
- Delete the file PHP/install.php from the server
- Open the file main.fla
- Open the file LoadingXML.as at line 22 and IF NEEDED enter the absolute url of file PHP/getMessages.php you just uploaded
- Open the file SendMessage.as and rows 17 and 18 and IF NEEDED enter the absolute urls of files PHP/gettime.php and PHP/storeMessage.php you just uploaded
- Re-create the SWF by main.fla and GuestBook is already working
- Upload the new main.swf to server
Result
Description
GuestBook - Flash CS3 - PHP - mySQL
File packages
main.fla
package org.FlepStudio
package caurina ( Tweener by Zeh Fernando )
package PHP ( with all PHP files )
nice basic example, thanx
Thanks, another great share.
Wow... Amazing!!!
Thanks Flep!
Thanks! I tried and it works.
Is there a way to easily modify some details like the buttons, fonts, color, date stamp format?
Many thanks for all the good work.
Woohoo, just were I was looking for! Thanks so much, and really great work designing. Thanks!! :D
Thanks!!!!!
Sorry for the last comment. I could not access the content of the fla file because of fonts making flash crash.
Anyway, i customized your excellent guestbook, but i can't find a way to modify the date format.
It displays "Wed Nov 11 2009 - 01:15:11 PM", i would like to get
"Miercoles 11 Noviembre 2009 - 13:15:11" or
"Mercoledì 11 Novembre 2009 - 13:15:11" or
"Mercredi 11 Novembre 2009 - 13:15:11"
It could be useful to many of us, i guess
Please help !
Many thanks
thank u
Hi,
open LoadingXML.as file.
Add your arrays of days and months ( the following example is italian ):
now replace the function "getFormattedDate" with the following one:Code:private var days:Array=new Array("Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"); private var months:Array=new Array("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre");
Code:private function getFormattedDate(seconds:Number):String { var milliseconds_server:Number=seconds*1000; var d:Date=new Date(); d.setTime(milliseconds_server); var day:String=(days[d.getDay()]); var month:String=(months[d.getMonth()]); var year:int=d.getFullYear(); return (day+" "+d.getDate()+" "+month+" "+year+" - "+d.toLocaleTimeString()); }
Bookmarks