Ask a Question related to Macromedia Flash, Design and Development.
-
Matt McKay #1
output variable to txt file
I made a flash program that finds prime numbers.
These prime numbers are put into a string which gets longer and longer
vPrimeString = vPrimeString + " " + vNewPrime;
Anyway, I would like to output this to a TXT file...
Can someone help? I haven't had any luck finding references to this online,
but the help files say that it can be done (mind you, not saying *HOW* to do
it)
Thanks
Matt McKay Guest
-
dynamic variable name and output problem
Hey all, I having trouble with dynamically naming a variable and then outputting the value. If I hard code the output blick below to #scoreAvg#, it... -
cfquery output duplicatig a cfset variable
I am experiencing a weird duplication of a cfset variable that I am trying to use in a form as a hidden input element. I am dynamically building a... -
Help with dynamic output using Form.variable
Well here is my situation: Survey answers insert into access db. Working fine. Viewing the results: I have a form that you can choose by who... -
variable to control image area output...
Hi, http://www.bondistudios.com/test5.cfm?thispage=1 and http://www.bondistudios.com/test5.cfm?thispage=2 are the reference pages for this... -
Can't output a variable to HTML
I have this code on a page: <p class="appTitle"> <?php echo "$appTitle"; ?> </p> But the resulting HTML is: <p class="appTitle"> </p> -
Javier Cerdas #2
Re: output variable to txt file
Someone correct me if I'm wrong, but I think you can use SharedObject
to create a "cookie" on the user's local machine to store this data.
But if they find the file and delete it, or simply disable Flash's
player SharedObject capability then it's no good.
If you are talking about saving it on the server side, I would use
something like a PHP script to write the file for you.
Javi
On Fri, 24 Oct 2003 16:44:54 GMT, "Matt McKay" <someone@microsoft.com>
wrote:
>I made a flash program that finds prime numbers.
>These prime numbers are put into a string which gets longer and longer
>
>vPrimeString = vPrimeString + " " + vNewPrime;
>
>Anyway, I would like to output this to a TXT file...
>Can someone help? I haven't had any luck finding references to this online,
>but the help files say that it can be done (mind you, not saying *HOW* to do
>it)
>
>Thanks
>Javier Cerdas Guest
-
Matt McKay #3
Re: output variable to txt file
No, it's not going to be on the web...
It's just going to be a standalone file on my computer, that I wrote in
flash, that generates prime numbers.
All I want is to output the variables to a txt file.
"Javier Cerdas" <jdc@mdtsoft.com> wrote in message
news:ignipv8al46h0nj04ddevj9lv78t6cri4l@4ax.com...online,> Someone correct me if I'm wrong, but I think you can use SharedObject
> to create a "cookie" on the user's local machine to store this data.
> But if they find the file and delete it, or simply disable Flash's
> player SharedObject capability then it's no good.
>
> If you are talking about saving it on the server side, I would use
> something like a PHP script to write the file for you.
>
> Javi
>
> On Fri, 24 Oct 2003 16:44:54 GMT, "Matt McKay" <someone@microsoft.com>
> wrote:
>> >I made a flash program that finds prime numbers.
> >These prime numbers are put into a string which gets longer and longer
> >
> >vPrimeString = vPrimeString + " " + vNewPrime;
> >
> >Anyway, I would like to output this to a TXT file...
> >Can someone help? I haven't had any luck finding references to thisdo> >but the help files say that it can be done (mind you, not saying *HOW* to>> >it)
> >
> >Thanks
> >
Matt McKay Guest
-
Ciaran #4
Re: output variable to txt file
Use a real programming language to calculate prime numbers, or just write
them down when you get tired of looking at your results.
If you want the collection so far, and want to contribute your cpu cycles,
just check the web.
The last thing anybody wants is files with prime numbers in them on their
local disk.
Ciaran
"Matt McKay" <someone@microsoft.com> wrote in message
news:QWkmb.164118$bo1.71557@news-server.bigpond.net.au...to> No, it's not going to be on the web...
> It's just going to be a standalone file on my computer, that I wrote in
> flash, that generates prime numbers.
> All I want is to output the variables to a txt file.
>
> "Javier Cerdas" <jdc@mdtsoft.com> wrote in message
> news:ignipv8al46h0nj04ddevj9lv78t6cri4l@4ax.com...> online,> > Someone correct me if I'm wrong, but I think you can use SharedObject
> > to create a "cookie" on the user's local machine to store this data.
> > But if they find the file and delete it, or simply disable Flash's
> > player SharedObject capability then it's no good.
> >
> > If you are talking about saving it on the server side, I would use
> > something like a PHP script to write the file for you.
> >
> > Javi
> >
> > On Fri, 24 Oct 2003 16:44:54 GMT, "Matt McKay" <someone@microsoft.com>
> > wrote:
> >> > >I made a flash program that finds prime numbers.
> > >These prime numbers are put into a string which gets longer and longer
> > >
> > >vPrimeString = vPrimeString + " " + vNewPrime;
> > >
> > >Anyway, I would like to output this to a TXT file...
> > >Can someone help? I haven't had any luck finding references to this> > >but the help files say that it can be done (mind you, not saying *HOW*> do>> >> > >it)
> > >
> > >Thanks
> > >
>
Ciaran Guest



Reply With Quote

