Re: Progress Bar for file upload and process loop.

2009-02-24 Thread Jake Churchill

That's a nice one but I prefer the multiple file uploader example here:

http://weblog.cahlan.com/2006/12/flex-upload-component.html

It's not quite as pretty but it's way more functional.  If you have 
flexbuilder you can easily open the project and skin it differently.

-Jake

Tony Bentley wrote:
> You could probably figure out a way to calculate processing time based on 
> connection speed. For uploading files, there is nothing except client side 
> plugins or flash that will calculate the file size being uploaded and how 
> much of the file has been transferred. 
>
> The best example I have found is Laura's Flash file uploader with a progress 
> bar:
>
> http://www.asfusion.com/blog/entry/file-upload-with-coldfusion-flash-forms 
>
> 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319751
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Progress Bar for file upload and process loop.

2009-02-24 Thread Tony Bentley

You could probably figure out a way to calculate processing time based on 
connection speed. For uploading files, there is nothing except client side 
plugins or flash that will calculate the file size being uploaded and how much 
of the file has been transferred. 

The best example I have found is Laura's Flash file uploader with a progress 
bar:

http://www.asfusion.com/blog/entry/file-upload-with-coldfusion-flash-forms 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319750
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Progress Bar for file upload and process loop.

2009-02-24 Thread Paul Ihrig

hey guys..
just wanted to pick your brains real quick.
was curious if any of you had used or created any sort of progress bar
for display in a cffile upload
and then a progress bar to display the progress of a cfloop on an
insert or update of sql server..

my scenario, we have a xls that a user uploads of contact info. could
be 200 records or 3000.
then we use a query to loop through contacts to assign them to proper people...

on 200 it dosnt matter because the whole process is just a minute or so.
any way.
if you can give me any pointers or advice, i would appreciate it.
using CF8 standard. have jquery & access to normal stuff.
thanks
-paul

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319736
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


File upload progress bar.

2009-02-06 Thread Robert Rawlins

Chaps,

Does anyone have any good solution for displaying a file upload progress bar? I 
essentially have a form which looks like this:











On the process.cfm I use a cffile to handle the file, I save it to the FS with 
a UUID as its path/name and then enter a record into the DB with that unique 
path and the 'freindly' name which they enter in the form.

This is fine however with large files the page sits their whilst the file 
uploads, in an ideal world I'd have a progress bar showing the percentage 
uploaded.

I've not seen anything which CF has built-in for doing this, have you got any 
decent 3rd party solutions which any of you have implement successfully?

Cheers for now,

Rob 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:318964
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Recheck: File Upload Progress Bar

2008-12-19 Thread Martijn van der Woud
>I found a simulated solution using java script that will get me by for now.
>If a file is uploaded (files are not required) the JS opens a popup window
>that shows an animated gif (file loading). When the next page opens it
>closes the window. That will do for now. Sometimes the users just need to
>see something.
>
>
>
>Robert B. Harrison
>Director of Interactive services
>Austin & Williams
>125 Kennedy Drive, Suite 100 Hauppauge NY 11788
>T : 631.231.6600 Ext. 119 
>F : 631.434.7022
>www.austin-williams.com
>
>Great advertising can't be either/or... It must be &.

