

manmachine
Members-
Content count
34 -
Joined
-
Last visited
Profile Information
-
Real Name
sam
- Website
-
Mp3 preview with Flash player v1.0
manmachine replied to manmachine's topic in General Add-Ons Support
sorry but with no more infos it's hard to help you .... wait for the v2 it's more easy to run ... B) -
Mp3 preview with Flash player v1.0
manmachine replied to manmachine's topic in General Add-Ons Support
well it's quite hard to find where could be the problem . but when i look at your site i see that the url for the popup is : javascript:popupWindow('player.php?track=Mangalashtakam_Track_2.mp3&path=mp3s/&title=Mangalastakam the "mp3s/" seems wrong must look like this "mp3s" check your configure.php file . The v2 is gonna be out on Monday . new features : - unlimited playlist - slider for song position - slider for volume an mp3 files manager in the admin of oscommerce and some more ..... -
Mp3 preview with Flash player v1.0
manmachine replied to manmachine's topic in General Add-Ons Support
which version did u install ? -
Pass osCommerce session IDs into Flash
manmachine replied to blueline's topic in General Add-Ons Support
in fact , what i would like to know, is if your menu is dynamic , or if it just use a static xml file . -
Pass osCommerce session IDs into Flash
manmachine replied to blueline's topic in General Add-Ons Support
Hi , can ask you how you did your flash menu on your demo site . What component did u use for that ? thnx -
Mp3 preview with Flash player v1.0
manmachine replied to manmachine's topic in General Add-Ons Support
hmmmm , i dunno , check twice the code that popup the player . -
Pass osCommerce session IDs into Flash
manmachine replied to blueline's topic in General Add-Ons Support
u want your flash movie as an hyperlink ? or you want to do an hyperlink inside the movie ?? -
Pass osCommerce session IDs into Flash
manmachine replied to blueline's topic in General Add-Ons Support
well , seems great , but i can't get it to work . I use STS contrib and the flask menu is located in a box i created . I used the same as u did in your Header.php in my box file but it doesn't work , no osCsid parsed into my flash movie . Do you think it's because of the STS contrib ?? By the way i found another way to do it . instead of using the way u did on the header.php to load the flash movie i did like this : <object type="application/x-shockwave-flash" data="menu.swf?id=<?php echo tep_session_id(); ?>" width="770" height="40"> <param name="scale" value="exactfit" /> <param name="quality" value="high" /> <param name="bgcolor" value="#ffffff" /> <param name="movie"value="menu.swf?id=<?php echo tep_session_id(); ?>" /> <a href=http://www.macromedia.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash target="blank"><img src="images/icons/noflash.gif" width="88" height="31" vspace="5" hspace="50" alt="install flash player plugin"/></a> </object> as u can see i use the " tep_session_id() " function to get the current id number and send it to flash . in my flash movie i get it using this : var osCsid = _root.id; and then i use the same code on button as you . So i don't need no more the " flash_variables.php " file . it works just great , but i wonder if it's really a good way and if i'll not have some trouble using this way . what do you think ? -
Here i come for those who needs help !
-
[contribution] Simple Template System (sts)
manmachine replied to DiamondSea's topic in Templates and Images
this is because u didn't change ur configure.php file ! u must add this in it : // STS: ADD: Define Simple Template System files define('STS_START_CAPTURE', DIR_WS_INCLUDES . 'sts_start_capture.php'); define('STS_STOP_CAPTURE', DIR_WS_INCLUDES . 'sts_stop_capture.php'); define('STS_RESTART_CAPTURE', DIR_WS_INCLUDES . 'sts_restart_capture.php'); define('STS_TEMPLATE_DIR', DIR_WS_INCLUDES . 'sts_templates/'); define('STS_DEFAULT_TEMPLATE', DIR_WS_INCLUDES . 'sts_template.html'); define('STS_DISPLAY_OUTPUT', DIR_WS_INCLUDES . 'sts_display_output.php'); define('STS_USER_CODE', DIR_WS_INCLUDES . 'sts_user_code.php'); define('STS_PRODUCT_INFO', DIR_WS_INCLUDES . 'sts_product_info.php'); // STS: EOADD good code ;) -
[contribution] Simple Template System (sts)
manmachine replied to DiamondSea's topic in Templates and Images
cheers ! works just great . didn't find that cause i used the 1.2 version now with the 2.01 it's really more easy . thnx -
[contribution] Simple Template System (sts)
manmachine replied to DiamondSea's topic in Templates and Images
Hi i just installed STS contrib , it's just great . Here is my problem . i want to use the original "header.php" and include it on the template.html . but there is no tag for this :( . So i did this : rename the template.html in template.php , made the change in the configure.php also it's now like define('DIR_WS_TEMPLATE', DIR_WS_INCLUDES . 'template.php'); so it's working . i left the original header.php in the include folder in the template.php i added this : <table width="800" border="0" align="center" cellpadding="3" cellspacing="0"> <tr> <td><?php require(DIR_WS_INCLUDES . 'header.php'); ?></td> </table> but when i load the catalog in my browser the header is not here :( could u help me please ?