adobe air
Return to table of contents Let’s say you want to modify Employee Directory for your own company and you want to add another filed...
You may get this error: could not convert text value to numeric value. Error #3132: Data type mismatch. People have discussed this error related...
int in Adobe AIR takes value -2,147,483,648 (-2^31) to 2,147,483,647 (2^31-1). integer (primary key) in sqlite takes value -9,223,372,036,854,775,808 (-2^63) to 9,223,372,036,854,775,807 (2^63-1). (source)
Employee Directory is an AIR sample application from which I learned a lot. (try it) Here I post some of what I learned here....
You may get a 303 error when trying to use custom icons in your AIR application (even when your icon files are in the...
blackScreen has a simple function: it makes your computer screen black every 30 min (changable) so you can walk around and relax your eyes....
In local actionscript, if you have an object like: o.x = 6; o.y = -5; Then send this object to remote server using amfphp,...
Let’s say we have three tables: user, paper, userPaperRelation. user has columns id and username paper has column id and title userPaperRelation has columns...
Return to table of contents
Return to table of contents ED’s custom events don’t override the clone() method: it doesn’t need because the events are never redispatched. When I...