User Profile

Collapse

Profile Sidebar

Collapse
Haitashi
Haitashi
Last Activity: May 2 '11, 03:15 PM
Joined: Jun 6 '07
Location: Orlando, FL
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Why would one music player work with my visualizer but not another

    Hi:

    I've been using MotoCMS for my site. Works great but their music player is too simple for what I need. I've been able to implement GrooveShark.com 's player on the site and have the music visualizer work and pickup the sound. However, if I use SoundCloud.com' s flash player, the player will work but the visualizer won't.

    Both custom players are flash objects. I'm at a loss as to why one would work with the site's visualizer...
    See more | Go to post

  • Awesome! I had totally given up on this. Ty bishopt. :)
    See more | Go to post

    Leave a comment:


  • Ok. I got it to work but only slightly...

    On my display page I have this:
    Code:
    <cfset AjaxOnLoad("setCFWindowHooks") />
    And on the included JS file for that page I have this:
    Code:
    function hideJavaLoader(name) {
    	console.log('You just opened ' + name + ' CFWINDOW');
    	$('.applet').hide();
    }
    //This will show the Java uploader when a video window is closed
    function
    ...
    See more | Go to post

    Leave a comment:


  • Calling a function when I close a CFWindow - How?

    I have a link and opens up a CFWindow. I'm using the default CFWindow skin. I would like to execute a specific function when the user clicks on the X button.

    I would like to show a div (which will be hidden by default) when I close the CFWindow. I assume I can use ColdFusion.Wind ow.onHide somehow but I don't know how.

    All the examples I've seen on the net use a href link to call the onHide handler. I would like to call...
    See more | Go to post

  • Oke. Made some modifications. It works! Only 1 small issue. When the user enters a valid username, he has to click on the submit button twice. Odd.

    Code:
    $(function(){
    	var validusername = false;
     
    	$("#myForm").submit(function(){
    		return validusername;
    	});
     
    	$('#username').blur(function(){
    		var datastring = $('#myForm').serialize();
    		$.post(
    			"index.cfm?event=checkusername",
    ...
    See more | Go to post

    Leave a comment:


  • Oops! Fixed that but still no-go.

    This works:
    Code:
    $("#checkUname").click(function(){
    		var datastring = $('form#myForm').serialize();	
    		$.ajax({
    			type: "POST",
    			url: "index.cfm?event=checkusername",
    			data: datastring,
    			success: function(response){
    				var resp = jQuery.trim(response);
    				if (resp == 'FALSE'){
    					$('.toggleSuccess').show();
    ...
    See more | Go to post

    Leave a comment:


  • Hi there! Long time, no see. Thank you for the response. I changed from using an AJAX call to using traditional html. So, now I have the following

    Code:
    		$("form#newUserForm").submit(function(){
    		var datastring = $('form#newUserForm').serialize();	
    		$.post("index.cfm?event=user.checkUname", datastring, 
    				function(datastring){
    					var resp = jQuery.trim(response);
    ...
    See more | Go to post

    Leave a comment:


  • Haitashi
    started a topic Why is this function not returning false?

    Why is this function not returning false?

    I have a form that calls a function using the onClick event in the submit button. I would like this function to return false if the username is taken. The the original function, which I've tested, returns the correct info when the "checkUname " button is clicked. However, it always returns false. I want to return false ONLY if the username is taken.
    Original:
    Code:
    		$("#checkUname").click(function(){
    		var datastring=
    ...
    See more | Go to post

  • I figured it out. I have to do it this way. Adding the delimiter as part of my second argument:

    Code:
    <cfset Variables.nodeList = ListDeleteAt(this.RecordSet.node_base, listLen(this.RecordSet.node_base, "."), ".") />
    See more | Go to post

    Leave a comment:


  • How can I use ListDeleteAt on a dotted comma separated list?

    I have a comma delimited list of the following elemente:
    sites.app.enrol l.page5.degrees .gfdg,
    sites.app.enrol l.page5.degrees .aeetr,
    sites.app.enrol l.page5.degrees .sfdsd,
    sites.app.enrol l.page5.degrees .ur4gf,

    I'd like to use the "listDelete At" function to take that list and remove everything after "degrees". Any ideas? I that this but it doesn't seem to work correctly. I still get all...
    See more | Go to post

  • How to I create blank columns using QueryAddColumn?

    Hi:

    I need to dymanically create a number of columns using the queryAddColumn function.

    I was going to use the loop below. That way each column would have a generic dynamically created name.

    Code:
    <cfloop index="I" from="1" to="#Variables.qProgramDetails.recordcount#">
        <cfset temp = QueryAddColumn(#this.RecordSet#, "Detail#I#", "VarChar",
    ...
    See more | Go to post

  • Are there any workarounds to the 32k limit for flash on CF?

    I have a CFFORM and retrieves a user's profile info. It breaks when the profile is bigger than 32k. Is there a workaround for that? Can I split my CFFORM in two (which solves the problem for me) but have them display on the same page. I have been trying to use JQuery tabs, which breaks my CFGRIDS.

    Any ideas? I can provide as much info as is needed.

    THANKS!
    See more | Go to post

  • Great! I've been trying to use this on OSCommerce and I had to output the variable without the $ sign. I also removed the caps on the attributes. =)

    Thanks for the reply!
    See more | Go to post

    Leave a comment:


  • You are correct sir!

    *feels silly

    Sometimes when you look at code long enough it stops making sense =P

    Thanks!
    See more | Go to post

    Leave a comment:


  • Haitashi
    started a topic Dynamic source with PHP variable, is it possible?
    in PHP

    Dynamic source with PHP variable, is it possible?

    Code:
    <PARAM NAME=movie VALUE="headerMovie.swf"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src="<?php $HEADER_FLASH?>" quality=high bgcolor=#FFFFFF WIDTH="1000" HEIGHT="173"
    NAME="headerMovie" ALIGN="" TYPE="application/x-shockwave-flash"
    PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></
    ...
    See more | Go to post

  • I realized my problem (why isn't the selected thing working).

    So, the query gets the sec_code and org_name. Codes have a one to one relationship to names. In other words, the name is the human readable format and the code, well, its code.

    Now, the select should display the org_name. But pass the sec_code value. So if a user selects ORGANIZATION_A, then the form will submit the value "ORGA" for the secCode....
    See more | Go to post
    Last edited by Haitashi; Nov 10 '08, 04:16 PM. Reason: Spelling errors...

    Leave a comment:


  • How can I populate and select value in select form field populated from query?

    Snippet:
    Code:
    <form>
    	<select name="secCode" id="secCode">
    		<cfloop query="Request.qSecCodes">	
    	<option value="#Request.qSecCodes.org_name#" <cfif (Request.qSecCodes.org_code EQ Variables.oSurvey.secCode)>selected="true"</cfif>>#Request.qSecCodes.org_name#</option>
    		</cfloop>
    	</select>
    </form>
    ...
    See more | Go to post

  • You were correct sir. That's what I did. =)
    See more | Go to post

    Leave a comment:


  • Is name already exists in database don't save - how to?

    I have collection object. Its recordset has the results of a query. And I have a form. Let's say that the form saves the user's first name. I want to be able to loop though that collection and compare the "firstName" value in the query to what the user has entered in the text input field. If it exists then don't submit the form.

    I will add some nice message when a duplicate is found.

    Not too sure how to go...
    See more | Go to post

  • How can I append HREFKEY in the HREF parameter for CFGRIDCOLUMN?

    I have these values for my cfgridcolumn called 'phrase':
    Code:
    href="#Request.self#?fa=#XFA_choices#&phrase="hrefkey="phrase"
    I can see the value of the phrase cfgridcolumn at the end of the URL but I'd like to be able to add another hrefkey because I want the href to contains the values of (in layman terms):
    URL + value of phrase cfgridcolum + value of ID cfgridcolumn

    Is this possible and,...
    See more | Go to post
No activity results to display
Show More
Working...