FCKEditor config file

2010-01-21 Thread Kim Hoopingarner
I have a client that needs to have a specific toolbar for the editor - but doesn't want to make the change in the config file. Do you know any tricks out there to accomplish this? H ~| Want to reach the ColdFusion

Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner
Thank you! Giving it a try now. I knew someone would have an answer. :) ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner
I get this error:Element BEANFACTORY is undefined in a Java object of type class. I'm sure this is something simple to fix? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner
I got it to work by doing this. :) YE! Thank you for getting me on the right track! cfscript fckEditor = createObject( component, /CFIDE/scripts/ajax/FCKEditor/fckeditor ); fckEditor.Config[CustomConfigurationsPath] = #session.root#/js/FCKEditor_configCMS.js; fckEditor.instanceName =

Re: FCKEditor config file

2010-01-21 Thread Kim Hoopingarner
OK - stumped again. I need to move a value into the editor when a button is clicked. I retrieve that value from the database - and then set the editor equal. But it keeps returning blank - and I know a value is being returned from the cfinvoke. cfinvoke

Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
I have a client that has a different image showing on each content panel of an accordion. They also have a link showing that when clicked needs to expand that same panel with additional text. (It shows Disclaimer info) I set up the accordion. All is well. I have 5 panels with content. I put

Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
what is jquery? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328814

Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
Yes, I googled and found it before your info came. :) But thanks. So I implemented the js into the picture and added your code. Aside from the additional paran I added in the onclick - the code is identical and not quite working. First - I need the text to not show initially upon creating

Re: Accordion - How do you?

2009-12-03 Thread Kim Hoopingarner
Good stuff. Easy to figure out. Thanks for the lead! kim ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Store Flash File in database then load into Flash?

2009-11-19 Thread Kim Hoopingarner
I have a client that required the flash file to be stored in an Oracle database. And now I am required to load Flash using an xml file that should be pulling its data from the database. I cannot store files on the server - so I'm trying to figure out if what I'm attempting is even possible.

Re: Store Flash File in database then load into Flash?

2009-11-19 Thread Kim Hoopingarner
I'll give that a try. I'm not supposed to write anything to the server. Sure makes the easy stuff tricky. Thanks, Dave! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of

JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner
I have not tried this before - so I thought I might see if this is feasible. I have stored 2 jpgs in my database - one for the header of the site and one for the left side graphic. I want to retrieve these 2 BLOBS and place them on my web page - removing the need to have the jpg on my file

Re: JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner
Thanks for the heads up on performance. Will definitely warn client. What is the trick to streaming to a web page? I am using the cfheader and cfcontent - to no avail. It puts the header out - and then the next line is not seen. here's my simple code ... just trying to get one of those

Re: JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner
CORRECT CODE! cfform name=x action=home.cfm cfinvoke component=cfc.msr_multisigs method=getMSigImage returnvariable=qMsigImage /cfinvoke div cfheader name=Content-Disposition value=inline cfcontent type=image/jpg variable=qMsigImage.binaryObject

Re: JPG in Database - Retrieve for web page

2009-11-13 Thread Kim Hoopingarner
That gives an error that my data must be binary on the cfcontent. Any other thoughts? ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Coldfusion 8 to 9 CFTEXTAREA

2009-11-11 Thread Kim Hoopingarner
We installed CF 9 and when I run my CFTEXTAREA tag - there is no tool bar showing. Help... I'm not finding much in Google as you might assume. cfform action=test.cfm method=post name=form1 id=form1 cftextarea richtext=true name=introText id=introText toolbar=Default height=350 width=650

Re: Coldfusion 8 to 9 CFTEXTAREA

2009-11-11 Thread Kim Hoopingarner
Thanks for your help. Finally noticed - my development folder was placed on another server separate from CF. The problem - the wwwroot directory wasn't placed there with the CFIDE folder. Hence the tag wasn't finding its needed js files. Wow - my head hurts! Again... thanks much! Kim

Re: Flash File in Oracle - Retrieving...

2009-10-20 Thread Kim Hoopingarner
Thank you for your help! I finally found the problem was related to those darn cfoutput statements!!! UGH!!! I had the path with a substitute variable with out the cfoutput. You would have thought my error would have been more clear. Kim

View PDF in Coldfusion

2009-10-20 Thread Kim Hoopingarner
OK - I conquered the Flash file view but now I have something peculiar with PDF files. I have narrowed in on the fact that the ones that work are simple PDF - no graphics and small in size. The ones that do not work (The file is damaged and could not be repaired message in PDF Reader) are

Re: View PDF in Coldfusion

2009-10-20 Thread Kim Hoopingarner
Hey - I solved it on my own! Here's the symptoms and solution in case you need... Symptom - the database is not storing the full PDF. I could tell my dumping the file it did store and seeing that its file size was 64 K and not 250 K. Fix - check your CF8 Administration DSN setup. You need

Re: Flash File in Oracle - Retrieving...

