I hope someone could help me . I’d make it as detailed as possible plus these are the files (graphics, mp3s and other valuable content removed)
Here’s what I wanted to do:
- load the text into a movie clip so that it would be possible to add a custom scrollbar
- in general, make the flash blog work
Problem:
It appears that the dynamic text isn’t showing up. It loads. In fact, I can select and copy the text loaded from the database.
** Other info:**
- I used this script: www.flashblog.org. It’s in Spanish so I’m kind of groping. And yes, I did check the babelfish translator just to read the manual. Anyway, it’s a great script and could “easily” (not for me) be modified by anyone who has know-how in flash and php.
- I set up “testflashblog” on phpmyadmin (localhost), imported the database file (__.sql—>see the folder “ddb”) and modified connFlashblog.php from the Connections folder to something like this:
<?php
FileName=“Connection_php_mysql.htm”
Type=“MYSQL”
HTTP=“true”
$hostname_connFlashblog = “localhost”;
$database_connFlashblog = “testflashblog”;
$username_connFlashblog = “root”;
$password_connFlashblog = “”;
$connFlashblog = mysql_pconnect($hostname_connFlashblog, $username_connFlashblog, $password_connFlashblog) or die(mysql_error());
?>
It absolutely worked on the default template which came with the script.
-
I made a movieclip that would load the news. I placed it on layer “1” which is masked. It’s also within a movie clip. (a movie clip within a movie clip).
-
I modified the script of the original source. Instead of placing it on the main timeline, I added "onClipEvent load … " You know how it goes.
**Result/Problem:
**The text did load. In fact I could see the wod “start.” The content, however doesn’t show up.
HELP, anyone?