Re: cfdocument not displaying arabic font [spamtrap bayes][spamtrap heur]

2010-10-27 Thread Paul Hastings
On 10/28/2010 12:58 PM, safo 2000 wrote: > ARABIC TEXT PRINT TEST © ظ„ط ˆ ظ¯ ظ‡ ظپظٹ ط ¬ طˆ ظ„ظ > § ط © ظ…ط μ ط¨ ظ… ط § ط¸ ظ†ط getting that w/out cfdocument. don't have that font or more likely your text is not encoded as windows arabic. works fine a

cfdocument not displaying arabic font

2010-10-27 Thread safo 2000
hi, i am trying the following code: http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";> PRINT TEST ARABIC TEXT PRINT TEST نظام بصمة الوجه في دولة

RE: Question about using javascript in .cfm files...

2010-10-27 Thread Rick Faircloth
Thanks for the tip. -Original Message- From: Michael Grant [mailto:mgr...@modus.bz] Sent: Wednesday, October 27, 2010 9:10 PM To: cf-talk Subject: Re: Question about using javascript in .cfm files... I think CTRL+SHIFT+R forces a full refresh in FF. On Wed, Oct 27, 2010 at 9:05 PM, R

Re: Question about using javascript in .cfm files...

2010-10-27 Thread Michael Grant
I think CTRL+SHIFT+R forces a full refresh in FF. On Wed, Oct 27, 2010 at 9:05 PM, Rick Faircloth wrote: > > I had the same idea of the function being called before the DOM > was loaded, so I tried moving the js to the head as opposed to the > end of the body to see if that mattered...didn't hel

RE: Question about using javascript in .cfm files...

2010-10-27 Thread Rick Faircloth
I had the same idea of the function being called before the DOM was loaded, so I tried moving the js to the head as opposed to the end of the body to see if that mattered...didn't help. I think something is going on with Firefox when trying to get it to include some of the js files. First, updat

RE: Question about using javascript in .cfm files...

