Recent Topics

1 Dec 02, 2005 05:14    

Although I am pretty good with flash and action scripting PHP is not my domain. I wont to replace some of the txt links type of buttons with flash animated buttons. I am thinking only about txt that repeat them self throughout the site like for example "BlogA", "BlogB", "Read more", etc.
Example from script:
user_login_link( '<li>', '</li>' );
user_register_link( '<li>', '</li>' );
user_admin_link( '<li>', '</li>' );
user_profile_link( '<li>', '</li>' );
user_logout_link( '<li>', '</li>' );

Can somebody tell me what should I look in to, and how to approach the subject. If you know exactly how to do it would be great or you just have general idea that would be very helpful to with little research I can probably figure it out myself if you point me in the right direction.

Thank you

2 Dec 02, 2005 11:32

Change

 user_login_link( '<li>', '</li>' );
user_register_link( '<li>', '</li>' );
user_admin_link( '<li>', '</li>' );
user_profile_link( '<li>', '</li>' );
user_logout_link( '<li>', '</li>' ); 


to

 user_login_link( '<li>', '</li>', 'your flash object here' );
user_register_link( '<li>', '</li>', 'your flash object here' );
user_admin_link( '<li>', '</li>', 'your flash object here' );
user_profile_link( '<li>', '</li>', 'your flash object here' );
user_logout_link( '<li>', '</li>','your flash object here' ); 


im assuming you know how to make a flash object (the html code that displays your flash file inside a webpage)...
if not in dreamweaver go insert->media->flash, and choose your swf file, and it will generate it for you.


Form is loading...