create a blog in flash
i want to create a blog in flash .can anyone suggest me a website with gud tutorials related to it or is there any open source software to create such kind of blog??
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
please give me any idea about it
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
I think you have posted in the wrong forum and believe you should have posted in the Flash forum .
cwarn23
Occupation: Genius
3,033 posts since Sep 2007
Reputation Points: 413
Solved Threads: 259
cscgal
The Queen of DaniWeb
19,432 posts since Feb 2002
Reputation Points: 1,474
Solved Threads: 230
okk...hoping i wud get my answer in this section
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
cwarn23
Occupation: Genius
3,033 posts since Sep 2007
Reputation Points: 413
Solved Threads: 259
none of them r impressive
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
any other hve any idea ??
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
i have already seen those links which cwarn provided. i have been gone through hundreds of results on google. but some of them were not what i wanted and some are not working properly. i want to work with actionscript 3 and php and i know both languages very well. but the thing is i dont know how to integrate php and flash. i have written code in actionscript3 and php.all my swf , fla and php files are in the same folder but when i play my flash movies it displays no content .and my php and actionscript3 code is also showing no error.i just want to work in php , mysql and actionscript3 and not in XML.
here is my as3 code
var request:URLRequest = new URLRequest ("final.php"); request.method = URLRequestMethod.POST; var loader:URLLoader = new URLLoader (request); loader.addEventListener(Event.COMPLETE, onDataLoad); loader.dataFormat = URLLoaderDataFormat.VARIABLES; loader.load(request); function onDataLoad(evt:Event){ var myVariables:URLVariables = new URLVariables(evt.target.data); for(var i:uint=0; i<evt.target.data.cant; i++){ this["Title_txt"+i].htmlText = "<b>"+evt.target.data["Title"+i]+"</b>" this["Comment_txt"+i].text = evt.target.data["Comments"+i] }}
and my php code is
<?php
$connect = mysql_connect("localhost", "rootii", "echoo");
mysql_select_db("anubhav", $connect);
$result = mysql_query("SELECT Title, Comments, Image FROM titles");
$cant = 0;
while($row=mysql_fetch_array($result)){
echo "Title$cant=$row[Title]&Comments$cant=$row[Comments]&";
$cant++;
}
echo "cant=$cant";
?>
when i play my flash movie it displays just blank text boxes and nothing.
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
thanks for the help .. i will go through the links but i also want to know if there is another way to create a blog in flash without using php . i mean you are talking about XML , so is it possible to create a blog in flash using XML which you are saying very easy to implement
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
and yes i want to tell that i had seen already those two links of ultrashock and kirupa's . but none of them worked for me . now i am, looking at your third link.
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0
i didnt get you . what you want to say ??
aaloo
Junior Poster in Training
76 posts since Oct 2011
Reputation Points: 22
Solved Threads: 0