How do i reverse the order displayed in the player?
Edit your xml.php (a text editor is ok) and find this line of code (between line #33 and #35):
// albums query
$sql = "SELECT * FROM list
ORDER BY id ASC";
Change the ASC value for DESC it should look like this:
// albums query
$sql = "SELECT * FROM list
ORDER BY id DESC";
Save it and upload it to your server again.
Where do i find the inspector window?
Go to Window and select Component Inspector or press Shift + F7 on your keyboard.
The CMS install is not working.
Setting the transfer mode of the ftp client to “Auto” when uploading the CMS files fixed it. FILEZILLA USERS : Use another ftp client since this client tend to corrupt the php files.
I get this error in the CMS Warning: session_start(): Cannot send session cache limiter – headers already sent
This is a server configuration issue. Ask your server administrator to turn off the: php_value display_errors “Off”
I get this error while uploading files to the CMS :
FILE COULD NOT BE UPLOADED TRY AGAIN !
It may be one of the following:
1. the banner_files folder was not created in the server inside the cms folder.
2. The banner_files folder has not permissions . chmod (change its permission to 777).
3. The file you are uploading is bigger than 2mb the default max upload value allowed by most servers. Ask your server admin to increase the limit or try changing the php.ini values (try putting this file in the root also.
How do i make it to play continuously? One song after another.
You need to add the next line to the as layer at line #236:
nextSong();
make sure it looks something like this:
//loop
if (loop) {
bgm.start();
equalizador_MC.gotoAndPlay('play');
}else{
bgm.stop();
equalizador_MC.gotoAndPlay('stop');
// play next song
nextSong();
}
Note. Make sure the loop setting is set to false.
I uploaded the files and install or other functions wont work.
Try using CuteFtp ftp client, and using this setting:
Protocol type: SFTP using SSH2 (Secure Shell) Server type: Auto detect Transfer type: Use global settings.
when you uploded with any other settings, script dosent work.
Cannot upload files bigger than 2mb.
Some servers have a file size upload limit to 2mb by default. ask your web administrator to increase the file size limit. Or try uploading to your server a file named “php.ini” with the following text in it:
post_max_file = 100M upload_max_filesize = 100M
How can i display special characters
éèàçùôûîêâ
1. First embed the characters in the text fields from the flash component.
- Edit the movieclips containing the text fields from the assets folder
- Select the text fields and press the embed buttom from the porperties window,
- then add the charactes you need in the field
2. Delete the next line of code from the xml.php if you are using the CMS version
delete this:
// output to utf8 $output = utf8_encode($output);

37 Purchases
25 Comments