This might be seen as blasphemy here :) but there are numerous examples for 
this using PHP (e.g. 
http://blog.joshuaeichorn.com/archives/2005/05/01/ajax-file-upload-progress/). 
And off course for Java as well: 
http://www.codeguru.com/java/article.php/c13913 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316999
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Recheck: File Upload Progress Bar

2008-12-19 Thread Al Musella, DPM
You can try using an IFRAME  for the upload file 
form field..  use javascript on the submit button 
to hide (or make really small) the iframe and 
replace it with a animated gif of "file 
uploading".. then when the next page loads, fire 
a javascript event to change the gif to "done!..

At 09:29 AM 12/19/2008, you wrote:
> >>>I asked this some time ago and got no solutions,
> >Because there is no solution.
>
> >>>but maybe now. I also researched this again and still found no solutions.
> > because there is still no solution.
>
>Well, that's what I thought but I had to check again. Things change.
>
>Hopefully Adobe will address this problem soon. I'm not the only one raising
>this issue. I could not find a solution in my search, but I sure found a lot
>of complaints posted about this.
>
>
>Robert B. Harrison
>Director of Interactive services
>Austin & Williams
>125 Kennedy Drive, Suite 100 Hauppauge NY 11788
>T : 631.231.6600 Ext. 119
>F : 631.434.7022
>www.austin-williams.com
>
>Great advertising can't be either/or... It must be &.
>
>
>
>
>

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316977
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Recheck: File Upload Progress Bar

2008-12-19 Thread Robert Harrison
I found a simulated solution using java script that will get me by for now.
If a file is uploaded (files are not required) the JS opens a popup window
that shows an animated gif (file loading). When the next page opens it
closes the window. That will do for now. Sometimes the users just need to
see something.



Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.




~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316976
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Recheck: File Upload Progress Bar

2008-12-19 Thread Ryan Stille
Robert wrote:
> Anyone know of a solution for either an upload progress bar (not using
> flex), or at least to output a message while the file is uploading?
You can show an "in progress" meter using only GIFs and JavaScript.  
Take a look at this article:
http://www.stillnetstudios.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/

Ian wrote:
> Well, before Adobe can address this problem, the entire HTTP standard 
> for client-server communications would have to be addressed.  The corner 
> stone of HTTP is that it is stateless and each and every 
> request-response is separate and intendant. 

This is entirely doable right now, just not in ColdFusion I don't 
think.  We would need access to the state of the upload, I don't think 
there is a way to get that in CF.   If we had that you could do some 
fancy things with application variables and ajax to update a progress meter.

-Ryan



~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316975
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Recheck: File Upload Progress Bar

2008-12-19 Thread Dan Vega
http://cfmu.riaforge.org/

Uses Flex/ColdFusion but provides a real solution.

Thank You
Dan Vega
danv...@gmail.com
http://www.danvega.org


On Fri, Dec 19, 2008 at 10:02 AM, Ian Skinner  wrote:

> > Hopefully Adobe will address this problem soon. I'm not the only one
> raising
> > this issue. I could not find a solution in my search, but I sure found a
> lot
> > of complaints posted about this.
>
> Well, before Adobe can address this problem, the entire HTTP standard
> for client-server communications would have to be addressed.  The corner
> stone of HTTP is that it is stateless and each and every
> request-response is separate and intendant.  So there are very limited
> ways for a server to communicate with a client and vice-a-versa which
> does not allow for servers to push new data to a client after a
> request-response has been processed.
>
> With that said, Adobe has addressed this problem by providing
> technologies outside of the HTTP standard.  Flash - Flex - Air, provide
> alternate Client-Server communication methods where it is entirely
> possible to maintain state and easily have the server push information
> to the client such as this.  But if you are unwilling to move beyond the
> HTTP request-response cycle it is unlikely to happen at least not any
> time soon.
>
> 

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316974
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Recheck: File Upload Progress Bar

2008-12-19 Thread Ian Skinner
> Hopefully Adobe will address this problem soon. I'm not the only one raising
> this issue. I could not find a solution in my search, but I sure found a lot
> of complaints posted about this. 

Well, before Adobe can address this problem, the entire HTTP standard 
for client-server communications would have to be addressed.  The corner 
stone of HTTP is that it is stateless and each and every 
request-response is separate and intendant.  So there are very limited 
ways for a server to communicate with a client and vice-a-versa which 
does not allow for servers to push new data to a client after a 
request-response has been processed.

With that said, Adobe has addressed this problem by providing 
technologies outside of the HTTP standard.  Flash - Flex - Air, provide 
alternate Client-Server communication methods where it is entirely 
possible to maintain state and easily have the server push information 
to the client such as this.  But if you are unwilling to move beyond the 
HTTP request-response cycle it is unlikely to happen at least not any 
time soon.

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316972
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Recheck: File Upload Progress Bar

2008-12-19 Thread Robert Harrison
>>>I asked this some time ago and got no solutions,
>Because there is no solution.

>>>but maybe now. I also researched this again and still found no solutions.
> because there is still no solution.

Well, that's what I thought but I had to check again. Things change. 

Hopefully Adobe will address this problem soon. I'm not the only one raising
this issue. I could not find a solution in my search, but I sure found a lot
of complaints posted about this. 


Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.




~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316966
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Recheck: File Upload Progress Bar

2008-12-19 Thread Claude Schneegans
 >>I asked this some time ago and got no solutions,

Because there is no solution.

 >>but maybe now. I also researched this again and still found no solutions.

 because there is still no solution.

Well, there are solutions, but using Flash tools.
Searc for "multiple upload" AND Flash

 >>I'd be happy if I could even just put an animated gif to show that
something is happening.

This cannot be done by the server, but by the client, using some 
Javascript in
some onsubmit event.

~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316965
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Recheck: File Upload Progress Bar

2008-12-19 Thread Robert Harrison
I asked this some time ago and got no solutions, but maybe now. I also
researched this again and still found no solutions.

I'd like to be able to put either a file upload progress bar on a multi-part
form, but I'd be happy if I could even just put an animated gif to show that
something is happening. 

The problem is you send the formpage to processpage. The processpage does
not process until the file is fully uploaded and you can't output even a
"uploading" message. Tried CFFLUSH, but even that does not process until the
file is fully uploaded.

Anyone know of a solution for either an upload progress bar (not using
flex), or at least to output a message while the file is uploading?

Thanks,
Robert


Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.



~|
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: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:316962
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: jsmx and progress bar

2008-07-28 Thread Richard White
very good point about the estimated time being better than nothing. 

i haven't read anything anywhere else that suggests how to do this, and also as 
suggested cfflush may not be the right option for this scenario, so until 
something else is available then i think your option may be best josh

thanks for your feedback and suggestions




>Richard, it sounds like you might be able to implement the process I 
>mentioned.
>
>If you were able to determine a "baseline" processing time for a simple data 
>set, you could use this to estimate the amount of time it would take for 
>more complex data sets.  You'd have to do a lot of testing to see how long 
>different scenarios would take, and which things had what effect on the 
>processing time.  For example, if a certain variable exists it might take 
>10X as long as it would if that variable didn't exist.
>
>If you have a very complex processing task with many variables, this will be 
>somewhat difficult...however, I think this would be your only option, as 
>there isn't really a way (that I know of anyway) to pass back progress 
>information from the server.  Maybe you could try  or something but 
>I don't know if that could be captured by javascript, or what that would 
>entail.
>
>And remember, even an estimated completion time is better than nothing at 
>all, from the user's perspective.
>
>
>> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309834
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: jsmx and progress bar

2008-07-28 Thread Josh Nathanson
Richard, it sounds like you might be able to implement the process I 
mentioned.

If you were able to determine a "baseline" processing time for a simple data 
set, you could use this to estimate the amount of time it would take for 
more complex data sets.  You'd have to do a lot of testing to see how long 
different scenarios would take, and which things had what effect on the 
processing time.  For example, if a certain variable exists it might take 
10X as long as it would if that variable didn't exist.

If you have a very complex processing task with many variables, this will be 
somewhat difficult...however, I think this would be your only option, as 
there isn't really a way (that I know of anyway) to pass back progress 
information from the server.  Maybe you could try  or something but 
I don't know if that could be captured by javascript, or what that would 
entail.

And remember, even an estimated completion time is better than nothing at 
all, from the user's perspective.


- Original Message - 
From: "Richard White" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, July 28, 2008 12:25 PM
Subject: Re: jsmx and progress bar


> Hi Josh
>
> we are doing something very complex actually that has so many different 
> things that could effect the time it takes.
>
> jsmx only passes back information when it is done but if we could get it 
> to pass back at various stages in the cycle then it would be perfect
>
> we are generating a spreadsheet with data but the data needs to be 
> processed and formatted with sql and cf and based on many many different 
> scenarios.
>
> currently the user selects to generate a spreadsheet and it says 
> 'generating spreadsheet...' but if they have selected a large amount of 
> data then it could take some time so we need to provide them with feedback 
> on the progress
>
> this is the issue we have right now
>
> thanks
>
>
>
>>What sort of thing are you doing on the server exactly?
>>
>>I don't think you can really get the exact progress, but you can do sort 
>>of
>>an estimation that is better than nothing.
>>
>>I do this when doing multiple inserts into a database that can be a bit
>>slow.  You do a test single insert via ajax, record the time it took, then
>>use that time to calculate the total estimated time for all inserts, and 
>>use
>>that total time to do the progress bar.
>>
>>-- Josh
>>
>>
>>>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309824
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: jsmx and progress bar

2008-07-28 Thread Robert Harrison
Some progress bar tools might be a good addition for CF. 

This is the same problem I've been dealing with on large file uploads. I
previously ran a thread about some problems with that, and upgrading to CF8
(as the list suggested) did fix the timeout problems, but it still has no
way to indicate upload progress. I tried to use CFFLUSH to simulate
something, but unless your generating more bytes of data as processing is
done, CFFLUSH is moot. 

In your case you may be able to do something with CFFLUSH, though, because
you are actually generating more data as processing runs (or so it seemed
from what I read). 



Robert B. Harrison
Director of Interactive services
Austin & Williams
125 Kennedy Drive, Suite 100 Hauppauge NY 11788
T : 631.231.6600 Ext. 119 
F : 631.434.7022
www.austin-williams.com

Great advertising can't be either/or... It must be &.




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309822
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: jsmx and progress bar

2008-07-28 Thread Richard White
Hi Josh

we are doing something very complex actually that has so many different things 
that could effect the time it takes. 

jsmx only passes back information when it is done but if we could get it to 
pass back at various stages in the cycle then it would be perfect

we are generating a spreadsheet with data but the data needs to be processed 
and formatted with sql and cf and based on many many different scenarios. 

currently the user selects to generate a spreadsheet and it says 'generating 
spreadsheet...' but if they have selected a large amount of data then it could 
take some time so we need to provide them with feedback on the progress

this is the issue we have right now

thanks



>What sort of thing are you doing on the server exactly?
>
>I don't think you can really get the exact progress, but you can do sort of 
>an estimation that is better than nothing.
>
>I do this when doing multiple inserts into a database that can be a bit 
>slow.  You do a test single insert via ajax, record the time it took, then 
>use that time to calculate the total estimated time for all inserts, and use 
>that total time to do the progress bar.
>
>-- Josh
>
>
>> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309820
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: jsmx and progress bar

2008-07-28 Thread Josh Nathanson
What sort of thing are you doing on the server exactly?

I don't think you can really get the exact progress, but you can do sort of 
an estimation that is better than nothing.

I do this when doing multiple inserts into a database that can be a bit 
slow.  You do a test single insert via ajax, record the time it took, then 
use that time to calculate the total estimated time for all inserts, and use 
that total time to do the progress bar.

-- Josh


- Original Message - 
From: "Richard White" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Monday, July 28, 2008 11:58 AM
Subject: Re: jsmx and progress bar


> for 'JSMX', it allows us to make calls to the server to do functions that 
> can return results.
>
> we want to show a progress bar while it is on the server running the 
> function to show the user how long it will be before the server returns 
> the result
>
>
>>Progress bar for what? For multiple page cart? For loading content? For
>>users RSVPing?
>>
>>Richard White wrote:
>>> hi
>>>
>>> does anyone have any ideas on how to achieve this?
>>>
>>> thanks
>>>
>>>
>
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309819
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: jsmx and progress bar

2008-07-28 Thread Richard White
for 'JSMX', it allows us to make calls to the server to do functions that can 
return results. 

we want to show a progress bar while it is on the server running the function 
to show the user how long it will be before the server returns the result


>Progress bar for what? For multiple page cart? For loading content? For 
>users RSVPing?
>
>Richard White wrote:
>> hi
>> 
>> does anyone have any ideas on how to achieve this? 
>> 
>> thanks 
>> 
>> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309814
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: jsmx and progress bar

2008-07-28 Thread Phillip M. Vector
Progress bar for what? For multiple page cart? For loading content? For 
users RSVPing?

Richard White wrote:
> hi
> 
> does anyone have any ideas on how to achieve this? 
> 
> thanks 
> 
> 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309807
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: jsmx and progress bar

2008-07-28 Thread Richard White
hi

does anyone have any ideas on how to achieve this? 

thanks 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:309805
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


jsmx and progress bar

2008-07-04 Thread Richard White
hi, does anyone know if there is a progress bar that can be used with jsmx

thanks 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;203748912;27390454;j

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:308610
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-04 Thread s. isaac dealey
> FWIW, the flash (flex) component I linked to offers a genuine progress
> bar, as it's all handled by the flash. It uses CFFILE on the back end
> so coding for it is simple.

Oh I somehow missed the fact that this one was directly from Adobe. 

Thanks for the heads up on that one. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 503.236.3691

http://onTap.riaforge.org/blog



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298166
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-04 Thread James Holmes
FWIW, the flash (flex) component I linked to offers a genuine progress
bar, as it's all handled by the flash. It uses CFFILE on the back end
so coding for it is simple.

http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html

On Feb 5, 2008 9:27 AM, s. isaac dealey <[EMAIL PROTECTED]> wrote:
> > i went ahead and asked this question on the knowledge base of the
> > company who developed this component:
> >
> > this was their answer:
> >
> > The progress bar reflects real state of upload (the vault opens an
> > additional connection to receive info from server about upload
> > progress)
>
> Hmm... well... not sure what they mean by that necessarily... but at
> least for me, their tool went straight from 0% at the beginning to 100%
> many seconds later, with nothing in between. It did reflect once the
> file had finished uploading, but nothing in-between. So this answer
> sounds like either they designed it to do something I didn't see when I
> used it (Firefox 2 -- not sure but I think I tried it with IE7 also), or
> that they're just saying it reflects 100% when it finishes.


-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298162
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-04 Thread s. isaac dealey
> i went ahead and asked this question on the knowledge base of the
> company who developed this component:
> 
> this was their answer:
> 
> The progress bar reflects real state of upload (the vault opens an
> additional connection to receive info from server about upload
> progress)

Hmm... well... not sure what they mean by that necessarily... but at
least for me, their tool went straight from 0% at the beginning to 100%
many seconds later, with nothing in between. It did reflect once the
file had finished uploading, but nothing in-between. So this answer
sounds like either they designed it to do something I didn't see when I
used it (Firefox 2 -- not sure but I think I tried it with IE7 also), or
that they're just saying it reflects 100% when it finishes. 


-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 503.236.3691

http://onTap.riaforge.org/blog



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298161
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Upload progress bar

2008-02-04 Thread Bobby Hartsfield
No, they give you the option of adjusting it just to show that you can
apparently

..:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com




-Original Message-
From: cf user [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 04, 2008 2:22 PM
To: CF-Talk
Subject: Re: Upload progress bar

>That failed miserably. The demo takes you to a page with a file field, I
>selected a 6-7mb file and hit upload... a popup window came up but never
>populated... it finally closed and the parent window redirected to a 404.
>
>.:.:.:.:.:.:.:.:.:.:.:.
>Bobby Hartsfield
>http://acoderslife.com
>
>
>
>http://www.cftagstore.com/tags/cfxupload.cfm

Don't they tell you EXPLICITLY file size limit?? 



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298123
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Upload progress bar

2008-02-04 Thread Bobby Hartsfield
I tried it again with a 1mb file just to be sure but it yields the same
result.

..:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com




-Original Message-
From: cf user [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 04, 2008 2:22 PM
To: CF-Talk
Subject: Re: Upload progress bar

>That failed miserably. The demo takes you to a page with a file field, I
>selected a 6-7mb file and hit upload... a popup window came up but never
>populated... it finally closed and the parent window redirected to a 404.
>
>.:.:.:.:.:.:.:.:.:.:.:.
>Bobby Hartsfield
>http://acoderslife.com
>
>
>
>http://www.cftagstore.com/tags/cfxupload.cfm

Don't they tell you EXPLICITLY file size limit?? 



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298124
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-04 Thread cf user
>That failed miserably. The demo takes you to a page with a file field, I
>selected a 6-7mb file and hit upload... a popup window came up but never
>populated... it finally closed and the parent window redirected to a 404.
>
>.:.:.:.:.:.:.:.:.:.:.:.
>Bobby Hartsfield
>http://acoderslife.com
>
>
>
>http://www.cftagstore.com/tags/cfxupload.cfm

Don't they tell you EXPLICITLY file size limit?? 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298110
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Upload progress bar

2008-02-04 Thread Bobby Hartsfield
That failed miserably. The demo takes you to a page with a file field, I
selected a 6-7mb file and hit upload... a popup window came up but never
populated... it finally closed and the parent window redirected to a 404.

..:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com



-Original Message-
From: cf user [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 04, 2008 11:46 AM
To: CF-Talk
Subject: Re: Upload progress bar

http://www.cftagstore.com/tags/cfxupload.cfm




~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298097
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-04 Thread cf user
http://www.cftagstore.com/tags/cfxupload.cfm


~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298068
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-04 Thread Richard White
>Really? I uploaded a 4 meg PDF and never saw a progress bar. 

i havent really used it myself and i have just noticed myself that when i 
upload a big document it does show a progress bar and % sign but the % stays at 
0 and the progress bar stays at 0 then it goes straight to 100%. dont know if 
this is just a demo that they have on their site and not coded it correctly - 
you see both of these by adding the file then clicking the upload button

if you wanted to check it out im sure they do a free download, it is supposed 
to show a progress bar and a % sign so it may be worth looking into further. it 
is something we want to use but just haven't got round to properly reviewing it 
yet

good luck




~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298062
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-04 Thread Claude Schneegans
 >>The progress bar reflects real state of upload (the vault opens an 
additional connection to receive info from server about upload progress)

In this case, the system must know how and where the HTTP server stores 
the temporary file while it's being loaded.
So there should be different version for IIS, Apache, CFMX, etc.


~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298057
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Upload progress bar

2008-02-04 Thread Andy Matthews
Really? I uploaded a 4 meg PDF and never saw a progress bar. 

-Original Message-
From: Richard White [mailto:[EMAIL PROTECTED] 
Sent: Monday, February 04, 2008 9:07 AM
To: CF-Talk
Subject: Re: Upload progress bar

>I agree...the interface is well done, but I really expected to see a 
>progress bar. That would be the clincher!

there is a progress bar when you click upload and it has a progress bar and
a % sign 



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298056
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-04 Thread Richard White
>I agree...the interface is well done, but I really expected to see a
>progress bar. That would be the clincher! 

there is a progress bar when you click upload and it has a progress bar and a % 
sign 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298055
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Upload progress bar

2008-02-04 Thread Andy Matthews
I agree...the interface is well done, but I really expected to see a
progress bar. That would be the clincher! 

-Original Message-
From: s. isaac dealey [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 02, 2008 2:30 PM
To: CF-Talk
Subject: Re: Upload progress bar

> try having at look at this component, i havent checked it out yet but 
> have been meaning too for some time as it does look very cool!!!
> 
> http://www.dhtmlx.com/docs/products/dhtmlxVault/index.shtml
> 

Decent job on the interface. Doesn't seem to show actual progress tho -- I
think the progress bar in that case is just a "throbber" like the moving
graphic, to give the user a convenient illusion. 

--
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 503.236.3691

http://onTap.riaforge.org/blog





~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298054
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-04 Thread Richard White
i went ahead and asked this question on the knowledge base of the company who 
developed this component:

this was their answer:

The progress bar reflects real state of upload (the vault opens an additional 
connection to receive info from server about upload progress)

i think this is right as they do advertise heavily that it uses ajax

hope this helps


>> try having at look at this component, i havent checked it out yet but
>> have been meaning too for some time as it does look very cool!!!
>> 
>> http://www.dhtmlx.com/docs/products/dhtmlxVault/index.shtml
>> 
>
>Decent job on the interface. Doesn't seem to show actual progress tho --
>I think the progress bar in that case is just a "throbber" like the
>moving graphic, to give the user a convenient illusion. 
>
>-- 
>s. isaac dealey  ^  new epoch
> isn't it time for a change? 
> ph: 503.236.3691
>
>http://onTap.riaforge.org/blog 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298048
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-03 Thread Josh Nathanson
> Will, Why limit yourself: http://www.ajaxload.info/ we

Wow.  Thanks for that link!

-- Josh


~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298024
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Upload progress bar

2008-02-02 Thread Bobby Hartsfield
Im more impressed by their color selector. Very nice


..:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com




-Original Message-
From: Will Tomlinson [mailto:[EMAIL PROTECTED] 
Sent: Saturday, February 02, 2008 3:18 PM
To: CF-Talk
Subject: Re: Upload progress bar

>
>Will, Why limit yourself: http://www.ajaxload.info/ we
>

Sweetness! Preesh!

Will 



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298018
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-02 Thread Matt Williams
On Feb 2, 2008 4:36 PM, Gerald Guido <[EMAIL PROTECTED]> wrote:
> http://www.webdice.org/uber_uploader/
>

>From the research I did on this a few months ago you need to use
either Perl or Flash to accomplish real upload status. That
uber_uploader uses Perl on the backend to do its thing. Because I'm
more comfortable with Flash that Perl, I used this:
http://www.element-it.com/MultiPowUpload.aspx

The docs even show a way to hide the flash (still embed it, but not
visible) and work with it via html/javascript. There's a free version
and a pay version. The company is in Russia, but I found their support
to be very responsive and even accommodated a feature request for me.

-- 
Matt Williams
"It's the question that drives us."

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298017
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-02 Thread Gerald Guido
Never mind the first one it is *nix only. I have seen this all over the
place so I have a hard time with it not being able to be done.

I saw a bunch of them that work with PHP and that is fairly ubiquitous. I
saw one that supposed to work with JSP which will run on Jrun. I don't have
time to R&D this.

HEre is one for PHP
http://blog.joshuaeichorn.com/archives/2006/03/14/php-ajax-file-upload-progress-meter-updates/

Good luck.



On Feb 2, 2008 5:36 PM, Gerald Guido <[EMAIL PROTECTED]> wrote:

> http://www.webdice.org/uber_uploader/
>
>
> http://www.google.com/search?q=Upload+progress+bar&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a
>
>
>
>
> On Feb 1, 2008 8:36 PM, George Linderman <[EMAIL PROTECTED]> wrote:
>
> > Hey guys,
> >
> >
> > What I'm trying to do is quite simple. People will upload files, and I
> > want to have a little progress bar come up for while they're uploading.
> > Right now, the only indicator of something happening is the status bar at
> > the bottom of firefox saying, "Sending request to website."
> >
> > I'm using CFFILE on a processor page--with the browse and submit
> > functionality sending to this processor page.
> >
> > Thanks,
> > George C. Linderman
> >
> > 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298016
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-02 Thread Gerald Guido
http://www.webdice.org/uber_uploader/

http://www.google.com/search?q=Upload+progress+bar&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a



On Feb 1, 2008 8:36 PM, George Linderman <[EMAIL PROTECTED]> wrote:

> Hey guys,
>
>
> What I'm trying to do is quite simple. People will upload files, and I
> want to have a little progress bar come up for while they're uploading.
> Right now, the only indicator of something happening is the status bar at
> the bottom of firefox saying, "Sending request to website."
>
> I'm using CFFILE on a processor page--with the browse and submit
> functionality sending to this processor page.
>
> Thanks,
> George C. Linderman
>
> 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298015
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-02 Thread s. isaac dealey
> try having at look at this component, i havent checked it out yet but
> have been meaning too for some time as it does look very cool!!!
> 
> http://www.dhtmlx.com/docs/products/dhtmlxVault/index.shtml
> 

Decent job on the interface. Doesn't seem to show actual progress tho --
I think the progress bar in that case is just a "throbber" like the
moving graphic, to give the user a convenient illusion. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 503.236.3691

http://onTap.riaforge.org/blog



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298011
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-02 Thread Will Tomlinson
>
>Will, Why limit yourself: http://www.ajaxload.info/ we
>

Sweetness! Preesh!

Will 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298009
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-02 Thread Donnie Bachan (Gmail)
George, I agree with the idea of just displaying some sort of
animation, if something is taking too long you can always say "still
working...hang on!" but the entire idea is to give the user an
indicator letting them know that something is happening and the upload
hasn't died. You will need to include proper error handling and
timeouts. It really isn't something you want to spend hours on because
in the end it really isn't that important to show that 10 MBs out of
100MBs have been uploaded (and if you are uploading something that big
via the browser I would discourage that! IMHO).

Will, Why limit yourself: http://www.ajaxload.info/ we


Best Regards,
Donnie

On Feb 2, 2008 11:35 AM, Will Tomlinson <[EMAIL PROTECTED]> wrote:
> I went ahead and put up a gif I use.
>
> http://wtomlinson.com/wait30.gif
>
> HTH,
> Will
>
> 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:298008
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-02 Thread Will Tomlinson
I went ahead and put up a gif I use. 

http://wtomlinson.com/wait30.gif

HTH,
Will 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297999
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Upload progress bar

2008-02-02 Thread Mark Fuqua
I think an animated gif like Will suggested would be the easiest way to go
and accomplish the most important think...let the user know something is
happening.

Mark

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED]
Sent: Saturday, February 02, 2008 2:49 AM
To: CF-Talk
Subject: Re: Upload progress bar


I've been using Flex do do this for some time now and it works well:

http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html

It even checks filesizes before upload and allows multiple files in
one operation.

On Feb 2, 2008 4:41 PM, s. isaac dealey <[EMAIL PROTECTED]> wrote:
> > >>Put simply, you can't.
> >
> > Really?
> >
> > Check this out:
> > http://php5.bluga.net/UploadProgressMeter/demo.php
> >
> > Grumbles to self
>
> Well that one isn't working for me with Firefox 2 and a 512kb file (says
> a 250kb file should be a good demo for most connections)... Instead I
> get "upload complete" pretty much instantly followed by a javascript
> error.
>
> However. If you get really creative, I would think you might be able to
fake
> something that's semi accurate some of the time (when the weather is
> just right). Avoid trying to use Ajax to send the file -- that's liable
> to just frustrate you even more. Submit the form via an iframe instead
> and on the request that receives the form submission, check initially
> for the length of the request data using getHTTPRequestData()
>
> It's a rarely used function that almost nobody knows about (of course
> because it's rarely used) - here's the livedocs article
>
>
http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/w
whelp.htm?context=ColdFusion_Documentation&file=0482.htm
>
> I *think* that you can fetch that prior to your cffile tag and use it to
> figure out how much data is coming up. Though you still would need to
> have a way of roughly figuring the user's connection speed, which with
> larger files will also fluctuate during an upload, and there won't be
> any way to really guage the fluctuation since you don't get any feedback
> from cf between the start and end of the cffile tag processing.
>
> So yeah, the short answer is still "no". The long answer is basically
> "not reliably the way you'd want it to work".
>
> This might not be a bad time to submit a feature request for CF9 to add
> an attribute or maybe a sub-tag to the cffile tag that would allow it to
> execute some kind of progress monitoring code at intervals. If for no
> other reason than that this question crops up pretty regularly on
> mailing lists. I would think something like:
>
> 
>   
> 
>   
> 
>
> That's a real crude, "off the top of my head" thought. Interval would be
> miliseconds, so it'd update the fileprogress once per second and then
> you'd use a series of ajax calls or the like at similar intervals to
> update the original page.
>
> All of which still hinges on my guess being correct that the page starts
> executing (or can) before all of the multi-part/formdata is finished
> transferring. I honestly don't know if the webserver will allow that.
>
> --
> s. isaac dealey  ^  new epoch
>  isn't it time for a change?
>  ph: 503.236.3691
>
> http://onTap.riaforge.org/blog
>
>
>
>



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297997
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-02 Thread Richard White
try having at look at this component, i havent checked it out yet but have been 
meaning too for some time as it does look very cool!!!

http://www.dhtmlx.com/docs/products/dhtmlxVault/index.shtml



> Hey guys,
> 
> 
> What I'm trying to do is quite simple. People will upload files, and I 
> want to have a little progress bar come up for while they're uploading. 
> Right now, the only indicator of something happening is the status bar 
> at the bottom of firefox saying, "Sending request to website."
> 
> I'm using CFFILE on a processor page--with the browse and submit 
> functionality sending to this processor page.
> 
> Thanks,
> George C. Linderman 


~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297990
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Upload progress bar

2008-02-01 Thread James Holmes
I've been using Flex do do this for some time now and it works well:

http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html

It even checks filesizes before upload and allows multiple files in
one operation.

On Feb 2, 2008 4:41 PM, s. isaac dealey <[EMAIL PROTECTED]> wrote:
> > >>Put simply, you can't.
> >
> > Really?
> >
> > Check this out:
> > http://php5.bluga.net/UploadProgressMeter/demo.php
> >
> > Grumbles to self
>
> Well that one isn't working for me with Firefox 2 and a 512kb file (says
> a 250kb file should be a good demo for most connections)... Instead I
> get "upload complete" pretty much instantly followed by a javascript
> error.
>
> However. If you get really creative, I would think you might be able to fake
> something that's semi accurate some of the time (when the weather is
> just right). Avoid trying to use Ajax to send the file -- that's liable
> to just frustrate you even more. Submit the form via an iframe instead
> and on the request that receives the form submission, check initially
> for the length of the request data using getHTTPRequestData()
>
> It's a rarely used function that almost nobody knows about (of course
> because it's rarely used) - here's the livedocs article
>
> http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=0482.htm
>
> I *think* that you can fetch that prior to your cffile tag and use it to
> figure out how much data is coming up. Though you still would need to
> have a way of roughly figuring the user's connection speed, which with
> larger files will also fluctuate during an upload, and there won't be
> any way to really guage the fluctuation since you don't get any feedback
> from cf between the start and end of the cffile tag processing.
>
> So yeah, the short answer is still "no". The long answer is basically
> "not reliably the way you'd want it to work".
>
> This might not be a bad time to submit a feature request for CF9 to add
> an attribute or maybe a sub-tag to the cffile tag that would allow it to
> execute some kind of progress monitoring code at intervals. If for no
> other reason than that this question crops up pretty regularly on
> mailing lists. I would think something like:
>
> 
>   
> 
>   
> 
>
> That's a real crude, "off the top of my head" thought. Interval would be
> miliseconds, so it'd update the fileprogress once per second and then
> you'd use a series of ajax calls or the like at similar intervals to
> update the original page.
>
> All of which still hinges on my guess being correct that the page starts
> executing (or can) before all of the multi-part/formdata is finished
> transferring. I honestly don't know if the webserver will allow that.
>
> --
> s. isaac dealey  ^  new epoch
>  isn't it time for a change?
>  ph: 503.236.3691
>
> http://onTap.riaforge.org/blog
>
>
>
> 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297986
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-01 Thread s. isaac dealey
> >>Put simply, you can't.
> 
> Really?
> 
> Check this out:
> http://php5.bluga.net/UploadProgressMeter/demo.php
> 
> Grumbles to self

Well that one isn't working for me with Firefox 2 and a 512kb file (says
a 250kb file should be a good demo for most connections)... Instead I
get "upload complete" pretty much instantly followed by a javascript
error. 

However. If you get really creative, I would think you might be able to fake
something that's semi accurate some of the time (when the weather is
just right). Avoid trying to use Ajax to send the file -- that's liable
to just frustrate you even more. Submit the form via an iframe instead
and on the request that receives the form submission, check initially
for the length of the request data using getHTTPRequestData() 

