Cube Effect
http://board.flashkit.com/board/showthread.php?t=681720
3dpicturebox.fla
http://www.flashandmath.com/basic/transitions/example3.html example with image gallery
http://www.republicofcode.com/tutorials/flash/as3transitionmanager/
for in built 10 effects
For Flip effect http://www.thetechlabs.com/tutorials/flash/create-a-card-flip-effect-for-flash-player-10-using-actionscript-3/
http://blog.soulwire.co.uk/flash/actionscript-3/two-sided-planes-in-flash-player-10/
Ribbons:http://blog.soulwire.co.uk/flash/actionscript-3/papervision3d/pv3d-ribbon3d-class/
auxiallary clss for image effects: http://www.TweenLite.com
http://www.neave.com/ check neaveWebcam for other effects .All applications of neave
Sunday, October 4, 2009
CMS summary
CMS name:
Download Url:
CMS Type:
Installation:
Terminology:
Tips:
Security Issues:
Backup :
Porting:
Good Reference URLS:
Entity Relationship::
General Details
Admin:
Backend:
Programming Core CMS
Popular Extensions
Download Url:
CMS Type:
Installation:
Terminology:
Tips:
Security Issues:
Backup :
Porting:
Good Reference URLS:
Entity Relationship::
General Details
- What are the main features ?
- Type of users
- What can be done for each user?
- What features can be extended?What can be added?
- Main Extensions:Shopping cart,Forum,Seo,Gallery,Blog
Admin:
- How to enable and disable offline mode
- What all can be monitored?
- How can a content be added
- How can menu items be controlled?
- How can template be changed?
- How SEO is enabled?Limits of basic SEO options
- How meta tags are set?
- How mass mail is done?
- Banner Management:
- News letter
- RSS
Backend:
- How doest it differentiates betwee users
- How ACL works
- how could login be emulated
- how can i know if a user is logged in and get user details?
- How could logout be emulated
- How could registration be emulated
- How a user record be emulated.
- How could a user be deleted
- How can a content be added,edited and deleted
Programming Core CMS
- Steps of Skinning
- Steps for customizing menus
- Steps for creating an extention:Extenstion Type:Details
Popular Extensions
- Ecommerce:
- SEO:
- Blogging:
- Gallery:
- Calendar:
- Forums:
- Directory Listings:
- Social neworking:
- Multi Language
- Other:
Monday, September 28, 2009
MYSQL Tips
Command line importing
d:cd D:\wamp\bin\mysql\mysql5.1.33\bin
mysql -uDBNAME -pPASSWORD DBNAME < SQLFILENAME
if there is no password(localhost) you can ommit the word starting with -p
Referential integrity(Foreign key)
http://articles.techrepublic.com.com/5100-10878_11-6035435.html
CREATE TABLE species (id TINYINT NOT NULL AUTO_INCREMENT, name VARCHAR(50) NOT NULL, PRIMARY KEY(id)) ENGINE=INNODB;# MySQL returned an empty result set (i.e. zero rows).
INSERT INTO species VALUES (1, 'orangutan'), (2, 'elephant'), (3, 'hippopotamus'), (4, 'yak');# 4 row(s) affected.
CREATE TABLE zoo (id INT(4) NOT NULL, name VARCHAR(50) NOT NULL, FK_species TINYINT(4) NOT NULL, INDEX (FK_species), FOREIGN KEY (FK_species) REFERENCES species (id), PRIMARY KEY(id)) ENGINE=INNODB;# MySQL returned an empty result set (i.e. zero rows).
INSERT INTO zoo VALUES (1, 'Harry', 5);
will fail
ON DELETE or ONUPDATE
granding remote access to database(use with sql yog)
in cpanel homepage there is an option called 'remote databasese
click it and add % (wildcard to allowed ips)
upload phpmyadmin after editing config.inc.php
set
$cfg['Servers'][$i]['auth_type'] = 'cookie';
d:cd D:\wamp\bin\mysql\mysql5.1.33\bin
mysql -uDBNAME -pPASSWORD DBNAME < SQLFILENAME
if there is no password(localhost) you can ommit the word starting with -p
Referential integrity(Foreign key)
http://articles.techrepublic.com.com/5100-10878_11-6035435.html
CREATE TABLE species (id TINYINT NOT NULL AUTO_INCREMENT, name VARCHAR(50) NOT NULL, PRIMARY KEY(id)) ENGINE=INNODB;# MySQL returned an empty result set (i.e. zero rows).
INSERT INTO species VALUES (1, 'orangutan'), (2, 'elephant'), (3, 'hippopotamus'), (4, 'yak');# 4 row(s) affected.
CREATE TABLE zoo (id INT(4) NOT NULL, name VARCHAR(50) NOT NULL, FK_species TINYINT(4) NOT NULL, INDEX (FK_species), FOREIGN KEY (FK_species) REFERENCES species (id), PRIMARY KEY(id)) ENGINE=INNODB;# MySQL returned an empty result set (i.e. zero rows).
INSERT INTO zoo VALUES (1, 'Harry', 5);
will fail
ON DELETE or ONUPDATE
granding remote access to database(use with sql yog)
in cpanel homepage there is an option called 'remote databasese
click it and add % (wildcard to allowed ips)
upload phpmyadmin after editing config.inc.php
set
$cfg['Servers'][$i]['auth_type'] = 'cookie';
RESTRICT | CASCADE | SET NULL | NO ACTION
Friday, September 25, 2009
OpenID
Why OpenID?
It's a single username and password that allows you to log in to any OpenID-enabled site.
It works on thousands of websites.
It's an open standard.
Flash debug player 10 and firefox 3.5
When you want to debug flash applications in a browser you need to have flash debug player
Some say that you have to unisntall original flash player first.
Download Location:
http://www.adobe.com/support/flashplayer/downloads.html
download and install it.use 'trace(flash.system.Capabilities.isDebugger);' in a flash file and run it to make sure flash debug player is installed perfectly.(it will show 'true' )
It will log the trace out puts into a text file in out PC.Though there are good articles on how to view trace outputs of flash applicationsrun in a browser,I wasnt able to figure it out for a couple of hours though i got good articles like this one
http://stackoverflow.com/questions/864155/see-trace-of-flash-when-running-in-browser/864346#864346
.I created mm.cfg ,kept changing '
Finally I found it .the reason was mentioned here
http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=logging_125_04.html#196092
flashlog.txt location is hard coded,cant be controlled from flash player 9 version.The locations are given in the table at the bottomm.Yet I did one more wrong step.I saw that the flash log location is 'C:\Documents and Settings\user_name\Application Data\Macromedia\Flash Player\Logs\flashlog.txt ' ,but since macromedia was aquired by adobe,I it should be 'C :\Documents and Settings\user_name\Application Data\Adobe\Flash Player\Logs\flashlog.txt '.Which resutlted in loss of few more minutes.Finally i decide to give it a try to look at C:\Documents and Settings\user_name\Application Data\Macromedia\Flash Player\Logs\flashlog.txt and bingo i could see the flash trace() out puts.
I wonder why adobe is sill keeping the log file location in macromedia folder.Whatever it is I can see the trace ouptuts of flash applications run inside a browser and i am happy man :)
Some say that you have to unisntall original flash player first.
Download Location:
http://www.adobe.com/support/flashplayer/downloads.html
download and install it.use 'trace(flash.system.Capabilities.isDebugger);' in a flash file and run it to make sure flash debug player is installed perfectly.(it will show 'true' )
It will log the trace out puts into a text file in out PC.Though there are good articles on how to view trace outputs of flash applicationsrun in a browser,I wasnt able to figure it out for a couple of hours though i got good articles like this one
http://stackoverflow.com/questions/864155/see-trace-of-flash-when-running-in-browser/864346#864346
.I created mm.cfg ,kept changing '
TraceOutputFileName', tried putting flashlog.txt on different locations .still no hope flashlog.txt was always blankFinally I found it .the reason was mentioned here
http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=logging_125_04.html#196092
flashlog.txt location is hard coded,cant be controlled from flash player 9 version.The locations are given in the table at the bottomm.Yet I did one more wrong step.I saw that the flash log location is 'C:\Documents and Settings\user_name\Application Data\Macromedia\Flash Player\Logs\flashlog.txt ' ,but since macromedia was aquired by adobe,I it should be 'C :\Documents and Settings\user_name\Application Data\Adobe\Flash Player\Logs\flashlog.txt '.Which resutlted in loss of few more minutes.Finally i decide to give it a try to look at C:\Documents and Settings\user_name\Application Data\Macromedia\Flash Player\Logs\flashlog.txt and bingo i could see the flash trace() out puts.
I wonder why adobe is sill keeping the log file location in macromedia folder.Whatever it is I can see the trace ouptuts of flash applications run inside a browser and i am happy man :)
Operating system | Location of flashlog.txt |
|---|---|
Macintosh OS X | MacHD:Users:user_name:Library:Preferences:Macromedia:Flash Player:Logs:flashlog.txt |
Microsoft Windows Vista | C:\Users\user_name\AppData\Roaming\Macromedia\Flash Player\Logs\flashlog.txt |
Windows 95/98/ME/2000/XP | C:\Documents and Settings\user_name\Application Data\Macromedia\Flash Player\Logs\flashlog.txt |
Linux | /home/user_name/.macromedia/Flash_Player/Logs/flashlog.txt |
Dreamweaver Tips
Rollover Images
- create an html file
- nsert an image by insert->images
- then click on the image and go to behavious pane
- click + and select swap images
- click the second image with which u want to swap and click ok
- and see the result in the browser
Wednesday, September 23, 2009
Subscribe to:
Posts (Atom)