2009-10-19 Thread Kim Hoopingarner
Anyone have input to this thread? Help... Thanks! ~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive:

Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner
I need to retrieve a flash file that is in Oracle (BLOB) and show on a coldfusion page. I don't know if it is possible to simply retrieve the data and show it without creating a file first. Currently I can get this to work - but I have to change the binary back into a file. I really want to

Re: Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner
Makes sense - except something isn't working with what I did. I hope you don't mind straightening me out. I am calling this code in my cfm file: OBJECT classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354

Re: Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner
Small correction - the appFlashPrep.cfm is this: !--- retrieves the binary data from the BLOB in Oracle --- cfinvoke component=cfc.msr_promotions method=getPromoImage returnvariable=qPromoImage/cfinvoke cfcontent type=application/x-shockwave-flash variable=#qPromoImage. promoFlash#

Re: Flash File in Oracle - Retrieving...

2009-10-18 Thread Kim Hoopingarner
Everything checks out when I call the Prep file and save the file. That swf runs like a champ. So why am I having troubles viewing it in my cfm file? (I did take out that extraneous cfoutput line. FYI) Any other thoughts?

Flex Help...

2009-07-30 Thread Kim Hoopingarner
I noticed that the Flex forum doesn't get as much attention as the Coldfusion - so forgive me for posting my Flex question here. I know a lot of the CF programmers use Flex... I created a datagrid using actionscript. Now I need to add a button to one of the columns and I can't find the

Re: Report Builder - Other Language Capability

2009-06-20 Thread Kim Hoopingarner
Thanks for the reply. I am seeing Acrobat pulling the text as Helvetica instead of the asian-type font. I've gone as far now as to download/install the fonts for the Acrobat that are associated to the Asian characters - to no avail. And I have downloaded the MultiLanguage Support version

Re: Report Builder - Other Language Capability

2009-06-20 Thread Kim Hoopingarner
Some progress made - I know have the Arabic working. And it does have to do with the font I select in the Report Builder. So here's 2 questions... 1) What font type do I need for the asian characters? I seem to be overlooking it. 2) Does this mean that I have to have different reports for

Report Builder - Other Language Capability

2009-06-19 Thread Kim Hoopingarner
I have successfully stored Chinese characters into my database and they are visible on my web site. Now I am trying to print them on a report - and I keep getting the dreaded '?' instead of the characters. Is there something in the report builder I need to do to allow it to work with

Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner
I have a Flex 3 main app that calls 2 components - one has a datagrid with user data while the other component has an input form for the same user data. I use the Coldfusion to server the data changes. I found that if I change the data using the input form, it is not reflected in the

Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner
. On Sun, Mar 1, 2009 at 10:23 AM, Kim Hoopingarner k.hoopingar...@e-details.com wrote: I have a Flex 3 main app that calls 2 components - one has a datagrid with user data while the other component has an input form for the same user data.  I use the Coldfusion to server the data changes.  I

Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner
I like the LifeCycle - but is there a good host company out there that supports this? Thanks for any advice on this topic. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner
OK - I'm going about this problem from another angle. But I'm still scratching my head. Again- 2 components within the app. I have a tab bar in the main app that users click to change to the different component views. I came up with the idea to have the tab bar trigger an event - and the

Re: Coldfusion / Flex 3 Web Services or...