It's a rarely used function that almost nobody knows about (of course
because it's rarely used) - here's the livedocs article

http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentation&file=0482.htm

I *think* that you can fetch that prior to your cffile tag and use it to
figure out how much data is coming up. Though you still would need to
have a way of roughly figuring the user's connection speed, which with
larger files will also fluctuate during an upload, and there won't be
any way to really guage the fluctuation since you don't get any feedback
from cf between the start and end of the cffile tag processing. 

So yeah, the short answer is still "no". The long answer is basically
"not reliably the way you'd want it to work". 

This might not be a bad time to submit a feature request for CF9 to add
an attribute or maybe a sub-tag to the cffile tag that would allow it to
execute some kind of progress monitoring code at intervals. If for no
other reason than that this question crops up pretty regularly on
mailing lists. I would think something like: 


  

  


That's a real crude, "off the top of my head" thought. Interval would be
miliseconds, so it'd update the fileprogress once per second and then
you'd use a series of ajax calls or the like at similar intervals to
update the original page. 

All of which still hinges on my guess being correct that the page starts
executing (or can) before all of the multi-part/formdata is finished
transferring. I honestly don't know if the webserver will allow that. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 503.236.3691

http://onTap.riaforge.org/blog



~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297985
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-01 Thread Gerald Guido
>>Put simply, you can't.

Really?

Check this out:
http://php5.bluga.net/UploadProgressMeter/demo.php

Grumbles to self

On Feb 1, 2008 9:08 PM, Alan Rother <[EMAIL PROTECTED]> wrote:

> Put simply, you can't.
>
> Uploading files with a web browser you don't know any of the info you
> would need to make that calculation. File size, transfer rate, bytes
> sent..
>
> The best you could do would be some sort of fake one in flash or even
> an animated gif.
>
>
> --
> Alan Rother
> Adobe Certified Advanced ColdFusion MX 7 Developer
> Manager, Phoenix Cold Fusion User Group, AZCFUG.org
>
> 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297981
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-01 Thread Will Tomlinson
> I'm using CFFILE on a processor page--with the browse and submit 
> functionality sending to this processor page.

Yeah I usually just use a nice animated gif, then flush the page. 




 


Some JS to remove the gif. 

Your file was uploaded, preesh!







~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297979
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Upload progress bar

2008-02-01 Thread Alan Rother
Put simply, you can't.

Uploading files with a web browser you don't know any of the info you
would need to make that calculation. File size, transfer rate, bytes
sent..

The best you could do would be some sort of fake one in flash or even
an animated gif.