2010-10-27 Thread Rick Faircloth
Thanks for the tip on the content type. I've been living with syntax highlighting since js highlighting was applied because of the .cfm extension and cf doesn't highlight the js. :oP Perhaps now I can have my cake and eat it, too! :o) -Original Message- From: denstar [mailto:valliants..

Re: Question about using javascript in .cfm files...

2010-10-27 Thread Michael Grant
Yeah, to the browser they are identical. Is it possible that you are calling your function before it's been added to the document? Like you don't call checkUserFavorites above your

Re: Question about using javascript in .cfm files...

2010-10-27 Thread denstar
It's pretty much exactly the same. Even more exacter if you set the content type to text/javascript or whatever using cfcontent. :Den -- Custom is our nature. What are our natural principles but principles of custom? Blaise Pascal On Wed, Oct 27, 2010 at 11:44 AM, Rick Faircloth wrote: > > I'

Re: CFLOOP Next Iteration

2010-10-27 Thread Matthew Lowrey
>You probably noticed this, but cfcontinue is a new CF9 tag, so won't work in >older versions of CF. I wasn't aware of that. We're still learning all the new tags and it doesn't come up win DreamWeaver so it was a shot in the dark to find something that would allow us to "continue" I'll have

JavaCast Wierdness

2010-10-27 Thread Donnie Carvajal
In ColdFusion 9, when I JavaCast a Coldfusion array to an array of objects, specifically com.netsuite.webservices.lists.relationships_2010_1.CustomerAddressbook[], and I dump the array, the correct number of elements is displayed; however, each element has the followinf for a value... [undefi

Test

2010-10-27 Thread Donnie Carvajal
My last post never showed up, so I am testing the system ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/group

Re: hostek.com - is anyone else experiencing extreme downtime today

2010-10-27 Thread Mike Little
the response we have received was... There was a temporary issue with the firewall and our MySQL servers, this has been resolved and you can again connect to the MySQL database. our sites are again active. mike ~| Order the

JavaCast Problem

2010-10-27 Thread Donnie Carvajal
When I run JavaCast to set a ColdFusion Array to an array of Netsuite Java objects, com.netsuite.webservices.lists.relationships_2010_1.CustomerAddressbook[], when I dump the array and output the GetClass().GetName(), the array length is correct and the GetClass().GetName() value is [Lcom.net

RE: Dynamically resizing a cfwindow?

2010-10-27 Thread Brook Davies
Ext does the same thing, its a unique auto-generated id. If you only have one window, you could try writing this in your console and see if you can get a reference to the window: Ext.getCmp( Ext.DomQuery.selectNode('.x-window').id ).setPosition(10,10); Brook -Original Message- From:

Re: CF 'e-commerce' product catalogue

2010-10-27 Thread .jonah
Hello Michael, It uses the CFPayment wrapper (http://cfpayment.riaforge.org/). So any gateways it supports will work and if what you need isn't available, it's pretty simple to add a new gateway. Let me know if you have any other questions. Thanks, .jonah On 10/25/10 4:28 PM, Michael Grant w

Re: CF 'e-commerce' product catalogue

2010-10-27 Thread .jonah
I'll keep you posted. Thanks! On 10/26/10 8:54 AM, Andrew Spear wrote: > Jonah- > I'm interested to check our your product when it's release. Is there a way > to be notified? > > Andrew > >> I don't know any free ones. We're about to release a new CF based >> ecommerce engine in the next few we

Question about using javascript in .cfm files...

2010-10-27 Thread Rick Faircloth
I've been using js files as .cfm files so I can intermix cf variables in the js. i.e., naming myJSFile.js, "myJSFile.js.cfm", instead. This seems to work fine, but I've run into an issue that makes me wonder if this works in all cases as a regular js file would. Here's the question: If I have

Re: CFLOOP Next Iteration

2010-10-27 Thread Jacob Munson
You probably noticed this, but cfcontinue is a new CF9 tag, so won't work in older versions of CF. Sent with my Droid On Oct 27, 2010 9:57 AM, "Matthew Lowrey" wrote: > > Thank you guys, I think it's time I update my CF References... I shamefully have been using the MX version too often and Goog

Re: href mailto

2010-10-27 Thread John M Bliss
Browser and/or email client will have a max length for the href. For example: http://support.microsoft.com/kb/q182985/ On Wed, Oct 27, 2010 at 8:59 AM, fun and learning wrote: > > Hi All - > > I am trying to use mailto functionality with email addresses populated from > database and separated b

href mailto

2010-10-27 Thread fun and learning
Hi All - I am trying to use mailto functionality with email addresses populated from database and separated by semicolons.. #email#;> the funcionaility works sometimes and it does not. I hardcoded around 85 emails and seen that it does not open the mail client at all. It throws an error "ema

RE: hostek.com - is anyone else experiencing extreme downtime today

2010-10-27 Thread Paul Alkema
My site seems to be doing well. I think my site's gone down maybe twice in the last two years. Which I think it pretty good considering I pay like 5 bucks a month and. -Original Message- From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com] Sent: Wednesday, October 27, 2010 7:53 AM

Re: hostek.com - is anyone else experiencing extreme downtime today

2010-10-27 Thread Casey Dougall
On Wed, Oct 27, 2010 at 5:24 AM, Mike Little wrote: > > several of our sites have been down for at least 4 hours now. > > we think the problem appears to be their connection to mysql. even their > own faq page has been down for ages with the following error... > > My sites seem to be OK.

hostek.com - is anyone else experiencing extreme downtime today

2010-10-27 Thread Mike Little
several of our sites have been down for at least 4 hours now. we think the problem appears to be their connection to mysql. even their own faq page has been down for ages with the following error... http://hostek.com/faq/kb/ Microsoft OLE DB Provider for ODBC Drivers error '80004005' [MySQL]