2009-03-01 Thread Kim Hoopingarner
OK - I'm going about this problem from another angle. But I'm still scratching my head. Same scenario - 2 components within the app. I have a tab bar in the main app that users click to change to the different component views. I came up with the idea to have the tab bar (who calls the

Flex with Coldfusion

2009-02-24 Thread Kim Hoopingarner
I'm hoping someone can clear up some confusions I have regarding Flex and Coldfusion. Currently I am hosting my site with a well-known hosting company. I have many Coldfusion sites running in their shared environment. Today when I talked to them about loading my Flex site up (which includes

Re: Flex with Coldfusion

2009-02-24 Thread Kim Hoopingarner
Thanks for the information. No one could answer this for me on the support lines I called. I knew to come to this site first. You guys got it together. Turns out I get the white screen with no errors. So I think I can move forward. Take care!

Re: Update Panel... Coldfusion?

2008-11-04 Thread Kim Hoopingarner
Thanks! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive:

Update Panel... Coldfusion?

2008-11-04 Thread Kim Hoopingarner
I have been in the ASP.NET / AJAX world recently and found one feature there that is a real asset to a web site... UpdatePanel. Basically it allows the browser to do partial page post-backs and therefore helps with response time. In Coldfusion - does anyone know if there is something like

Open Source Document Management System

2008-11-04 Thread Kim Hoopingarner
Does anyone know where there might be a good document management (web based) system that might even have open source? Thoughts? ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the

Coldfusion Won't Restart...

2008-06-01 Thread Kim Hoopingarner
I have just tried to put cfx_imageinfomx into my ColdFusion world - and in doing so I now have the server not wanting to start. I know the problem - not sure how to fix. I have accidentally placed in the java classes the wrong directory path name. The error in the logs is stating

Re: Coldfusion Won't Restart...

2008-06-01 Thread Kim Hoopingarner
Thanks, Wil! I found the config file and was able to fix it. Whew! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k

Report Builder - creating a function that adds X to a variable

2008-02-25 Thread Kim Hoopingarner
I am trying to create a report where a almost-sequential number is to show next to each row. I say almost because there are certain circumstances that I need to add 2 instead of 1 to that number. Now I started off by creating a function in the report builder. Here it is... Simply put, I

RE: Report Builder - creating a function that adds X to a variable

2008-02-25 Thread Kim Hoopingarner
Thanks! I ended up creating a request scoped variable. Works great! -Original Message- From: Daniel Roberts [mailto:[EMAIL PROTECTED] Sent: Monday, February 25, 2008 2:06 PM To: CF-Talk Subject: Re: Report Builder - creating a function that adds X to a variable I believe the easiest

Report Builder - creating a function that adds X to a variable

2008-02-24 Thread Kim Hoopingarner
I am trying to create a report where a almost-sequential number is to show next to each row. I say almost because there are certain circumstances that I need to add 2 instead of 1 to that number. Now I started off by creating a function in the report builder. Here it is... Simply put, I

Report Builder - creating a function that adds X to a variable

2008-02-24 Thread Kim Hoopingarner
I need some help figuring out in the report builder how to work with a variable and a function. Basically this report is showing a sequential number beside each record. The number however isn't always 1 more than the last. Sometimes it is 2 greater or 3. So I built a function to determine

Re: CF Report Builder

2008-02-24 Thread Kim Hoopingarner
Thanks! ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

CF Report Builder

2008-02-21 Thread Kim Hoopingarner
First time using this tool and I struggle with something easy. I have added a field to the report. Based on the content of the field, it should show different text. Here's the expression: iif([query.feedesc] = COMMERCIAL, COMMERCIAL BEACH,iif([query.feedesc]=GOVERNMENT,GOVERNMENT OWNED

crystal reports 11 and coldfusion 8

2008-02-19 Thread Kim Hoopingarner
I have an existing reporting system in Crystal Reports 11. We are converting from vb.net to coldfusion 8. I want to be able to call these reports through coldfusion. Does anyone know if these are compatible? And if they are - what is the trick to making it work? Thanks.

Re: crystal reports 11 and coldfusion 8

2008-02-19 Thread Kim Hoopingarner
Thank you for your information. I am looking to understand what I need to install from the Crystal Reports 11 CD (and I assume this is done on the web server). Then can I get an example of the cfreport code that works. Here's my cfreport and all it is doing is returning back to the form.

Re: crystal reports 11 and coldfusion 8

2008-02-19 Thread Kim Hoopingarner
http://asreports.riaforge.org/ And yes they are compatible. On 2/20/08, Kim Hoopingarner [EMAIL PROTECTED] wrote: I have an existing reporting system in Crystal Reports 11. We are converting from vb.net to coldfusion 8. I want to be able to call these reports through coldfusion

br / In Database but I can't retrieve it?

2007-10-02 Thread Kim Hoopingarner
I am using MySql and I store the results of FCKEditor in a varchar. There are br / therefore seen in the actual database field. However, when I go to retrieve the varchar and display it, the br / disappears and causes the formatting to be off. What can I do to preserve the br / in my select

FCKEditor issue?

2007-10-02 Thread Kim Hoopingarner
using the FCKEditor, I see br / being put into my database when storing the editor's output. When I go to select it out of MYSQL, the br / is missing from the string therefore causing the web page formats to be wrong. Does anyone know how to correct this?

Re: FCKEditor issue?

2007-10-02 Thread Kim Hoopingarner
Yes - I did all the debugging already. I see in MYSQL the br / that FCKEditor submitted. So the page submit inserted it fine. My problem is when I do a SELECT * FROM TABLEA. The SELECT is removing the br /. And the form trying to display that column loses its formatting. I am trying to

CFFILE vs FTP

2007-09-27 Thread Kim Hoopingarner
I am using CFFILE to upload a 2.5M file. When doing this, something is timing out. I've been to the host site and my ISP. Neither are finding a problem. What is interesting - if I FTP a 23M file using FileZilla I have no problem. So why am I struggling with a 2.5M file using CFFILE?

CFFILE - alternatives?

2007-09-26 Thread Kim Hoopingarner
For some odd reason there seems to be a problem using CFFILE with my host site when trying to upload files larger than 1.5M. I know it has to do with memory constraints - but I still find it strange that such a small file won't work. sigh So I'm looking for 2 things - 1) Does anyone know a

Re: CFFILE - alternatives?

2007-09-26 Thread Kim Hoopingarner
#1 Follow Up Found out that the CFAdmin was set to 100 M for the max post. Drats. So looks like I might be stuck with re-coding this... #2 Yes - the host has other languages such as ASP. But I'm only familiar with coldfusion - so I'd be clueless throwing in something different unless someone

Re: CFFILE - alternatives?

2007-09-26 Thread Kim Hoopingarner
Look into either of these: - http://www.radinks.com/upload/ - http://swfupload.mammon.se/ OK - I like the swfupload best. But I struggle at how to incorporate this into my existing cfm file. And help on putting it into a cfm form would be great. This form needs to have a button to select