-- 
Alan Rother
Adobe Certified Advanced ColdFusion MX 7 Developer
Manager, Phoenix Cold Fusion User Group, AZCFUG.org

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297977
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Upload progress bar

2008-02-01 Thread George Linderman
Hey guys,


What I'm trying to do is quite simple. People will upload files, and I want to 
have a little progress bar come up for while they're uploading. Right now, the 
only indicator of something happening is the status bar at the bottom of 
firefox saying, "Sending request to website."

I'm using CFFILE on a processor page--with the browse and submit functionality 
sending to this processor page.

Thanks,
George C. Linderman 

~|
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: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:297976
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
Thanks for all the help, finally i figuered it out, i just made of couple of 
changes like http:// instead of file: and make sure file was in same directory 
or not? Finally progress bar is displaying now.

Thanks for getting me on right direction.

Actually what i am trying to do is, on the fly make a single zip file of more 
than 10-15 pdfs, at the time of zipping all pdfs i want to show some progress 
bar.

Once again Thank you and Happy New year.

>The first observation is that you can only run this through the file system
>not through a web browser ... For that you would need "http://"; not
>"file://"  Secondly, running it through the file system will likely
>cause the content to be blocked based on security settings so you will have
>to overcome that hurdle. Third, the "id" param in your object bar should be
>something for use with JS (i.e. get rid of the ".swf"), and finally there is
>usually some accompanying javascript with these things... Something setting
>a variable from 1 to 100 or whatever The purpose of CFFLUSH is to cause
>the browser to fire a setvariable command and adjust that variable from 1 to
>100 based on the level complete. Cfflush sends stuff to the browser
>prematurely where it is executed in advance of receiving the entire buffer.
>The way I've seen it is...
>
>
>
>
>
>
>
>   
>   
>

Re: Flash progress bar in coldfusion

2006-12-26 Thread Jake Churchill
I would recommend a relative path to the movie.  Using c:\ is looking on 
the client machine and it's very very likely that the security settings 
are blocking that.  Stick proggybar.swf in a location accessible to the 
web server.  

chr chr wrote:
> This is the simple coldfusion code i'm trying to do
>
> 
>
>  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0";
> WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
>   VALUE=high>
> 
>  WIDTH="221" HEIGHT="70"
> NAME="proggybar.swf" ALIGN="" TYPE="application/x-shockwave-flash" 
> PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer";>
> 
>
> 
>
>  Helooo...
>
> Any ideas please.
>
> Thanks!
>
>   
>> I tried both ways(cfflush and #) still its not working.
>>
>> Thanks!
>>
>> 
>>> You may need to escape the #
>>>
>>> chr chr wrote:
>>>   
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265025
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Flash progress bar in coldfusion

2006-12-26 Thread Brad Wood
Interesting.  Do you see the "hello" line?  if you view the source of
the page after it loads, do you see the entire object tag etc.
What if you compare the html source of the working version to the
non-working version.  

Also, confirm the existence of the swf file on your PC.  

~Brad

-Original Message-
From: chr chr [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 26, 2006 10:58 AM
To: CF-Talk
Subject: Re: Flash progress bar in coldfusion

It never displays even after the entire page has finished loading. 

For now i'm trying this in my local CF server, once it is working fine
then i need to move it to my production server.

Thanks! 


~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265021
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Flash progress bar in coldfusion

2006-12-26 Thread Mark A Kruger
The first observation is that you can only run this through the file system
not through a web browser ... For that you would need "http://"; not
"file://"  Secondly, running it through the file system will likely
cause the content to be blocked based on security settings so you will have
to overcome that hurdle. Third, the "id" param in your object bar should be
something for use with JS (i.e. get rid of the ".swf"), and finally there is
usually some accompanying javascript with these things... Something setting
a variable from 1 to 100 or whatever The purpose of CFFLUSH is to cause
the browser to fire a setvariable command and adjust that variable from 1 to
100 based on the level complete. Cfflush sends stuff to the browser
prematurely where it is executed in advance of receiving the entire buffer.
The way I've seen it is...










Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
It never displays even after the entire page has finished loading. 

For now i'm trying this in my local CF server, once it is working fine then i 
need to move it to my production server.

Thanks!

>1)  Are you using a framework like Fusebox 3 in which cfflush doesn't
>work?
>2)  Does your web server have compression enabled (like gzip on apache)
>
>Either one will make your entire request finish on the server, before
>anything gets shoveled out to the browser.
>
>Also when you say "bar is not displaying", do you mean it doesn't
>display while the rest of the page loads, or it never displays even
>after the entire page has finished loading.  (if the second statement is
>true, then disregard my first comments about Fusebox and compression).
>
>This may be a stupid question, but I noticed the location of the SWF
>file is local on the C: drive.  Are you running this on a LOCAL CF
>server on YOUR PC, or are you placing this code on a remote CF server---
>a server maybe without that SWF file?
>
>~Brad
>
>-Original Message-
>From: chr chr [mailto:[EMAIL PROTECTED] 
>Sent: Tuesday, December 26, 2006 10:40 AM
>To: CF-Talk
>Subject: Re: Flash progress bar in coldfusion
>
>This is the simple coldfusion code i'm trying to do
>
>
>
>codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflas
>h.cab#version=6,0,0,0"
>WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
> VALUE=high>
>
>bgcolor=dd WIDTH="221" HEIGHT="70"
>NAME="proggybar.swf" ALIGN="" TYPE="application/x-shockwave-flash"
>PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer";>
>
>
>
>
> Helooo...
>
>Any ideas please.
>
>Thanks!

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265016
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Flash progress bar in coldfusion

2006-12-26 Thread Brad Wood
1)  Are you using a framework like Fusebox 3 in which cfflush doesn't
work?
2)  Does your web server have compression enabled (like gzip on apache)

Either one will make your entire request finish on the server, before
anything gets shoveled out to the browser.

Also when you say "bar is not displaying", do you mean it doesn't
display while the rest of the page loads, or it never displays even
after the entire page has finished loading.  (if the second statement is
true, then disregard my first comments about Fusebox and compression).

This may be a stupid question, but I noticed the location of the SWF
file is local on the C: drive.  Are you running this on a LOCAL CF
server on YOUR PC, or are you placing this code on a remote CF server---
a server maybe without that SWF file?

~Brad

-Original Message-
From: chr chr [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 26, 2006 10:40 AM
To: CF-Talk
Subject: Re: Flash progress bar in coldfusion

This is the simple coldfusion code i'm trying to do



http://download.macromedia.com/pub/shockwave/cabs/flash/swflas
h.cab#version=6,0,0,0"
WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
 

http://www.macromedia.com/go/getflashplayer";>




 Helooo...

Any ideas please.

Thanks!

>I tried both ways(cfflush and #) still its not working.
>
>Thanks!
>
>>You may need to escape the #
>>
>>chr chr wrote:
>>>



~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265015
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
This is the simple coldfusion code i'm trying to do



http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0";
WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
 

http://www.macromedia.com/go/getflashplayer";>




 Helooo...

Any ideas please.

Thanks!

>I tried both ways(cfflush and #) still its not working.
>
>Thanks!
>
>>You may need to escape the #
>>
>>chr chr wrote:
>>>

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265014
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Flash progress bar in coldfusion

2006-12-26 Thread chr chr
I tried both ways(cfflush and #) still its not working.

Thanks!

>You may need to escape the #
>
>chr chr wrote:
>>

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265011
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Flash progress bar in coldfusion

2006-12-26 Thread Jake Churchill
You may need to escape the #

chr chr wrote:
> Hi Everybody,
>
>   I got one simple problem with flash progress bar, if i run the below code 
> in html file it is working fine and displaying the flash progress bar. If i 
> include the same code in coldfusion file the flash progress bar is not 
> displaying, did i miss anything? 
>
>   
>
>codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0";
> WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
>  
> 
>  NAME="proggybar.swf" ALIGN="" TYPE="application/x-shockwave-flash" 
> PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer";>
> 
>   
> Please help me, thanks in advance.
>   Belated Happy Christmas and Happy new year to everybody.
>
>   Thanks!
>
>  __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around 
> http://mail.yahoo.com 
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265008
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Flash progress bar in coldfusion

2006-12-26 Thread Bruce Sorge
I think that you have to use the CFFLUSH tag. Maybe something like this?


http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0
"
   WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
 

http://www.macromedia.com/go/getflashplayer";>








HTH,

Bruce

On 12/26/06, chr chr <[EMAIL PROTECTED]> wrote:
>
> Hi Everybody,
>
> I got one simple problem with flash progress bar, if i run the below code
> in html file it is working fine and displaying the flash progress bar. If i
> include the same code in coldfusion file the flash progress bar is not
> displaying, did i miss anything?
>
> 
>
> http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0
> "
>WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
>  
> 
>  HEIGHT="70"
>NAME="proggybar.swf" ALIGN="" TYPE="application/x-shockwave-flash"
> PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer";>
> 
>
> Please help me, thanks in advance.
> Belated Happy Christmas and Happy new year to everybody.
>
> Thanks!
>
> __
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265006
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Flash progress bar in coldfusion

2006-12-26 Thread chr chr
Hi Everybody,
   
  I got one simple problem with flash progress bar, if i run the below code in 
html file it is working fine and displaying the flash progress bar. If i 
include the same code in coldfusion file the flash progress bar is not 
displaying, did i miss anything? 
   
  

  http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0";
WIDTH="221" HEIGHT="70" id="proggybar.swf" ALIGN="">
 

http://www.macromedia.com/go/getflashplayer";>

  
Please help me, thanks in advance.
  Belated Happy Christmas and Happy new year to everybody.
   
  Thanks!

 __
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

~|
Create robust enterprise, web RIAs.
Upgrade & integrate Adobe Coldfusion MX7 with Flex 2
http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:265004
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: File Progress Bar - Flash Remoting

2005-08-08 Thread One User
http://www.cftagstore.com/tags/cfxupload.cfm

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214117
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: File Progress Bar - Flash Remoting

2005-08-07 Thread Kevin Aebig
Just to point out some new fun... the newest Flash Player currently in beta, 
version 8, includes file upload capability that will enable uploads without 
page refresh. Of course, you can include your own progress bar for this...

Cheers,

Kevin


- Original Message - 
From: "James Holmes" <[EMAIL PROTECTED]>
To: "CF-Talk" 
Sent: Friday, August 05, 2005 10:00 PM
Subject: Re: File Progress Bar - Flash Remoting


> How would you know which temp file to look at? If three people start
> their upload at the same time, which is which?
>
> On 8/6/05, Billy Jamme <[EMAIL PROTECTED]> wrote:
>> Hi All,
>>
>> I'm thinking of building a Flash upload file progress bar.
>>
>> I'm wondering if:
>>
>> 1) Is possible.
>>
>> 2) Has anyone done it before.
>>
>> My idea was to compare temp file sizes (in the wwwroot-tmp dir) between 2 
>> time points to determine speed, but how do you determine overall file 
>> size to begin with?
>
> 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213993
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: File Progress Bar - Flash Remoting

2005-08-05 Thread James Holmes
How would you know which temp file to look at? If three people start
their upload at the same time, which is which?

On 8/6/05, Billy Jamme <[EMAIL PROTECTED]> wrote:
> Hi All,
> 
> I'm thinking of building a Flash upload file progress bar.
> 
> I'm wondering if:
> 
> 1) Is possible.
> 
> 2) Has anyone done it before.
> 
> My idea was to compare temp file sizes (in the wwwroot-tmp dir) between 2 
> time points to determine speed, but how do you determine overall file size to 
> begin with?

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213958
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: File Progress Bar - Flash Remoting

2005-08-05 Thread Kevin Aebig
I got the idea from the ever enlightening Chris Cantrell... hey Chris,
what's the deal? =]

!k

-Original Message-
From: Billy Jamme [mailto:[EMAIL PROTECTED] 
Sent: August 5, 2005 1:46 PM
To: CF-Talk
Subject: Re: File Progress Bar - Flash Remoting 

The remoting calls wouldn't be real-time, I'd fake it a bit.  

As for CGI.CONTENT_LENGTH, I thought that only gave a result after the file
was uploaded. Am I mistaken?



>Well I can tell you right now that its not going to be easy at all. The
>amount of remoting calls you'd make would be high. You can get an
>approximation of the file size with CGI.CONTENT_LENGTH on the page
accepting
>the upload.
>
>Cheers,
>
>Kevin
>



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213921
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: File Progress Bar - Flash Remoting

2005-08-05 Thread Billy Jamme
The remoting calls wouldn't be real-time, I'd fake it a bit.  

As for CGI.CONTENT_LENGTH, I thought that only gave a result after the file was 
uploaded. Am I mistaken?



>Well I can tell you right now that its not going to be easy at all. The
>amount of remoting calls you'd make would be high. You can get an
>approximation of the file size with CGI.CONTENT_LENGTH on the page accepting
>the upload.
>
>Cheers,
>
>Kevin
>

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213918
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: File Progress Bar - Flash Remoting

2005-08-05 Thread Kevin Aebig
Well I can tell you right now that its not going to be easy at all. The
amount of remoting calls you'd make would be high. You can get an
approximation of the file size with CGI.CONTENT_LENGTH on the page accepting
the upload.

Cheers,

Kevin

-Original Message-
From: Billy Jamme [mailto:[EMAIL PROTECTED] 
Sent: August 5, 2005 12:24 PM
To: CF-Talk
Subject: File Progress Bar - Flash Remoting 

Hi All,

I'm thinking of building a Flash upload file progress bar.   

I'm wondering if:

1) Is possible.

2) Has anyone done it before.

