rickhocutt

rickhocutt

Real Name: Rick Hocutt

Columbus, Mississippi (United States)
Web Designer / Developer - Monkey

Latest Contributions

  • Need professional opinion on Actionscript/Adobe Air video playback problem

    Hello,

    We are hoping to get some help with video playback issues in an Adobe Air application that was built using Actionscript 3 and Flash. The application serves as a presentation interface and plays slide and video content using the FLV Playback Controller. The user interface has three preview windows along with a list of slide and video content. The user has the ability to select slide(s) and or video(s) content and select a preview window(s) for the content to display in. The content is also shown full screen on multiple projectors via multiple monitor outputs.

  • Ubercart and the dreaded "D" word

    I am building a site that requires a way for users to donate money (I know how touchy this topic is) and I am a noob when it comes to setting this up. I have started by implementing ubercart with the ubercart donation module but I'm having trouble figuring out how to add in the donation product. If anyone has any experience with this module, or has any suggestions for an alternate module/method I would appreciate it.

    Thanks,

    Rick

  • Retain .php extensions in Drupal 6

    Hey guys,

    I was wondering if there was a way to retain the .php extensions on a Drupal 6 site. I am converting a site that currently has pages ending in .php and they have a lot of external links to these pages.

    I am using the path module to rename pages to match the existing site but of course if you try to navigate to one of those pages with .php at the end you get a 404 page.

    I looked over the .htaccess file and didn't see an obvious fix for this. Any suggestions?

  • Assign id to primary-links

    Hey guys,

    I was wondering how I might output my primary-links menu with a specific id asigned to the top level ul.

    I am trying to achieve the following:

    <ul id="main_nav">
    <li>Home</li>
    <li>Products
    <ul>
    <li>widget 1</li>
    <li>widget 2</li>
    </ul>
    </li>
    <li>Contact</li>
    </ul>

    I haven't found a clear explanation of what to put in either the template.php file or my page.tpl.php file to achieve this.

    I have tried manipulating this code

    <?php print menu_tree($menu_name = 'primary-links'); ?>

    and this:
    <?php
    $my_menu
    = menu_tree('primary-links');
    $my_menu = str_replace("leaf", "", $my_menu );
    $my_menu = str_replace("active-trail", "", $my_menu );
    $my_menu = str_replace("menu", "", $my_menu );
    $my_menu = str_replace("active", "", $my_menu );
    $my_menu = str_replace("expanded", "", $my_menu );
    $my_menu = str_replace(" class=\"\"", "", $my_menu );
    print
    $my_menu;
    ?>

    Without much luck.

    Any help is appreciated!
    Thanks

  • What Name do I give block-custom_view.tpl.php

    I have created a block using views named enviro_tip and I am trying to create a custom block.tpl.php file. I have named this file block-enviro_tip.tpl.php, block-views-enviro_tip.tpl.php and a few other off the wall things to try to get it to work.

    I have cleared the cache but it is still using my block.tpl.php file instead. Anyone know what I'm doing wrong?

    Thanks