Sunday, October 4, 2009

Flash Effects

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

CMS summary

CMS name:

Download Url:


CMS Type:


Installation:

Terminology:

Tips: 


Security Issues:

Backup :


Porting:



Good Reference URLS:

Entity Relationship::

General Details

  1. What are the main features ?
  2. Type of users
  3. What can be done for each user?
  4. What features can be extended?What can be added?
  5. Main Extensions:Shopping cart,Forum,Seo,Gallery,Blog



Admin:


  1. How to enable and disable offline mode
  2. What all can be monitored? 
  3. How can a content be added
  4. How can menu items be controlled?
  5. How can template be changed?
  6. How SEO is enabled?Limits of basic SEO options
  7. How meta tags are set?
  8. How mass mail is done?
  9. Banner Management:
  10. News letter
  11. RSS





Backend:

  1. How doest it differentiates betwee users
  2. How ACL works
  3. how could login be emulated
  4. how can i know if a user is logged in and get user details?
  5. How could logout be emulated
  6. How could registration be emulated
  7. How a user record be emulated.
  8. How could a user be deleted
  9. How can a content be added,edited and deleted





Programming Core CMS

  1. Steps of Skinning 
  2. Steps for customizing menus
  3. Steps for creating an extention:Extenstion Type:Details

Popular Extensions

  1. Ecommerce:
  2. SEO:
  3. Blogging:
  4. Gallery:
  5. Calendar:
  6. Forums:
  7. Directory Listings:
  8. Social neworking:
  9. Multi Language
  10. 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';
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.

learn more »
get one »

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 'TraceOutputFileName', tried putting flashlog.txt on different locations .still no hope flashlog.txt was always blank

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 :)


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
  1. create an html file
  2. nsert an image by insert->images
  3. then click on the image and go to behavious pane
  4. click + and select swap images
  5. click the second image with which u want to swap and click ok
  6. and see the result in the browser