My idea was to compare temp file sizes (in the wwwroot-tmp dir) between 2
time points to determine speed, but how do you determine overall file size
to begin with?

TIA

--j  



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213910
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


File Progress Bar - Flash Remoting

2005-08-05 Thread Billy Jamme
Hi All,

I'm thinking of building a Flash upload file progress bar.   

I'm wondering if:

1) Is possible.

2) Has anyone done it before.

My idea was to compare temp file sizes (in the wwwroot-tmp dir) between 2 time 
points to determine speed, but how do you determine overall file size to begin 
with?

TIA

--j  

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:213903
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


File upload progress bar

2004-11-10 Thread CFDEV
Hi,

I know it's been discuss before but I don't find it in the archive. I'm
looking for a way (free) to have a progress bar of the file upload when
using cffile...

Thanks

Pat


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183859
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: IE Browser Progress Bar runs

2003-07-28 Thread John Stanley
same here with the js, thanks for your input. i was hoping to find a window
property  like (window.progress_bar.size = 0 )that I could set manually, but
am having no luck. there is window.status, but that refers to the text area
to the left of the progress bar.

-Original Message-
From: John McCosker [mailto:[EMAIL PROTECTED]
Sent: Monday, July 28, 2003 10:31 AM
To: CF-Talk
Subject: RE: IE Browser Progress Bar runs


Yep see this as well,
using IFRAMES and CFMX and again the frames are a mixture of posting hidden
data,
and some visual display needs.

We are using javascript heavily though, and use it for form posts.
I assumed it may have been a bug in my JS somewhere and have not had time to
look for image preload
problems and the like.

-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: 28 July 2003 15:25
To: CF-Talk
Subject: OT: IE Browser Progress Bar runs


I have a framed cfmx site, that seems to at least 75% of the time show the
bottom progress bar for IE at some point between zero and 100% after the
page has already loaded. I am using Iframes on this site. But they are for
form submissions only, and so are not being continuously used. Using IE
6.0.28

Has anyone had this happen to them?

Thanks for any input.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: IE Browser Progress Bar runs

2003-07-28 Thread John McCosker
Yep see this as well,
using IFRAMES and CFMX and again the frames are a mixture of posting hidden
data,
and some visual display needs.

We are using javascript heavily though, and use it for form posts.
I assumed it may have been a bug in my JS somewhere and have not had time to
look for image preload
problems and the like.

-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: 28 July 2003 15:25
To: CF-Talk
Subject: OT: IE Browser Progress Bar runs


I have a framed cfmx site, that seems to at least 75% of the time show the
bottom progress bar for IE at some point between zero and 100% after the
page has already loaded. I am using Iframes on this site. But they are for
form submissions only, and so are not being continuously used. Using IE
6.0.28

Has anyone had this happen to them?

Thanks for any input.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



OT: IE Browser Progress Bar runs

2003-07-28 Thread John Stanley
I have a framed cfmx site, that seems to at least 75% of the time show the
bottom progress bar for IE at some point between zero and 100% after the
page has already loaded. I am using Iframes on this site. But they are for
form submissions only, and so are not being continuously used. Using IE
6.0.28

Has anyone had this happen to them?

Thanks for any input.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Oops... Upload progress bar

2003-06-04 Thread Ryan Mitchell
Wrong button ;)

Anyyways I found this:

http://support.persits.com/upload/progress.asp

Anyone know how to create this in cold fusion.. The code is included at that
link. It calls a couple of asp functions such as FormatProgress(), and I
cant see them defined... Are they native asp functions? It doesn¹t seem hard
to replicate apart from these...

I could just use this code in my CMS, but I'd prefer to keep my cffile one,
and just implement a cf version of this... Any help gratefuly received.

Ryan Mitchell

e: [EMAIL PROTECTED]
w: www.rtnetworks.net
t: 07866569916


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Upload progress bar...

2003-06-04 Thread Ryan Mitchell
Hello

I found this...


Ryan Mitchell

e: [EMAIL PROTECTED]
w: www.rtnetworks.net
t: 07866569916


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Get the mailserver that powers this list at 
http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Raymond Camden
I wouldn't say 1000 characters. It seems closer to 150-200 to me. 

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
Member of Team Macromedia

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Ben Doom [mailto:[EMAIL PROTECTED] 
> Sent: Friday, March 07, 2003 11:00 AM
> To: CF-Talk
> Subject: RE: Tricking users/progress bar
> 
> 
> IE waits for the 1st 1000 or so characters before it starts to render.
> 
> When we've needed it to work, we've put some really big 
> comment at the top of the page (the best was a quote from 
> Crime & Punishment by my boss with the degree in Russian Lit).
> 
> Annoying, but easy to deal with once you figure out that IE 
> sucks.  :-)
> 
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Raymond Camden
Isn't there a trick with... the col tag - or some such - to make tables
render part way? I _swear_ I remember reading something about a tag you
can add to your tables so that they would be able to render as they were
being built.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
Member of Team Macromedia

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: charlie griefer [mailto:[EMAIL PROTECTED] 
> Sent: Friday, March 07, 2003 11:03 AM
> To: CF-Talk
> Subject: Re: Tricking users/progress bar
> 
> 
> Tony Weeg writes: 
> 
> > ray have you made cfflush perform correctly on IE?
> > 
> > I have not.  I have tried with showing results from a query, 
> > populating rows of a table, and to my surprise, the page 
> just waited 
> > to display the entire thing, no flushy flushyjust one 
> big dump ?  
> > does anyone have a working example?
> 
> If I understand correctly (which is a longshot, granted), IE 
> will not render 
> any part of a table until the whole table is available. 
> 
> Maybe try s instead?  Dunno...never actually used 
> CFFLUSH myself, so 
> just a suggestion. 
> 
> Charlie 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Everett, Al
Feh. We're all adults here, aren't we?

Personally, I find the juxtaposition of CFDUMP and CFFLUSH to be quite
amusing.

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Friday, March 07, 2003 11:18 AM
> To: CF-Talk
> Subject: RE: Tricking users/progress bar
> 
> 
> It has been pointed out that my choice of words below were a bit...
> off... sorry folks, didn't even realize! (This is what happens when I
> type faster than I think. ;)
> 
> ==
> =
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> Member of Team Macromedia
> 
> Email: [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda 
> 
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED] 
> > Sent: Friday, March 07, 2003 9:50 AM
> > To: CF-Talk
> > Subject: RE: Tricking users/progress bar
> > 
> > 
> > Use CFFLUSH...
> > 
> > Example:
> > 
> > Please stand by while I do crap
> > 
> > 
> > Be aware that there is a 'feature' of IE where it will only 
> > display HTML when the request is completely done, or it gets 
> > 'enough' HTML. So, that line I have in my example would NOT 
> > work if you didn't have enough HTML above it. If you find 
> > this happening, add a:
> > 
> > #repeatString(" ",200)# 
> > 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Ben Doom
IE waits for the 1st 1000 or so characters before it starts to render.

When we've needed it to work, we've put some really big comment at the top
of the page (the best was a quote from Crime & Punishment by my boss with
the degree in Russian Lit).

Annoying, but easy to deal with once you figure out that IE sucks.  :-)


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Tony Weeg [mailto:[EMAIL PROTECTED]
: Sent: Friday, March 07, 2003 11:35 AM
: To: CF-Talk
: Subject: RE: Tricking users/progress bar
:
:
: ray have you made cfflush perform correctly on IE?
:
: I have not.  I have tried with showing results from a query,
: populating rows of a table, and to my surprise, the page just
: waited to display the entire thing, no flushy flushyjust one big
: dump ?  does anyone have a working example?
:
: thanks
:
: ...tony
:
: Tony Weeg
: Senior Web Developer
: UnCertified Advanced ColdFusion Developer
: Information System Design
: Navtrak, Inc.
: Mobile workforce monitoring, mapping & reporting
: www.navtrak.net
: 410.548.2337
:
: -Original Message-
: From: Raymond Camden [mailto:[EMAIL PROTECTED]
: Sent: Friday, March 07, 2003 11:18 AM
: To: CF-Talk
: Subject: RE: Tricking users/progress bar
:
:
: It has been pointed out that my choice of words below were a bit...
: off... sorry folks, didn't even realize! (This is what happens when I
: type faster than I think. ;)
:
: ===
: Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
: Member of Team Macromedia
:
: Email: [EMAIL PROTECTED]
: Blog : www.camdenfamily.com/morpheus/blog
: Yahoo IM : morpheus
:
: "My ally is the Force, and a powerful ally it is." - Yoda
:
: > -Original Message-
: > From: Raymond Camden [mailto:[EMAIL PROTECTED]
: > Sent: Friday, March 07, 2003 9:50 AM
: > To: CF-Talk
: > Subject: RE: Tricking users/progress bar
: >
: >
: > Use CFFLUSH...
: >
: > Example:
: >
: > Please stand by while I do crap
: > 
: >
: > Be aware that there is a 'feature' of IE where it will only
: > display HTML when the request is completely done, or it gets
: > 'enough' HTML. So, that line I have in my example would NOT
: > work if you didn't have enough HTML above it. If you find
: > this happening, add a:
: >
: > #repeatString(" ",200)#
: >
:
:
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Brian Ledwith
That's because your browser won't display a table until the ""
tag has been flushed...  Do a right-click-view-source while the page is
loading and you'll see the 'flushed' table html content has in fact been
sent along to your browser.

~bgl

--> -Original Message-
--> From: Tony Weeg [mailto:[EMAIL PROTECTED]
--> Sent: Friday, March 07, 2003 11:35 AM
--> To: CF-Talk
--> Subject: RE: Tricking users/progress bar
--> 
--> ray have you made cfflush perform correctly on IE?
--> 
--> I have not.  I have tried with showing results from a query,
--> populating rows of a table, and to my surprise, the page just
--> waited to display the entire thing, no flushy flushyjust one big
--> dump ?  does anyone have a working example?
--> 
--> thanks
--> 
--> ...tony
--> 
--> Tony Weeg
--> Senior Web Developer
--> UnCertified Advanced ColdFusion Developer
--> Information System Design
--> Navtrak, Inc.
--> Mobile workforce monitoring, mapping & reporting
--> www.navtrak.net
--> 410.548.2337
--> 
--> -Original Message-
--> From: Raymond Camden [mailto:[EMAIL PROTECTED]
--> Sent: Friday, March 07, 2003 11:18 AM
--> To: CF-Talk
--> Subject: RE: Tricking users/progress bar
--> 
--> 
--> It has been pointed out that my choice of words below were a bit...
--> off... sorry folks, didn't even realize! (This is what happens when
I
--> type faster than I think. ;)
--> 
-->
===
--> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
--> Member of Team Macromedia
--> 
--> Email: [EMAIL PROTECTED]
--> Blog : www.camdenfamily.com/morpheus/blog
--> Yahoo IM : morpheus
--> 
--> "My ally is the Force, and a powerful ally it is." - Yoda
--> 
--> > -Original Message-
--> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
--> > Sent: Friday, March 07, 2003 9:50 AM
--> > To: CF-Talk
--> > Subject: RE: Tricking users/progress bar
--> >
--> >
--> > Use CFFLUSH...
--> >
--> > Example:
--> >
--> > Please stand by while I do crap
--> > 
--> >
--> > Be aware that there is a 'feature' of IE where it will only
--> > display HTML when the request is completely done, or it gets
--> > 'enough' HTML. So, that line I have in my example would NOT
--> > work if you didn't have enough HTML above it. If you find
--> > this happening, add a:
--> >
--> > #repeatString(" ",200)#
--> >
--> 
--> 
-->

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Tricking users/progress bar

2003-03-07 Thread charlie griefer
Tony Weeg writes: 

> ray have you made cfflush perform correctly on IE? 
> 
> I have not.  I have tried with showing results from a query,
> populating rows of a table, and to my surprise, the page just
> waited to display the entire thing, no flushy flushyjust one big
> dump ?  does anyone have a working example?

If I understand correctly (which is a longshot, granted), IE will not render 
any part of a table until the whole table is available. 

Maybe try s instead?  Dunno...never actually used CFFLUSH myself, so 
just a suggestion. 

Charlie 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Raymond Camden
Did you see my note about 'tricking' IE? Sometimes you have to send
extra text - that's why I use repeatString(" ",200) before my cfflush.
As for a working examples, go to the Example Apps and look for the
CFFlush example. If you are using CF5, I believe the example was
accidently hidden, but can be found in a folder called magicnumbers.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
Member of Team Macromedia

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED] 
> Sent: Friday, March 07, 2003 10:35 AM
> To: CF-Talk
> Subject: RE: Tricking users/progress bar
> 
> 
> ray have you made cfflush perform correctly on IE?
> 
> I have not.  I have tried with showing results from a query, 
> populating rows of a table, and to my surprise, the page just 
> waited to display the entire thing, no flushy flushyjust 
> one big dump ?  does anyone have a working example?
> 
> thanks
> 
> ...tony
> 
> Tony Weeg
> Senior Web Developer
> UnCertified Advanced ColdFusion Developer
> Information System Design
> Navtrak, Inc.
> Mobile workforce monitoring, mapping & reporting 
> www.navtrak.net 410.548.2337 
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED] 
> Sent: Friday, March 07, 2003 11:18 AM
> To: CF-Talk
> Subject: RE: Tricking users/progress bar
> 
> 
> It has been pointed out that my choice of words below were a 
> bit... off... sorry folks, didn't even realize! (This is what 
> happens when I type faster than I think. ;)
> 
> ==
> =
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> Member of Team Macromedia
> 
> Email: [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda 
> 
> > -Original Message-
> > From: Raymond Camden [mailto:[EMAIL PROTECTED]
> > Sent: Friday, March 07, 2003 9:50 AM
> > To: CF-Talk
> > Subject: RE: Tricking users/progress bar
> > 
> > 
> > Use CFFLUSH...
> > 
> > Example:
> > 
> > Please stand by while I do crap
> > 
> > 
> > Be aware that there is a 'feature' of IE where it will only
> > display HTML when the request is completely done, or it gets 
> > 'enough' HTML. So, that line I have in my example would NOT 
> > work if you didn't have enough HTML above it. If you find 
> > this happening, add a:
> > 
> > #repeatString(" ",200)#
> > 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Tony Weeg
ray have you made cfflush perform correctly on IE?

I have not.  I have tried with showing results from a query,
populating rows of a table, and to my surprise, the page just
waited to display the entire thing, no flushy flushyjust one big
dump ?  does anyone have a working example?

thanks

...tony

Tony Weeg
Senior Web Developer
UnCertified Advanced ColdFusion Developer
Information System Design
Navtrak, Inc.
Mobile workforce monitoring, mapping & reporting
www.navtrak.net
410.548.2337 

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Friday, March 07, 2003 11:18 AM
To: CF-Talk
Subject: RE: Tricking users/progress bar


It has been pointed out that my choice of words below were a bit...
off... sorry folks, didn't even realize! (This is what happens when I
type faster than I think. ;)

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
Member of Team Macromedia

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED] 
> Sent: Friday, March 07, 2003 9:50 AM
> To: CF-Talk
> Subject: RE: Tricking users/progress bar
> 
> 
> Use CFFLUSH...
> 
> Example:
> 
> Please stand by while I do crap
> 
> 
> Be aware that there is a 'feature' of IE where it will only 
> display HTML when the request is completely done, or it gets 
> 'enough' HTML. So, that line I have in my example would NOT 
> work if you didn't have enough HTML above it. If you find 
> this happening, add a:
> 
> #repeatString(" ",200)# 
> 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Raymond Camden
It has been pointed out that my choice of words below were a bit...
off... sorry folks, didn't even realize! (This is what happens when I
type faster than I think. ;)

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
Member of Team Macromedia

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED] 
> Sent: Friday, March 07, 2003 9:50 AM
> To: CF-Talk
> Subject: RE: Tricking users/progress bar
> 
> 
> Use CFFLUSH...
> 
> Example:
> 
> Please stand by while I do crap
> 
> 
> Be aware that there is a 'feature' of IE where it will only 
> display HTML when the request is completely done, or it gets 
> 'enough' HTML. So, that line I have in my example would NOT 
> work if you didn't have enough HTML above it. If you find 
> this happening, add a:
> 
> #repeatString(" ",200)# 
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Tricking users/progress bar

