Re: [Flashcoders] 3D engine for dynamic text

2013-01-14 Thread Claudio M. E. Bastos Iorio
I agree with the guys here on considering Away3D as a first choice.
However, let me also include another library, very similar to away3D 
Alternativa regarding specs and benchmarks, but also including a cleaner 3D
asset integration pipeline: Flare3D.

Let me know if you have more questions.

Claudio M. E. Bastos Iorio
http://www.blumersolutions.com
 On Jan 14, 2013 7:47 PM, Beatrix Krümmer-Frau birik...@hotmail.de
wrote:

 Away3D is the right choice, its easy to use and has a TextFiled3D Class.
 Together with a TextExtrusion Class you can make realy nice stuff.

 *Beatrix Kruemmer-Frau*
 Director Actionscripthero.org
 Master of Arts in Designer | Developer | CEH-LPIG

 www.actionscripthero.org | @ASHero_org | @birikini

 Am 14.01.2013 22:50, schrieb Randall Tinfow:

 Know little about 3D for AS3, so I'm struggling to decide where to focus
 my efforts.  What's the recommendation for a library that will build a 3D
 model and animate in realtime from input text?

 Papervision3D
 Away3D
 Sandy3D
 Alternativa3D?

 Hopefully the learning curve will not bury me.

 Thanks,

 Randy Tinfow
 IMAGE PLANT





 __**_
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.**com Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/**mailman/listinfo/flashcodershttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders



 __**_
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.**com Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/**mailman/listinfo/flashcodershttp://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] 3D engine for dynamic text

2013-01-14 Thread Claudio M. E. Bastos Iorio
I've did it.
You have a Flash exporter in Unity. Is not as mature as you would expect,
but it works. 
However, take into account that you'll need to avoid using certain Unity
classes, etc if you target Flash.
Definitely worth it, but also consider the learning curve as well.


Claudio M. E. Bastos Iorio
http://www.blumersolutions.com

-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl
DeSaulniers
Sent: Monday, January 14, 2013 11:51 PM
To: Flash Coders List
Subject: Re: [Flashcoders] 3D engine for dynamic text

Has anyone tried Unity 3D? Do you know if it works with flash.
I have that one and was wanting to try it out, just hadn't yet.
Worth the time or no? There is also Swift 3D which has been updated recently
(I believe).
Swift 3D works with vectors well as far as I could tell.

Best,
Karl

On Jan 14, 2013, at 3:50 PM, Randall Tinfow wrote:

 Know little about 3D for AS3, so I'm struggling to decide where to 
 focus my efforts.  What's the recommendation for a library that will 
 build a 3D model and animate in realtime from input text?

 Papervision3D
 Away3D
 Sandy3D
 Alternativa3D?

 Hopefully the learning curve will not bury me.

 Thanks,

 Randy Tinfow
 IMAGE PLANT





 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Karl DeSaulniers
Design Drumm
http://designdrumm.com

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] avoid red-eye effect library in photographs made in actionscript - possible?

2008-09-09 Thread Claudio M. E. Bastos Iorio
Hi, is possible the subject?
Is there any library/algorithm to avoid the red eye effect in a
photograph made in actionscript? I'm working on AIR, so access to file
system is covered.
If not, has any of you tried some library/solution? Any
help/link/idea is welcome. I'm making my research on this but can't
find anything..

Regards


_
Claudio M. E. Bastos Iorio
http://www.blumer.com.ar


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


RE: [Flashcoders] how to return in this function

2008-01-30 Thread Claudio M. E. Bastos Iorio
Thank you guys, now I have a clearer point of view. Your responses and this
thread http://www.actionscript.org/forums/showthread.php3?t=159167 helped me
a lot. Have a nice day!



Claudio M. E. Bastos Iorio
http://www.blumer.com.ar

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Juan Pablo
Califano
Sent: Tuesday, January 29, 2008 10:37 PM
To: Flash Coders List
Subject: Re: [Flashcoders] how to return in this function

  var mivariable:retornaXML = new retornaXML();
  trace(mivariable.elXML);
  but this trace returns null, since the xml file (I think) is not loaded
  yet.

Yes, that's the problem. In Flash, xml loading is always asynchronous so the

trace line is executed immediately after the previous one, in which you 
created an instance of retornaXML; so the XML object isn't at that point 
loaded and parsed. (It would perhaps be nice to have the option of loading 
synchronously, but I digress...).

So, you'll have to listen to the COMPLETE event dispatched by the URLLoader 
and then access the xml object.

You can wrap your xml and the loading logic in a custom class as you seem to

be doing so far, but if you're just going to load the xml and the read it / 
parse it somewhere else (outside that class), in my humble opinion, the 
wrapper is pointless.

You'll end up re-dispatching the Loader events (all the events you want to 
support; the error events, and the complete event, at least, just in case 
something went wrong, and perhaps the Progress event as well) so your 
external code can handle the different scenarios. By the time you are done 
coding that, you'll find that you have a class that does almost nothing of 
use by itself; it just copies all the functionality that you already had in 
the URLLoader and XML classes out of the box. I did it a couple of times 
when I started to use AS 3.0, but I changed my approach as it didn't make 
much sense to me to have such a class. Having all that logic encapsulated in

the class that actually does something with the xml, on the other hand, 
seems like a good idea to me.

Cheers
Juan Pablo Califano

- Original Message - 
From: Hans Wichman [EMAIL PROTECTED]
To: Flash Coders List flashcoders@chattyfig.figleaf.com
Sent: Tuesday, January 29, 2008 7:30 PM
Subject: Re: [Flashcoders] how to return in this function


 seems like an item for the newbie list tbh:)

 On Tue, Jan 29, 2008 at 8:27 PM, Claudio M. E. Bastos Iorio 
 [EMAIL PROTECTED] wrote:

 Thanks for your answer. But how? Where?. I think that
 ProgressEvent.bytesLoaded, and ProgressEvent.bytesTotal could help. But
 where should I check the status?

 
 Claudio M. E. Bastos Iorio
 http://www.blumer.com.ar

  -Original Message-
 From: [EMAIL PROTECTED] [mailto:
 [EMAIL PROTECTED] On Behalf Of eric e. dolecki
 Sent: Tuesday, January 29, 2008 4:07 PM
 To: Flash Coders List
 Subject: Re: [Flashcoders] how to return in this function

 you could use an event to listen to, to pass the XML out of the class.

 On Jan 29, 2008 1:42 PM, Claudio M. E. Bastos Iorio 
 [EMAIL PROTECTED]
 
 wrote:

  Hi guys, hope you can help me on this one.
 
  I have a class to load an XML file. I'm trying this:
 
 
 
 
  package {
import flash.net.URLRequest;
import flash.net.URLLoader;
import flash.events.*;
public class retornaXML{
   private var _xml:XML;
   public function retornaXML() {
  cargarXML();
   }
 
   private function cargarXML():void {
  var loader:URLLoader = new URLLoader();
  loader.addEventListener(Event.COMPLETE, xmlLoaded);
  loader.load(new URLRequest(LocalData.xml));
   }
   private function xmlLoaded(e:Event):void {
  _xml = new XML(e.target.data);
  trace(_xml);
  //THE TRACE HERE WORKS PERFECT AND RETURNS THE XML
 
   }
   public function get elXML():XML {
  return _xml;
  //THIS RETURNS null
   }
 
}
  }
 
 
 
  I want something like this:
 
 
 
  var mivariable:retornaXML = new retornaXML();
  trace(mivariable.elXML);
 
 
 
  but this trace returns null, since the xml file (I think) is not loaded
  yet.
  What should I do?
 
 
 
  Thanks in advance.
 
  
 
  Claudio M. E. Bastos Iorio
 
   http://www.blumer.com.ar/ http://www.blumer.com.ar
 
 
 
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

RE: [Flashcoders] how to return in this function

2008-01-29 Thread Claudio M. E. Bastos Iorio
Thanks for your answer. But how? Where?. I think that 
ProgressEvent.bytesLoaded, and ProgressEvent.bytesTotal could help. But where 
should I check the status? 


Claudio M. E. Bastos Iorio
http://www.blumer.com.ar

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of eric e. dolecki
Sent: Tuesday, January 29, 2008 4:07 PM
To: Flash Coders List
Subject: Re: [Flashcoders] how to return in this function

you could use an event to listen to, to pass the XML out of the class.

On Jan 29, 2008 1:42 PM, Claudio M. E. Bastos Iorio [EMAIL PROTECTED]
wrote:

 Hi guys, hope you can help me on this one.

 I have a class to load an XML file. I'm trying this:




 package {
   import flash.net.URLRequest;
   import flash.net.URLLoader;
   import flash.events.*;
   public class retornaXML{
  private var _xml:XML;
  public function retornaXML() {
 cargarXML();
  }

  private function cargarXML():void {
 var loader:URLLoader = new URLLoader();
 loader.addEventListener(Event.COMPLETE, xmlLoaded);
 loader.load(new URLRequest(LocalData.xml));
  }
  private function xmlLoaded(e:Event):void {
 _xml = new XML(e.target.data);
 trace(_xml);
 //THE TRACE HERE WORKS PERFECT AND RETURNS THE XML

  }
  public function get elXML():XML {
 return _xml;
 //THIS RETURNS null
  }

   }
 }



 I want something like this:



 var mivariable:retornaXML = new retornaXML();
 trace(mivariable.elXML);



 but this trace returns null, since the xml file (I think) is not loaded
 yet.
 What should I do?



 Thanks in advance.

 

 Claudio M. E. Bastos Iorio

  http://www.blumer.com.ar/ http://www.blumer.com.ar



 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] how to return in this function

2008-01-29 Thread Claudio M. E. Bastos Iorio
Hi guys, hope you can help me on this one.

I have a class to load an XML file. I'm trying this:

 


package {
   import flash.net.URLRequest;
   import flash.net.URLLoader;
   import flash.events.*;
   public class retornaXML{
  private var _xml:XML;
  public function retornaXML() {
 cargarXML();
  }
  
  private function cargarXML():void {
 var loader:URLLoader = new URLLoader();
 loader.addEventListener(Event.COMPLETE, xmlLoaded);
 loader.load(new URLRequest(LocalData.xml));
  }
  private function xmlLoaded(e:Event):void {
 _xml = new XML(e.target.data);
 trace(_xml);
//THE TRACE HERE WORKS PERFECT AND RETURNS THE XML 

  }
  public function get elXML():XML {
 return _xml;
//THIS RETURNS null
  }
 
   }
}

 

I want something like this: 

 

var mivariable:retornaXML = new retornaXML();
trace(mivariable.elXML);

 

but this trace returns null, since the xml file (I think) is not loaded yet.
What should I do?

 

Thanks in advance.



Claudio M. E. Bastos Iorio

 http://www.blumer.com.ar/ http://www.blumer.com.ar

 

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] FLASH CMS

2007-09-09 Thread Claudio M. E. Bastos Iorio
I'm currently doing some research on flash CMS. The idea is to build my own
using Flash CS3. The backend will be ASP.NET(C#) and MSSQL.

 

. I have many questions, the first one is: what do you think is the
best approach? For example, suppose I need to edit some text (content) and
properties (bold). So, this text, once edited, will be a html string like
'bthis text in bold/'. Should I store this value in a database or XML
file associated with some 'template file'  OR does flash allow me to
create/generate a movie file (lets say 'movie_bold_text.swf') as a result?

. Is any CMS out there (preferably open source) that I should see?

 

I hope you guys could point me to any URL that you consider, tutorials, AS3
classes to see. TIA.   

 

 

__

Claudio M. E. Bastos Iorio

 http://www.blumer.com.ar/ http://www.blumer.com.ar

 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] FLASH CMS

2007-09-09 Thread Claudio M. E. Bastos Iorio
Thanks for your response!
As I see, Lenya and OpenCMS are both 'html' CMS. 
Now what I'm trying to do is flash based CMS. For example: Start CMS, select
a template or start with a blank. Drag a textbox to stage, edit content,
edit styles. Drag a picturebox to stage, set url image or upload the file.
Insert an external movie file, drag the movie to a desired position. Save.
And then, generates/writes swf file (possible?) or generate a template-like
swf file linked to a file (XML - database) with information about content
(images, movies, text, coordinates). Later, re-login and edit the contents
or add 'user restrictions to page' module, whatever.

What do you think?   

__
Claudio M. E. Bastos Iorio
http://www.blumer.com.ar

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ron Wheeler
Sent: Sunday, September 09, 2007 1:36 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] FLASH CMS

OpenCMs and Lenya


Claudio M. E. Bastos Iorio wrote:
 I'm currently doing some research on flash CMS. The idea is to build my
own
 using Flash CS3. The backend will be ASP.NET(C#) and MSSQL.

  

 . I have many questions, the first one is: what do you think is
the
 best approach? For example, suppose I need to edit some text (content) and
 properties (bold). So, this text, once edited, will be a html string like
 'bthis text in bold/'. Should I store this value in a database or XML
 file associated with some 'template file'  OR does flash allow me to
 create/generate a movie file (lets say 'movie_bold_text.swf') as a result?

 . Is any CMS out there (preferably open source) that I should see?

  

 I hope you guys could point me to any URL that you consider, tutorials,
AS3
 classes to see. TIA.   

  

  

 __

 Claudio M. E. Bastos Iorio

  http://www.blumer.com.ar/ http://www.blumer.com.ar

  

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com


   
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] FLASH CMS

2007-09-09 Thread Claudio M. E. Bastos Iorio
Yes, you're right. You can find it here http://flashblocks.com/ . That's
exactly what I'm trying to do. I didn't find a trial version on site :( .  
http://www.10cms.com/ looks fine, but I don't think the project is active,
since website says that trial registration are full and there's no price.
Thanks to all of you reading this and specially anyone who could contribute.
At this part, this is more a 'thinking out loud' and research, and all
links, ideas from you guys help me a lot.
I've found a .NET library that creates swf files. This could be the solution
to 'save' the created files. So, I still need the GUI (in flash). But at
this point I'm wondering if there is something more 'consistent', maybe
using new adobe AIR? Can I create/write swf files in AIR?

TIA 

__
Claudio M. E. Bastos Iorio
http://www.blumer.com.ar

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Glen Pike
Sent: Sunday, September 09, 2007 3:05 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] FLASH CMS

FlashBlocks is an example of this - don't know the URL - but it is not 
Open Source...


Claudio M. E. Bastos Iorio wrote:
 Thanks for your response!
 As I see, Lenya and OpenCMS are both 'html' CMS. 
 Now what I'm trying to do is flash based CMS. For example: Start CMS,
select
 a template or start with a blank. Drag a textbox to stage, edit content,
 edit styles. Drag a picturebox to stage, set url image or upload the file.
 Insert an external movie file, drag the movie to a desired position. Save.
 And then, generates/writes swf file (possible?) or generate a
template-like
 swf file linked to a file (XML - database) with information about content
 (images, movies, text, coordinates). Later, re-login and edit the contents
 or add 'user restrictions to page' module, whatever.

 What do you think?   

 __
 Claudio M. E. Bastos Iorio
 http://www.blumer.com.ar

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Ron
Wheeler
 Sent: Sunday, September 09, 2007 1:36 PM
 To: flashcoders@chattyfig.figleaf.com
 Subject: Re: [Flashcoders] FLASH CMS

 OpenCMs and Lenya


 Claudio M. E. Bastos Iorio wrote:
   
 I'm currently doing some research on flash CMS. The idea is to build my
 
 own
   
 using Flash CS3. The backend will be ASP.NET(C#) and MSSQL.

  

 . I have many questions, the first one is: what do you think is
 
 the
   
 best approach? For example, suppose I need to edit some text (content)
and
 properties (bold). So, this text, once edited, will be a html string like
 'bthis text in bold/'. Should I store this value in a database or XML
 file associated with some 'template file'  OR does flash allow me to
 create/generate a movie file (lets say 'movie_bold_text.swf') as a
result?

 . Is any CMS out there (preferably open source) that I should
see?

  

 I hope you guys could point me to any URL that you consider, tutorials,
 
 AS3
   
 classes to see. TIA.   

  

  

 __

 Claudio M. E. Bastos Iorio

  http://www.blumer.com.ar/ http://www.blumer.com.ar

  

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com


   
 
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com


   
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Flash + ASP / LoadVariables

2007-05-22 Thread Claudio M. E. Bastos Iorio
I hope you guys could help me on this one. Flash 8, AS2, ASP3.
I have a simple flash form, content form textboxes should be loaded in an
asp file. The ASP part is working fine. But flash don't.
I have this action in the submit form:
on (release) {
loadVariables(Load.asp, 0, POST);
} 

But it doesn't work. It seems that values aren't passed to ASP.
Any help/idea? 
What is the right way to achieve this task in AS3?

TIA


Claudio M. E. Bastos Iorio
http://www.blumer.com.ar


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] String to array

2007-04-12 Thread Claudio M. E. Bastos Iorio
Sorry for the question, I found some examples on google but I still cannot
figure out what's worng with my code. I hope you guys can help me.

My original array was:
var mm_array:Array = [Corporate, Fund of Funds,  Single Manager Funds,
Perfomance, Client Services];

Now I want to load those values from an .asp file. My asp returns a string
like:
mivariable=Corporate, Fund of Funds, Single Manager Funds, Perfomance,
Client Services

So, Im trying this:
loadVariablesNum(FlashMenuLoader.asp, 0, GET);

var mm_array = mivariable.split(,);


But I'm getting an undefined value. What's wrong?

Thanks in advance.

___
Claudio M. E. Bastos Iorio 
http://www.blumer.com.ar 

___
[EMAIL PROTECTED]
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] OT - Installing PHP, MySQL?

2007-03-23 Thread Claudio M. E. Bastos Iorio
You should use xampp installer only for developing. Is not really secure in
production stage.

___
Claudio M. E. Bastos Iorio 
http://www.13bit.com.ar
MSN:[EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Latcho
Sent: Thursday, March 22, 2007 6:27 PM
To: flashcoders@chattyfig.figleaf.com
Subject: Re: [Flashcoders] OT - Installing PHP, MySQL?

http://www.apachefriends.org/en/xampp.html

Dave Mennenoh wrote:
 Anyone have any experience in this area? We're developing a Flash site 
 for a new client, who keeps all their own web servers in-house. They 
 are MS house using .net and such. They are setting up a new server 
 just for their new site, and since they are not familiar with PHP or 
 MySQL (which is what we develop with) they are asking us to install 
 them. They will give us remote access to the server...

 How hard / not-hard is it to install PHP and MySQL on a remote server? 
 Anything to be weary of? Is it something I should just skip attempting 
 and hire an IT guy to do it?


 Dave -
 Head Developer
 www.blurredistinction.com
 Adobe Community Expert
 http://www.adobe.com/communities/experts/
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training 
 http://www.figleaf.com http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] Read a website in a projector file

2007-02-23 Thread Claudio M. E. Bastos Iorio
Is there any form that I could read a webpage in a projector flash file?
I tried this in a textarea control:

mytextarea.text = getURL(http://www.somesite.com;, _self);

But a security message pop ups.
The idea is distribute a file that browse only www.somesite.com. Any other
idea? Thanks in advance.


___
Claudio M. E. Bastos Iorio 
http://www.13bit.com.ar
MSN:[EMAIL PROTECTED]
Icq:24094716

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] File upload in flash

2007-01-30 Thread Claudio M. E. Bastos Iorio
Hi guys, I hope you can help me on this.
I need to add an upload file control inside a flash form, like the one in
html. I'm working with php and MySql in the backend. But I don't really know
how to add such a feature in flash.  Any help/links examples will be much
appreciated. 


___
Claudio M. E. Bastos Iorio 
http://www.13bit.com.ar
MSN:[EMAIL PROTECTED]
Icq:24094716

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] File upload in flash

2007-01-30 Thread Claudio M. E. Bastos Iorio
Thanks for your help Petro and Henry!
This class is for AS3 on Flex2, right?
I'm working with Flash 8 and AS2. The loader class that I found in AS2 seems
to allow me retrieve content from a remote location and pull it into a
Flash application (from help) Is the same class?.
And Henry, yes, I need to save the file in the server.
Looking for Filereference class I found this link:
http://www.flash-db.com/Tutorials/upload/upFiles.php . I think that's what I
needed. Thanks for your help!


___
Claudio M. E. Bastos Iorio 
http://www.13bit.com.ar
MSN:[EMAIL PROTECTED]
Icq:24094716

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Petro Bochan
Sent: Tuesday, January 30, 2007 8:09 AM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] File upload in flash

Claudio M. E. Bastos Iorio
 Hi guys, I hope you can help me on this.
 I need to add an upload file control inside a flash form, like the
one
 in
 html. I'm working with php and MySql in the backend. But I don't
really
 know
 how to add such a feature in flash.  Any help/links examples will be
much
 appreciated.

Hi Claudio,

Check out the Loader class @
http://livedocs.macromedia.com/flex/2/langref/index.html, this will give all
the info that you need.

Cheers,
Petro

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com