SOT: Free flash media player

2005-07-17 Thread Rob
I've seen them before on the net, but I cant seem to get the search terms for google right... Is there a flash ... uh... movie that can play ... well ... movies (quicktime or whatever)? The free-er the better. I have a need to play some simple videos, and would like to have a flash program that

RE: Free flash media player

2005-07-17 Thread Damien McKenna
There are lots of tools out there that'll convert movie files to .FLA format, which are playable using Flash most of which also include a player module. Beyond that, I dunno. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014

RE: cfindex.dll: Can't find dependent libraries

2005-07-17 Thread Damien McKenna
-Original Message- From: Adam Haskell [mailto:[EMAIL PROTECTED] And if that doesn't work call Marcomedia...install support is free :) I'm going to have to do that, I'm on my third install and its still flaking out. /me shrugs -- Damien McKenna - Web Developer - [EMAIL PROTECTED]

WSDL CFC Problem

2005-07-17 Thread Mark Leder
Hi All, Trying to use a cfc to return a list of folders on my server (website folders). The cfc chokes when I point to the cfc with ?wsdl appended at the end, stating Axis can't resolve the cfc datatype. I've tried returntypes of structures, queries, any, all with the same failure. When I run

RE: WSDL CFC Problem

2005-07-17 Thread Dave Watts
Trying to use a cfc to return a list of folders on my server (website folders). The cfc chokes when I point to the cfc with ?wsdl appended at the end, stating Axis can't resolve the cfc datatype. I've tried returntypes of structures, queries, any, all with the same failure. First, you

RE: Free flash media player

2005-07-17 Thread Dave Watts
Is there a flash ... uh... movie that can play ... well ... movies (quicktime or whatever)? The free-er the better. I have a need to play some simple videos, and would like to have a flash program that takes a move url and plays it (it would be nice if it could do both plain audio and

Image exists or not

2005-07-17 Thread Ken
Hi. I am doing a simple query to pull image file names from a table, and then displaying the images with the img src. Problem is: Not all of the image names in the db are present on the images folder. And I don't want to show broken images on my page. I was wondering if i can do a cffile read,

Image exists or not

2005-07-17 Thread Michael Dinowitz
FileExists(absolute_path) - returns a true/false based on the existance of a file (i.e. your image) Hi. I am doing a simple query to pull image file names from a table, and then displaying the images with the img src. Problem is: Not all of the image names in the db are present on the images

Re: Image exists or not

2005-07-17 Thread Ken
Silly me. :) Thanks. On 7/17/05, Michael Dinowitz [EMAIL PROTECTED] wrote: FileExists(absolute_path) - returns a true/false based on the existance of a file (i.e. your image) Hi. I am doing a simple query to pull image file names from a table, and then displaying the images with the img

RE: Image exists or not

2005-07-17 Thread Dawson, Michael
You can also use the onError attribute in the img / tag to show an alternate image. It's not a fool-proof, but it does help in some cases. M!ke -Original Message- From: Ken [mailto:[EMAIL PROTECTED] Sent: Sunday, July 17, 2005 3:34 PM To: CF-Talk Subject: Image exists or not Hi. I am

RE: WSDL CFC Problem

2005-07-17 Thread Mike Nicholls
We've had this error too; it's a ColdFusion bug with webservices that's been present since CFMX 6.1 Updater 1. See http://www.macromedia.com/cfusion/webforums/forum/messageview.cfm?catid= 7threadid=881689forumid=1 for some possible workarounds.

Number formatting issue

2005-07-17 Thread Rey Bango
Guys, I have a number that looks like this. 22.995 But everytime I use DollarFormat() or NumberFormat, it rounds it up to 23.00. I need the value to display as 22.99 not 23.00. How do I get around this? I could just treat the value as a string and cut off the trailing 5 but why are the number

RE: WSDL CFC Problem

2005-07-17 Thread Mark Leder
We've had this error too; it's a ColdFusion bug with webservices that's been present since CFMX 6.1 Updater 1. Thanks, I'm still battling with this issue. I've even tried Ray Camdens Cfdirectory function from CFLib with the same results. Mark

RE: Number formatting issue

2005-07-17 Thread Matthew Walker
If you use numberFormat() without a mask, it rounds to the nearest integer (which I think is silly). If you use decimalFormat() or dollarFormat(), it rounds to two decimal places. The standard way of rounding a 5 is to round it up. If you want it to round down, you could do this: int(num*100)/100

Re: Number formatting issue

2005-07-17 Thread Rey Bango
Thanks Matthew. I actually didn't want it to round at all. Rey... Matthew Walker wrote: If you use numberFormat() without a mask, it rounds to the nearest integer (which I think is silly). If you use decimalFormat() or dollarFormat(), it rounds to two decimal places. The standard way of

RE: WSDL CFC Problem

2005-07-17 Thread Mark Leder
I've created a mapping in CFMX7 called /webservices which points to the dir where the cfc's are located. Regardless if I call webservice directly from the mapping, or use an absolute URL, I get this message (mapping shown): Could not generate stub objects for web service invocation. Name:

Re: Free flash media player

2005-07-17 Thread Eric Dawson
not what you asked for http://www.umediaserver.net/ - Original Message - From: Rob [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Sunday, July 17, 2005 06:21 Subject: SOT: Free flash media player I've seen them before on the net, but I cant seem to get the search terms

RE: Cfhttp, Cfschedule stop working in CF4.5

2005-07-17 Thread YC Nyon
Hi, For some reason, my CFschedule and CFhttp stop working in CF4.5 (Windows 2000Advanced Server). Other than asking me to re-install or upgrade, is there any solutions. Tried to reduce the log sizes by deleting some entries but problem still persists. Nyon

OT/SOT: ColdFusion Word Doc Sharing

2005-07-17 Thread E C list
Folks- I've been tasked to come up with a way for television script writers to share and co-edit word docs. It would need to be an online solution, because they are distributed around the USA. Only one editor at a time needs to edit the document, and they don't need to collaborate in

RE: Cfhttp, Cfschedule stop working in CF4.5

2005-07-17 Thread Dave Watts
For some reason, my CFschedule and CFhttp stop working in CF4.5 (Windows 2000Advanced Server). Other than asking me to re-install or upgrade, is there any solutions. Tried to reduce the log sizes by deleting some entries but problem still persists. Can you provide any information beyond

RE: WSDL CFC Problem

2005-07-17 Thread Dave Watts
I've created a mapping in CFMX7 called /webservices which points to the dir where the cfc's are located. Regardless if I call webservice directly from the mapping, or use an absolute URL, I get this message (mapping shown): Could not generate stub objects for web service invocation.

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-17 Thread Michael T. Tangorre
From: E C list [mailto:[EMAIL PROTECTED] Folks- I've been tasked to come up with a way for television script writers to share and co-edit word docs. It would need to be an online solution, because they are distributed around the USA. Only one editor at a time needs to edit the

RE: WSDL CFC Problem

2005-07-17 Thread Mark Leder
What happens if you try invoking the WSDL URL (http://www.mysite.com/cf-inf/cfcomponents/SimpleCreditRating.cfc?wsdl) directly from within a browser? That's what the error message suggests you do. I get the message as shown in my previous post (either way of calling the URL a browser, same

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-17 Thread Mark Leder
Also, take a look at Daisy, Open source, not CF, but free. Just had a review in InfoWorld. http://www.outerthought.org/daisy.html http://www.infoworld.com/article/05/07/11/28TCxmlcm_1.html Mark ~| Logware (www.logware.us):

Re: WSDL CFC Problem

2005-07-17 Thread James Holmes
The mapping and the web path need to read the same. By this I mean that http://www.mysite.com/cf-inf/cfcomponents/SimpleCreditRating.cfc needs to include the mapping in it, so the mapping needs to map /cf-inf/cfcomponents/ to {webroot}/cf-inf/cfcomponents/. If you have more than one site on

.ini files (ray)

2005-07-17 Thread dave
Ray, did u ever blog about using cfc's with ini files? just want to be sure I didn't miss it thanks ~Dave the disruptor~ A criminal is a person with predatory instincts who has not sufficient capital to form a corporation.

RE: WSDL CFC Problem

2005-07-17 Thread Mark Leder
Should I register as an ordinary mapping or as a webservice in CF admin? Mark ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49

RE: WSDL CFC Problem

2005-07-17 Thread Mark Leder
The mapping and the web path need to read the same. By this I mean that http://www.mysite.com/cf-inf/cfcomponents/SimpleCreditRating.cfc needs to include the mapping in it, so the mapping needs to map /cf-inf/cfcomponents/ to {webroot}/cf-inf/cfcomponents/. If you have more than one site on

Re: WSDL CFC Problem

2005-07-17 Thread James Holmes
I know. This should be part of the documentation or similar, if they aren't going to fix it post-updater. On 7/18/05, Mark Leder [EMAIL PROTECTED] wrote: Your suggestion worked! Thanks for your help!!! ~| Discover CFTicket -

Re: Free flash media player

2005-07-17 Thread Kevin Aebig
If you're talking about creating Flash video, than you can use something like Sorensen Squeeze to generate Flash video from nearly any source, or the Flash video kit that comes with Flash MX 2004. Heres a free Flash video player that I use for development purposes. If you need something like