2003-03-07 Thread Raymond Camden
Use CFFLUSH...

Example:

Please stand by while I do crap


Be aware that there is a 'feature' of IE where it will only display HTML
when the request is completely done, or it gets 'enough' HTML. So, that
line I have in my example would NOT work if you didn't have enough HTML
above it. If you find this happening, add a:

#repeatString(" ",200)# 

to your output.

===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
Member of Team Macromedia

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Friday, March 07, 2003 9:28 AM
> To: CF-Talk
> Subject: Tricking users/progress bar
> 
> 
> I am calling a page that itself contains a CFHTTP call to an 
> external resource that takes about 10-15 seconds to process. 
> The problem is that nothing is displayed on the page until 
> that processing is complete. What can I do to give a user 
> some indication that something's going on instead of a blank 
> page? Thanks!
> 
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Tricking users/progress bar

2003-03-07 Thread stas
I am calling a page that itself contains a CFHTTP call to an external
resource that takes about 10-15 seconds to process. The problem is that
nothing is displayed on the page until that processing is complete. What can
I do to give a user some indication that something's going on instead of a
blank page? Thanks!




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: uploading progress bar

2003-02-17 Thread Dave Lyons
i guess i should read that book i won at the user group last week huh ben?
;)

Dave

From: "Ben Doom" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, February 17, 2003 10:32 AM
Subject: RE: uploading progress bar


> A client I'm currently working with is using a flash form for the login
> page, which is then processed by CF and redirected.
>
> I assume that if there's a file input type in flash, this shouldn't be a
> problem.
>
>
> --  Ben Doom
> Programmer & General Lackey
> Moonbow Software, Inc
>
> : -Original Message-
> : From: Dave Lyons [mailto:[EMAIL PROTECTED]]
> : Sent: Sunday, February 16, 2003 6:19 PM
> : To: CF-Talk
> : Subject: Re: uploading progress bar
> :
> :
> : anyone know how difficult it would be to use a flash form and do
> : the uploads
> : with cfm?
> :
> : Dave
> :
> : - Original Message -
> : From: "Peter Bagnato" <[EMAIL PROTECTED]>
> : To: "CF-Talk" <[EMAIL PROTECTED]>
> : Sent: Sunday, February 16, 2003 8:51 AM
> : Subject: RE: uploading progress bar
> :
> :
> : > $49.00?? Try $119.00
> : >
> : > http://www.lindows.com/lindows_sales_intro.php
> : >
> : > -Original Message-
> : > From: Dave Lyons [mailto:[EMAIL PROTECTED]]
> : > Sent: Saturday, February 15, 2003 10:27 PM
> : > To: CF-Talk
> : > Subject: Re: uploading progress bar
> : > Importance: High
> : >
> : >
> : > lol, no kidding here
> : > www.lindows.com
> : >
> : > i thought i read that you can install it next to xp which would
> : be cool to
> : > compare them
> : >
> : > have to say it looks like m$ is in trouble
> : > especially for $49
> : >
> : >
> : > Dave  -
> : >
> : > - Original Message -
> : > From: "Dick Applebaum" <[EMAIL PROTECTED]>
> : > To: "CF-Talk" <[EMAIL PROTECTED]>
> : > Sent: Saturday, February 15, 2003 10:20 PM
> : > Subject: Re: uploading progress bar
> : >
> : >
> : > > No!
> : > >
> : > > i thought you were joaking1
> : > >
> : > > Dick
> : > >
> : > > On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
> : > >
> : > > > let me see if i can find them
> : > > >
> : > > > have you scene lindows yet?
> : > > > i might go get it this weekend and try it
> : > > >
> : > > >
> : > > > Dave
> : > > > - Original Message -
> : > > > From: "Dick Applebaum" <[EMAIL PROTECTED]>
> : > > > To: "CF-Talk" <[EMAIL PROTECTED]>
> : > > > Sent: Saturday, February 15, 2003 9:29 PM
> : > > > Subject: Re: uploading progress bar
> : > > >
> : > > >
> : > > >> No I haven't!
> : > > >>
> : > > >> 
> : > > >> Couldn't be happier!
> : > > >> 
> : > > >>
> : > > >> Do you have any URLs?
> : > > >>
> : > > >> TIA
> : > > >>
> : > > >> Dick
> : > > >>
> : > > >> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
> : > > >>
> : > > >>> have you been reading anything about how m$ is freaking on linux
> : > > >>> right now?
> : > > >>> looks like a lot of people are moving over to it and lindows.
> : > > >>>
> : > > >>>
> : > > >>> Dave
> : > > >>> - Original Message -
> : > > >>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> : > > >>> To: "CF-Talk" <[EMAIL PROTECTED]>
> : > > >>> Sent: Saturday, February 15, 2003 9:10 PM
> : > > >>> Subject: Re: uploading progress bar
> : > > >>>
> : > > >>>
> : > > >>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
> : > > >>>>
> : > > >>>>> I guess this whole linex deal really has m$ panties in a big
> : > > >>>>> bunch
> : > > >>>>>
> : > > >>>>
> : > > >>>> Just what, do you mean by this?
> : > > >>>>
> : > > >>>> Dick
> : > > >>>>
> : > > >>>>
> : > > >>>
> : > > >>
> : > > >
> : > >
> : >
> : >
> :
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: uploading progress bar

2003-02-17 Thread Peter Bagnato
Send it to me 2!

-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED]] 
Sent: Monday, February 17, 2003 6:57 PM
To: CF-Talk
Subject: Re: uploading progress bar
Importance: High


sorry for the delay, i havent had power all day, i will get them out soon

Dave

- Original Message -
From: "John McCosker" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, February 17, 2003 5:02 AM
Subject: RE: uploading progress bar


