Started 3 months, 2 weeks ago (2009-08-12 08:18:00)
by Jorge Solis
Check http://www.asfusion.com/blog/entry/file-upload-wit h-
coldfusion-flash-forms Jorge
Started 3 weeks, 4 days ago (2009-11-04 15:02:00)
by Ronald Wernecke
root.
emain.news.ename.text.scroll += 15; // or whatever number of records/page
Started 3 weeks, 5 days ago (2009-11-03 01:44:00)
by Ronald Wernecke
Hi
Timo, which Flash version are you using? How do the score values get there? What happens after the game?
Started 4 weeks ago (2009-11-01 10:13:00)
by Ronald Wernecke
Just have a look into the loading and saving tutorials from Jorge. You will see, you are
ready to run within notime. AMFPHP ist straight forward - it only might look complicated at the first glance. If you lnow php, and you are ok with AS, AMFPHP goes seamles into it.
Started 4 weeks, 1 day ago (2009-10-31 15:56:00)
by Ronald Wernecke
It is allways the same procedure: first - get to know all the data you want to collect and store normalize the data create the tables
normalizing basicly means - findout which data es structural identical - put those into its own table it might be useful not to normalize to the end, and keep parts, or all data unnormalized because of ease of query or peformance.
Started 4 weeks, 1 day ago (2009-10-31 12:01:00)
by Ronald Wernecke
suggestion: look into flash remoting with php using AMFPHP. Your problem are large and still growing strings. With AMFPHP you can
transfer complete object structures.
Started 4 weeks, 1 day ago (2009-10-31 01:57:00)
by Ronald Wernecke
Hi Brent, you have to manage this at the server with php and mySQL and send a startnumber with the request. You can get the total number of records with mysql_num_rows. With the LIMIT command at the end of a query, you can limit the output. So Code: SELECT * FROM $table where active ='Y'
ORDER BY id LIMIT 0,15 delivers the first 15 records, while Code: SELECT * FROM $table ...