> Can I see it t.
>
> -Original Message-
> From: Chuck Brockman [mailto:[EMAIL PROTECTED]]
> Sent: 15 February 2003 02:16
> To: CF-Talk
> Subject: RE: uploading progress bar
>
>
> Me too!!
>
> -Original Message-
> From: Charlie Griefer [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 14, 2003 9:04 PM
> To: CF-Talk
> Subject: RE: uploading progress bar
>
>
> yeah, count me in (curiousity got the better of me) :P
>
>
> -Original Message-
> From: Terry [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 14, 2003 6:52 PM
> To: CF-Talk
> Subject: Re: uploading progress bar
>
>
> I'd like to see it too
>
> *** REPLY SEPARATOR  ***
>
> On 2/14/2003 at 8:32 PM Ewok wrote:
>
> >all cfm??? can i see can i see??
> >
> >- Original Message -
> >From: "Dave Lyons" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Friday, February 14, 2003 3:03 PM
> >Subject: Re: uploading progress bar
> >
> >
> >> im pretty sure its all cfm ben
> >>
> >> how was your short drive home last night
> >>
> >> Dave
> >>
> >> - Original Message -
> >> From: "Ben Doom" <[EMAIL PROTECTED]>
> >> To: "CF-Talk" <[EMAIL PROTECTED]>
> >> Sent: Friday, February 14, 2003 2:58 PM
> >> Subject: RE: uploading progress bar
> >>
> >>
> >> > Offhand, do you know what technologies this uses?  If it's using 
> >> > java
> >or
> >> > javascript, I'd really like to see it.
> >> >
> >> >
> >> > --  Ben Doom
> >> > Programmer & General Lackey
> >> > Moonbow Software, Inc
> >> >
> >> > : -Original Message-
> >> > : From: Dave Lyons [mailto:[EMAIL PROTECTED]]
> >> > : Sent: Friday, February 14, 2003 2:28 PM
> >> > : To: CF-Talk
> >> > : Subject: uploading progress bar
> >> > :
> >> > :
> >> > : I have scene a lot of people ask for an uploading progress bar
> >> > : and I actually have one.
> >> > : I really don't have time to give it a try but if any of you 
> >> > want
> >> > : to try it out and let me know how it works, I'd be glad to send
> >> > : it to you. I would really like to know if its worth while or not
> >> > : before I waste several hours trying to figure it out:)
> >> > :
> >> > : dave
> >> > : 
> >> > :
> >> > :
> >> > :
> >> > :
> >> > :
> >> > :
> >> > :
> >> >
> >>
> >
>
>
>
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: uploading progress bar

2003-02-17 Thread Dave Lyons
sorry for the delay, i havent had power all day, i will get them out soon

Dave

- Original Message -
From: "John McCosker" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, February 17, 2003 5:02 AM
Subject: RE: uploading progress bar


> Can I see it t.
>
> -Original Message-
> From: Chuck Brockman [mailto:[EMAIL PROTECTED]]
> Sent: 15 February 2003 02:16
> To: CF-Talk
> Subject: RE: uploading progress bar
>
>
> Me too!!
>
> -Original Message-
> From: Charlie Griefer [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 14, 2003 9:04 PM
> To: CF-Talk
> Subject: RE: uploading progress bar
>
>
> yeah, count me in (curiousity got the better of me) :P
>
>
> -Original Message-
> From: Terry [mailto:[EMAIL PROTECTED]]
> Sent: Friday, February 14, 2003 6:52 PM
> To: CF-Talk
> Subject: Re: uploading progress bar
>
>
> I'd like to see it too
>
> *** REPLY SEPARATOR  ***
>
> On 2/14/2003 at 8:32 PM Ewok wrote:
>
> >all cfm??? can i see can i see??
> >
> >- Original Message -
> >From: "Dave Lyons" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Friday, February 14, 2003 3:03 PM
> >Subject: Re: uploading progress bar
> >
> >
> >> im pretty sure its all cfm ben
> >>
> >> how was your short drive home last night
> >>
> >> Dave
> >>
> >> - Original Message -
> >> From: "Ben Doom" <[EMAIL PROTECTED]>
> >> To: "CF-Talk" <[EMAIL PROTECTED]>
> >> Sent: Friday, February 14, 2003 2:58 PM
> >> Subject: RE: uploading progress bar
> >>
> >>
> >> > Offhand, do you know what technologies this uses?  If it's using
> >> > java
> >or
> >> > javascript, I'd really like to see it.
> >> >
> >> >
> >> > --  Ben Doom
> >> > Programmer & General Lackey
> >> > Moonbow Software, Inc
> >> >
> >> > : -Original Message-
> >> > : From: Dave Lyons [mailto:[EMAIL PROTECTED]]
> >> > : Sent: Friday, February 14, 2003 2:28 PM
> >> > : To: CF-Talk
> >> > : Subject: uploading progress bar
> >> > :
> >> > :
> >> > : I have scene a lot of people ask for an uploading progress bar
> >> > : and I actually have one.
> >> > : I really don't have time to give it a try but if any of you want
> >> > : to try it out and let me know how it works, I'd be glad to send
> >> > : it to you. I would really like to know if its worth while or not
> >> > : before I waste several hours trying to figure it out:)
> >> > :
> >> > : dave
> >> > : 
> >> > :
> >> > :
> >> > :
> >> > :
> >> > :
> >> > :
> >> > :
> >> >
> >>
> >
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE:FLASH LOGIN (was:: uploading progress bar)

2003-02-17 Thread Mark Stephenson - Evolution Internet
One of the Tutorials on the flashcfm.com site shows you how its done

Mark Stephenson
New Media Director
Evolution Internet
T: 0870 757 1631
F: 0870 757 1632
W: www.evolutioninternet.co.uk
E: [EMAIL PROTECTED]


WARNING:
---
The information contained in this document and attachments is confidential
and intended only for the person(s) named above.  If you are not the
intended recipient you are hereby notified that any disclosure, copying,
distribution, or any other use of the information is strictly prohibited.
If you have received this document by mistake, please notify the sender
immediately and destroy this document and attachments without making any
copy of any kind.

AVIS IMPORTANT:
---
Les informations contenues dans le present document et ses pieces jointes
sont strictement confidentielles et reservees a l'usage de la (des)
personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, soyez
avise que toute divulgation, distribution, copie, ou autre utilisation de
ces informations est strictement prohibee.  Si vous avez recu ce document
par erreur, veuillez s'il vous plait communiquer immediatement avec
l'expediteur et detruire ce document sans en faire de copie sous quelque
forme.




-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED]]
Sent: 17 February 2003 15:32
To: CF-Talk
Subject: RE: uploading progress bar


A client I'm currently working with is using a flash form for the login
page, which is then processed by CF and redirected.

I assume that if there's a file input type in flash, this shouldn't be a
problem.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Dave Lyons [mailto:[EMAIL PROTECTED]]
: Sent: Sunday, February 16, 2003 6:19 PM
: To: CF-Talk
: Subject: Re: uploading progress bar
:
:
: anyone know how difficult it would be to use a flash form and do
: the uploads
: with cfm?
:
: Dave
:
: - Original Message -
: From: "Peter Bagnato" <[EMAIL PROTECTED]>
: To: "CF-Talk" <[EMAIL PROTECTED]>
: Sent: Sunday, February 16, 2003 8:51 AM
: Subject: RE: uploading progress bar
:
:
: > $49.00?? Try $119.00
: >
: > http://www.lindows.com/lindows_sales_intro.php
: >
: > -Original Message-
: > From: Dave Lyons [mailto:[EMAIL PROTECTED]]
: > Sent: Saturday, February 15, 2003 10:27 PM
: > To: CF-Talk
: > Subject: Re: uploading progress bar
: > Importance: High
: >
: >
: > lol, no kidding here
: > www.lindows.com
: >
: > i thought i read that you can install it next to xp which would
: be cool to
: > compare them
: >
: > have to say it looks like m$ is in trouble
: > especially for $49
: >
: >
: > Dave  -
: >
: > - Original Message -
: > From: "Dick Applebaum" <[EMAIL PROTECTED]>
: > To: "CF-Talk" <[EMAIL PROTECTED]>
: > Sent: Saturday, February 15, 2003 10:20 PM
: > Subject: Re: uploading progress bar
: >
: >
: > > No!
: > >
: > > i thought you were joaking1
: > >
: > > Dick
: > >
: > > On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
: > >
: > > > let me see if i can find them
: > > >
: > > > have you scene lindows yet?
: > > > i might go get it this weekend and try it
: > > >
: > > >
: > > > Dave
: > > > - Original Message -
: > > > From: "Dick Applebaum" <[EMAIL PROTECTED]>
: > > > To: "CF-Talk" <[EMAIL PROTECTED]>
: > > > Sent: Saturday, February 15, 2003 9:29 PM
: > > > Subject: Re: uploading progress bar
: > > >
: > > >
: > > >> No I haven't!
: > > >>
: > > >> 
: > > >> Couldn't be happier!
: > > >> 
: > > >>
: > > >> Do you have any URLs?
: > > >>
: > > >> TIA
: > > >>
: > > >> Dick
: > > >>
: > > >> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
: > > >>
: > > >>> have you been reading anything about how m$ is freaking on linux
: > > >>> right now?
: > > >>> looks like a lot of people are moving over to it and lindows.
: > > >>>
: > > >>>
: > > >>> Dave
: > > >>> - Original Message -
: > > >>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
: > > >>> To: "CF-Talk" <[EMAIL PROTECTED]>
: > > >>> Sent: Saturday, February 15, 2003 9:10 PM
: > > >>> Subject

RE: uploading progress bar

2003-02-17 Thread Ben Doom
A client I'm currently working with is using a flash form for the login
page, which is then processed by CF and redirected.

I assume that if there's a file input type in flash, this shouldn't be a
problem.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: Dave Lyons [mailto:[EMAIL PROTECTED]]
: Sent: Sunday, February 16, 2003 6:19 PM
: To: CF-Talk
: Subject: Re: uploading progress bar
:
:
: anyone know how difficult it would be to use a flash form and do
: the uploads
: with cfm?
:
: Dave
:
: - Original Message -
: From: "Peter Bagnato" <[EMAIL PROTECTED]>
: To: "CF-Talk" <[EMAIL PROTECTED]>
: Sent: Sunday, February 16, 2003 8:51 AM
: Subject: RE: uploading progress bar
:
:
: > $49.00?? Try $119.00
: >
: > http://www.lindows.com/lindows_sales_intro.php
: >
: > -Original Message-
: > From: Dave Lyons [mailto:[EMAIL PROTECTED]]
: > Sent: Saturday, February 15, 2003 10:27 PM
: > To: CF-Talk
: > Subject: Re: uploading progress bar
: > Importance: High
: >
: >
: > lol, no kidding here
: > www.lindows.com
: >
: > i thought i read that you can install it next to xp which would
: be cool to
: > compare them
: >
: > have to say it looks like m$ is in trouble
: > especially for $49
: >
: >
: > Dave  -
: >
: > - Original Message -
: > From: "Dick Applebaum" <[EMAIL PROTECTED]>
: > To: "CF-Talk" <[EMAIL PROTECTED]>
: > Sent: Saturday, February 15, 2003 10:20 PM
: > Subject: Re: uploading progress bar
: >
: >
: > > No!
: > >
: > > i thought you were joaking1
: > >
: > > Dick
: > >
: > > On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
: > >
: > > > let me see if i can find them
: > > >
: > > > have you scene lindows yet?
: > > > i might go get it this weekend and try it
: > > >
: > > >
: > > > Dave
: > > > - Original Message -
: > > > From: "Dick Applebaum" <[EMAIL PROTECTED]>
: > > > To: "CF-Talk" <[EMAIL PROTECTED]>
: > > > Sent: Saturday, February 15, 2003 9:29 PM
: > > > Subject: Re: uploading progress bar
: > > >
: > > >
: > > >> No I haven't!
: > > >>
: > > >> 
: > > >> Couldn't be happier!
: > > >> 
: > > >>
: > > >> Do you have any URLs?
: > > >>
: > > >> TIA
: > > >>
: > > >> Dick
: > > >>
: > > >> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
: > > >>
: > > >>> have you been reading anything about how m$ is freaking on linux
: > > >>> right now?
: > > >>> looks like a lot of people are moving over to it and lindows.
: > > >>>
: > > >>>
: > > >>> Dave
: > > >>> - Original Message -
: > > >>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
: > > >>> To: "CF-Talk" <[EMAIL PROTECTED]>
: > > >>> Sent: Saturday, February 15, 2003 9:10 PM
: > > >>> Subject: Re: uploading progress bar
: > > >>>
: > > >>>
: > > >>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
: > > >>>>
: > > >>>>> I guess this whole linex deal really has m$ panties in a big
: > > >>>>> bunch
: > > >>>>>
: > > >>>>
: > > >>>> Just what, do you mean by this?
: > > >>>>
: > > >>>> Dick
: > > >>>>
: > > >>>>
: > > >>>
: > > >>
: > > >
: > >
: >
: >
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: uploading progress bar

2003-02-17 Thread John McCosker
Can I see it t.

-Original Message-
From: Chuck Brockman [mailto:[EMAIL PROTECTED]]
Sent: 15 February 2003 02:16
To: CF-Talk
Subject: RE: uploading progress bar


Me too!!

-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED]] 
Sent: Friday, February 14, 2003 9:04 PM
To: CF-Talk
Subject: RE: uploading progress bar


yeah, count me in (curiousity got the better of me) :P


-Original Message-
From: Terry [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 14, 2003 6:52 PM
To: CF-Talk
Subject: Re: uploading progress bar


I'd like to see it too

*** REPLY SEPARATOR  ***

On 2/14/2003 at 8:32 PM Ewok wrote:

>all cfm??? can i see can i see??
>
>- Original Message -
>From: "Dave Lyons" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Friday, February 14, 2003 3:03 PM
>Subject: Re: uploading progress bar
>
>
>> im pretty sure its all cfm ben
>>
>> how was your short drive home last night
>>
>> Dave
>>
>> - Original Message -
>> From: "Ben Doom" <[EMAIL PROTECTED]>
>> To: "CF-Talk" <[EMAIL PROTECTED]>
>> Sent: Friday, February 14, 2003 2:58 PM
>> Subject: RE: uploading progress bar
>>
>>
>> > Offhand, do you know what technologies this uses?  If it's using 
>> > java
>or
>> > javascript, I'd really like to see it.
>> >
>> >
>> > --  Ben Doom
>> > Programmer & General Lackey
>> > Moonbow Software, Inc
>> >
>> > : -Original Message-
>> > : From: Dave Lyons [mailto:[EMAIL PROTECTED]]
>> > : Sent: Friday, February 14, 2003 2:28 PM
>> > : To: CF-Talk
>> > : Subject: uploading progress bar
>> > :
>> > :
>> > : I have scene a lot of people ask for an uploading progress bar
>> > : and I actually have one.
>> > : I really don't have time to give it a try but if any of you want
>> > : to try it out and let me know how it works, I'd be glad to send
>> > : it to you. I would really like to know if its worth while or not
>> > : before I waste several hours trying to figure it out:)
>> > :
>> > : dave
>> > : 
>> > :
>> > :
>> > :
>> > :
>> > :
>> > :
>> > :
>> >
>>
>



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: uploading progress bar

2003-02-16 Thread Dave Lyons
anyone know how difficult it would be to use a flash form and do the uploads
with cfm?

Dave

- Original Message -
From: "Peter Bagnato" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, February 16, 2003 8:51 AM
Subject: RE: uploading progress bar


> $49.00?? Try $119.00
>
> http://www.lindows.com/lindows_sales_intro.php
>
> -Original Message-
> From: Dave Lyons [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, February 15, 2003 10:27 PM
> To: CF-Talk
> Subject: Re: uploading progress bar
> Importance: High
>
>
> lol, no kidding here
> www.lindows.com
>
> i thought i read that you can install it next to xp which would be cool to
> compare them
>
> have to say it looks like m$ is in trouble
> especially for $49
>
>
> Dave  -
>
> - Original Message -
> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Saturday, February 15, 2003 10:20 PM
> Subject: Re: uploading progress bar
>
>
> > No!
> >
> > i thought you were joaking1
> >
> > Dick
> >
> > On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
> >
> > > let me see if i can find them
> > >
> > > have you scene lindows yet?
> > > i might go get it this weekend and try it
> > >
> > >
> > > Dave
> > > - Original Message -
> > > From: "Dick Applebaum" <[EMAIL PROTECTED]>
> > > To: "CF-Talk" <[EMAIL PROTECTED]>
> > > Sent: Saturday, February 15, 2003 9:29 PM
> > > Subject: Re: uploading progress bar
> > >
> > >
> > >> No I haven't!
> > >>
> > >> 
> > >> Couldn't be happier!
> > >> 
> > >>
> > >> Do you have any URLs?
> > >>
> > >> TIA
> > >>
> > >> Dick
> > >>
> > >> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
> > >>
> > >>> have you been reading anything about how m$ is freaking on linux
> > >>> right now?
> > >>> looks like a lot of people are moving over to it and lindows.
> > >>>
> > >>>
> > >>> Dave
> > >>> - Original Message -
> > >>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> > >>> To: "CF-Talk" <[EMAIL PROTECTED]>
> > >>> Sent: Saturday, February 15, 2003 9:10 PM
> > >>> Subject: Re: uploading progress bar
> > >>>
> > >>>
> > >>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
> > >>>>
> > >>>>> I guess this whole linex deal really has m$ panties in a big
> > >>>>> bunch
> > >>>>>
> > >>>>
> > >>>> Just what, do you mean by this?
> > >>>>
> > >>>> Dick
> > >>>>
> > >>>>
> > >>>
> > >>
> > >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: uploading progress bar

2003-02-16 Thread Dave Lyons
thats interesting

last night they had it as you could buy it for $49 or you could buy it with
all that bundled software for $119

Dave  -

- Original Message -
From: "Peter Bagnato" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Sunday, February 16, 2003 8:51 AM
Subject: RE: uploading progress bar


> $49.00?? Try $119.00
>
> http://www.lindows.com/lindows_sales_intro.php
>
> -Original Message-
> From: Dave Lyons [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, February 15, 2003 10:27 PM
> To: CF-Talk
> Subject: Re: uploading progress bar
> Importance: High
>
>
> lol, no kidding here
> www.lindows.com
>
> i thought i read that you can install it next to xp which would be cool to
> compare them
>
> have to say it looks like m$ is in trouble
> especially for $49
>
>
> Dave  -
>
> - Original Message -
> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Saturday, February 15, 2003 10:20 PM
> Subject: Re: uploading progress bar
>
>
> > No!
> >
> > i thought you were joaking1
> >
> > Dick
> >
> > On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
> >
> > > let me see if i can find them
> > >
> > > have you scene lindows yet?
> > > i might go get it this weekend and try it
> > >
> > >
> > > Dave
> > > - Original Message -
> > > From: "Dick Applebaum" <[EMAIL PROTECTED]>
> > > To: "CF-Talk" <[EMAIL PROTECTED]>
> > > Sent: Saturday, February 15, 2003 9:29 PM
> > > Subject: Re: uploading progress bar
> > >
> > >
> > >> No I haven't!
> > >>
> > >> 
> > >> Couldn't be happier!
> > >> 
> > >>
> > >> Do you have any URLs?
> > >>
> > >> TIA
> > >>
> > >> Dick
> > >>
> > >> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
> > >>
> > >>> have you been reading anything about how m$ is freaking on linux
> > >>> right now?
> > >>> looks like a lot of people are moving over to it and lindows.
> > >>>
> > >>>
> > >>> Dave
> > >>> - Original Message -
> > >>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> > >>> To: "CF-Talk" <[EMAIL PROTECTED]>
> > >>> Sent: Saturday, February 15, 2003 9:10 PM
> > >>> Subject: Re: uploading progress bar
> > >>>
> > >>>
> > >>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
> > >>>>
> > >>>>> I guess this whole linex deal really has m$ panties in a big
> > >>>>> bunch
> > >>>>>
> > >>>>
> > >>>> Just what, do you mean by this?
> > >>>>
> > >>>> Dick
> > >>>>
> > >>>>
> > >>>
> > >>
> > >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




RE: uploading progress bar

2003-02-16 Thread Peter Bagnato
$49.00?? Try $119.00

http://www.lindows.com/lindows_sales_intro.php

-Original Message-
From: Dave Lyons [mailto:[EMAIL PROTECTED]] 
Sent: Saturday, February 15, 2003 10:27 PM
To: CF-Talk
Subject: Re: uploading progress bar
Importance: High


lol, no kidding here
www.lindows.com

i thought i read that you can install it next to xp which would be cool to
compare them

have to say it looks like m$ is in trouble
especially for $49


Dave  -

- Original Message -
From: "Dick Applebaum" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Saturday, February 15, 2003 10:20 PM
Subject: Re: uploading progress bar


> No!
>
> i thought you were joaking1
>
> Dick
>
> On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
>
> > let me see if i can find them
> >
> > have you scene lindows yet?
> > i might go get it this weekend and try it
> >
> >
> > Dave
> > - Original Message -
> > From: "Dick Applebaum" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Saturday, February 15, 2003 9:29 PM
> > Subject: Re: uploading progress bar
> >
> >
> >> No I haven't!
> >>
> >> 
> >> Couldn't be happier!
> >> 
> >>
> >> Do you have any URLs?
> >>
> >> TIA
> >>
> >> Dick
> >>
> >> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
> >>
> >>> have you been reading anything about how m$ is freaking on linux 
> >>> right now?
> >>> looks like a lot of people are moving over to it and lindows.
> >>>
> >>>
> >>> Dave
> >>> - Original Message -
> >>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> >>> To: "CF-Talk" <[EMAIL PROTECTED]>
> >>> Sent: Saturday, February 15, 2003 9:10 PM
> >>> Subject: Re: uploading progress bar
> >>>
> >>>
> >>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
> >>>>
> >>>>> I guess this whole linex deal really has m$ panties in a big 
> >>>>> bunch
> >>>>>
> >>>>
> >>>> Just what, do you mean by this?
> >>>>
> >>>> Dick
> >>>>
> >>>>
> >>>
> >>
> >
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: uploading progress bar

2003-02-15 Thread Dick Applebaum
OK, I saw that!

It cost less than an XP upgrade.

Does it run all the Win desktop apps or just approximates?

If Lindows makes sense, does LOX?

I have fiddled with KDE -- quite nice, but does any 'Nix desktop  
approach OS X?  Does Windows?

Here's some questions I have wondered about:

Can you run Unix programs on a Linux Box?

Can you run Linux programs on a Unix box?

Really trying to get the sense of this!

Dick


On Saturday, February 15, 2003, at 07:27  PM, Dave Lyons wrote:

> lol, no kidding here
> www.lindows.com
>
> i thought i read that you can install it next to xp which would be  
> cool to
> compare them
>
> have to say it looks like m$ is in trouble
> especially for $49
>
>
> Dave  -
>
> - Original Message -
> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Saturday, February 15, 2003 10:20 PM
> Subject: Re: uploading progress bar
>
>
>> No!
>>
>> i thought you were joaking1
>>
>> Dick
>>
>> On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
>>
>>> let me see if i can find them
>>>
>>> have you scene lindows yet?
>>> i might go get it this weekend and try it
>>>
>>>
>>> Dave
>>> - Original Message -
>>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
>>> To: "CF-Talk" <[EMAIL PROTECTED]>
>>> Sent: Saturday, February 15, 2003 9:29 PM
>>> Subject: Re: uploading progress bar
>>>
>>>
>>>> No I haven't!
>>>>
>>>> 
>>>> Couldn't be happier!
>>>> 
>>>>
>>>> Do you have any URLs?
>>>>
>>>> TIA
>>>>
>>>> Dick
>>>>
>>>> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
>>>>
>>>>> have you been reading anything about how m$ is freaking on linux
>>>>> right
>>>>> now?
>>>>> looks like a lot of people are moving over to it and lindows.
>>>>>
>>>>>
>>>>> Dave
>>>>> - Original Message -
>>>>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
>>>>> To: "CF-Talk" <[EMAIL PROTECTED]>
>>>>> Sent: Saturday, February 15, 2003 9:10 PM
>>>>> Subject: Re: uploading progress bar
>>>>>
>>>>>
>>>>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
>>>>>>
>>>>>>> I guess this whole linex deal really has m$ panties in a big  
>>>>>>> bunch
>>>>>>>
>>>>>>
>>>>>> Just what, do you mean by this?
>>>>>>
>>>>>> Dick
>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: uploading progress bar

2003-02-15 Thread Dave Lyons
lol, no kidding here
www.lindows.com

i thought i read that you can install it next to xp which would be cool to
compare them

have to say it looks like m$ is in trouble
especially for $49


Dave  -

- Original Message -
From: "Dick Applebaum" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Saturday, February 15, 2003 10:20 PM
Subject: Re: uploading progress bar


> No!
>
> i thought you were joaking1
>
> Dick
>
> On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:
>
> > let me see if i can find them
> >
> > have you scene lindows yet?
> > i might go get it this weekend and try it
> >
> >
> > Dave
> > - Original Message -
> > From: "Dick Applebaum" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Saturday, February 15, 2003 9:29 PM
> > Subject: Re: uploading progress bar
> >
> >
> >> No I haven't!
> >>
> >> 
> >> Couldn't be happier!
> >> 
> >>
> >> Do you have any URLs?
> >>
> >> TIA
> >>
> >> Dick
> >>
> >> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
> >>
> >>> have you been reading anything about how m$ is freaking on linux
> >>> right
> >>> now?
> >>> looks like a lot of people are moving over to it and lindows.
> >>>
> >>>
> >>> Dave
> >>> - Original Message -
> >>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> >>> To: "CF-Talk" <[EMAIL PROTECTED]>
> >>> Sent: Saturday, February 15, 2003 9:10 PM
> >>> Subject: Re: uploading progress bar
> >>>
> >>>
> >>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
> >>>>
> >>>>> I guess this whole linex deal really has m$ panties in a big bunch
> >>>>>
> >>>>
> >>>> Just what, do you mean by this?
> >>>>
> >>>> Dick
> >>>>
> >>>>
> >>>
> >>
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




Re: uploading progress bar

2003-02-15 Thread Dick Applebaum
No!

i thought you were joaking1

Dick

On Saturday, February 15, 2003, at 06:34  PM, Dave Lyons wrote:

> let me see if i can find them
>
> have you scene lindows yet?
> i might go get it this weekend and try it
>
>
> Dave
> - Original Message -
> From: "Dick Applebaum" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Saturday, February 15, 2003 9:29 PM
> Subject: Re: uploading progress bar
>
>
>> No I haven't!
>>
>> 
>> Couldn't be happier!
>> 
>>
>> Do you have any URLs?
>>
>> TIA
>>
>> Dick
>>
>> On Saturday, February 15, 2003, at 06:14  PM, Dave Lyons wrote:
>>
>>> have you been reading anything about how m$ is freaking on linux  
>>> right
>>> now?
>>> looks like a lot of people are moving over to it and lindows.
>>>
>>>
>>> Dave
>>> - Original Message -
>>> From: "Dick Applebaum" <[EMAIL PROTECTED]>
>>> To: "CF-Talk" <[EMAIL PROTECTED]>
>>> Sent: Saturday, February 15, 2003 9:10 PM
>>> Subject: Re: uploading progress bar
>>>
>>>
>>>> On Saturday, February 15, 2003, at 05:41  PM, Dave Lyons wrote:
>>>>
>>>>> I guess this whole linex deal really has m$ panties in a big bunch
>>>>>
>>>>
>>>> Just what, do you mean by this?
>>>>
>>>> Dick
>>>>
>>>>
>>>
>>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4




  1   2   >