RE: [Flashcoders] AS3 shop

2008-07-23 Thread Romuald Quantin
Hi guys, strictly no hint for that? :/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Romuald Quantin Sent: 22 July 2008 09:38 To: Flashcoders@chattyfig.figleaf.com Subject: [Flashcoders] AS3 shop Hi everyone, Do you know some solid flash cart /

Re: [Flashcoders] AS3 shop

2008-07-23 Thread allandt bik-elliott (thefieldcomic.com)
i worked with a back-end guy to produce a solution that all worked on xml produced by php with a mysql database. He built an app that would allow the client to do stock checking, product updates and that kind of thing and I built the front end for it by grabbing his xml files. I haven't seen any

[Flashcoders] fonts and stylesheets in AS3

2008-07-23 Thread Geografiek
Hi list, I try to format a font in a TextField with the following code: //@@ instantiate verdanaBold //@@ in the lib exists a font symbol 'verdanaBold' exported for AS var myVerdanaBold:Font = new verdanaBold(); //@@ define styleSheet var mySs1:StyleSheet = new

[Flashcoders] Release camera driver...

2008-07-23 Thread Gorka Guridi
Hi all, When you use Camera.get() and other app is using the webcam, flash is not able to access it. In the same way, when flash is using a webcam and other app try to access it, it's impossible for it to do that. There is a way in flash to release this camera access in order to allow other apps

[Flashcoders] flex 3 // Tile Component // Mutliple Drag Selection

2008-07-23 Thread artur
is something like this possible in Flex 3? http://www.design2dev.com/dragSelect.jpg http://www.design2dev.com/dragSelect.jpg -- im not talking about the ability to drag around multiple tiles. im looking to select multiple tiles via clickdrag. while at the same time generating a selection box

Re: [Flashcoders] flex 3 // Tile Component // Mutliple Drag Selection

2008-07-23 Thread Ashim D'Silva
A selection box should not be a problem at all: remember the coords when MouseDown and then scale the box on MouseMove. Actually making the selection I'd guess would require some basic form of collision detection with bounding boxes. Rough guesses, maybe there's a more efficient way? Ashim

RE: [Flashcoders] flex 3 // Tile Component // Mutliple Drag Selection

2008-07-23 Thread Merrill, Jason
There may not be a native Flex component that could do it, but you could do it with Actionscript 3, therefore you could do it in Flex. Jason Merrill Bank of America Enterprise Technology Global Risk LLD Instructional Technology Media Join the Bank of America Flash Platform Developer

[Flashcoders] You cannot debug this SWF because it does not contain any Actionscript

2008-07-23 Thread Joe Cutting
I've suddenly started having a very serious problem with a large project I'm working on in Flash CS3 (Flash 9- AS3) When I go to test movie the project compiles ok but ignores all the Actionscript in the file When I try debug it comes up with You cannot debug this SWF because it does not

Re: [Flashcoders] SOLVED++: fonts and stylesheets in AS3

2008-07-23 Thread Geografiek
Hi, I solved my problem (and some more, see below) The wrong line in my code appeared to be: heading.font = myVerdanaBold.fontName; I changed it in: heading.fontFamily = myVerdanaBold.fontName; and al was well. The the exact phrase 'fontFamily' is crucial here (but it doesn't appear as a key

Re: [Flashcoders] flex 3 // Tile Component // Mutliple Drag Selection

2008-07-23 Thread artur
would it be possible to Extend the Tile Component? instead of making a new one from scratch? *artur :.* - *www.artur.com* - [EMAIL PROTECTED] - *ph:646.797.3320* Merrill, Jason wrote: There may not be a native Flex component that could do it, but you could do it with Actionscript 3,

Re: [Flashcoders] flex 3 // Tile Component // Mutliple Drag Selection

2008-07-23 Thread Jon Bradley
On Jul 23, 2008, at 12:39 PM, artur wrote: would it be possible to Extend the Tile Component? instead of making a new one from scratch? Here's how I'd do it... Add a child to the container that's holding the TileList component. On click (mouse event), start drawing a rectangle (mouse move

Re: [Flashcoders] You cannot debug this SWF because it does not contain any Actionscript

2008-07-23 Thread Steven Sacks
Welcome to the seedy underbelly of Flash development. What you've got here is the case of a corrupted library item. It happens sometimes and there's only one thing you can do about it. Not too long ago, my team inherited a Flash 8 file with a corrupted library item that was so terribly

Re: [Flashcoders] Release camera driver...

2008-07-23 Thread Steven Sacks
Now why would Adobe do that? Why would they want to play nice with others? Give you, the developer, an option to release the camera or microphone? That just makes too much sense, like being able to unload swfs in AS3. And be aware that while Adobe might have this stopAndUnload() method

Re: [Flashcoders] Release camera driver...

2008-07-23 Thread Steven Sacks
And when I mean you cannot get rid of a connection to either one, what I mean is if you load a swf that opens a connection to Camera or Microphone, YOU CAN NEVER UNLOAD IT, even with stopAndUnload(). ___ Flashcoders mailing list

RE: [Flashcoders] You cannot debug this SWF because it does not contain any Actionscript

2008-07-23 Thread Patrick Matte | BLITZ
I've had that problem also when one item was missing from the library. This can happen when you use a class from an fla into another fla and that class is referencing a library item in the other fla but you forgot to copy that item in your new fla's library. BLITZ | Patrick Matte -

Re: [Flashcoders] AS3 shop

2008-07-23 Thread Steven Sacks
Is you or ain't you a developer? If you know AS3, and you found an AS2 solution, why don't you port it to AS3? If you're making an online shop though, might I recommend Flex, which has lots of great libraries available for e-commerce. Here's a bonus - it's AS3! :)

[Flashcoders] flash project with Ecard component

2008-07-23 Thread info
Hi, just begining a project which has an ecard component to it. the user choses an ecard and sends it with a personalized message the recepient receives a custom url with the message. I was curious if anyone had done something similar or any ideas on how to go about this? I'm having trouble

Re: [Flashcoders] You cannot debug this SWF because it does not contain any Actionscript

2008-07-23 Thread Helmut Granda
The question now is, how do files in the library can become so corrupted? This would help to avoid it I hope. On Wed, Jul 23, 2008 at 1:31 PM, Steven Sacks [EMAIL PROTECTED] wrote: Welcome to the seedy underbelly of Flash development. What you've got here is the case of a corrupted library

Re: [Flashcoders] AS3 shop

2008-07-23 Thread Helmut Granda
You still the back end programming for interacting with the database to store inventory, passwords, information and such (PHP, ASP, CF..) or can you connect directly with Flex? On Wed, Jul 23, 2008 at 1:48 PM, Steven Sacks [EMAIL PROTECTED] wrote: Is you or ain't you a developer? If you know

Re: [Flashcoders] flash project with Ecard component

2008-07-23 Thread Helmut Granda
Your friend is correct, you can encode the message in the URL but what is the final objective of this project. You mention that you are working on a project that has an ecard commponent. So do you mean that you already have a component that you are plugin in or that you have to develop a component

Re: [Flashcoders] You cannot debug this SWF because it does not contain any Actionscript

2008-07-23 Thread Steven Sacks
Helmut Granda wrote: The question now is, how do files in the library can become so corrupted? This would help to avoid it I hope. Because Flash, like a lot of software, ain't perfect. There's no reliable way to make an image get corrupted. Sometimes, the corruption is simple, like it says

RE: [Flashcoders] AS3 shop

2008-07-23 Thread Dave Watts
You still the back end programming for interacting with the database to store inventory, passwords, information and such (PHP, ASP, CF..) or can you connect directly with Flex? No, you can't connect directly with Flex. You still need an application server which can act as an intermediary

[Flashcoders] stop microphone echos

2008-07-23 Thread laurent
Hi! Anyone knows how to stop the beautifull echo made from outcoming sound of the microphone ? It start when flash is done with the properties board for microphone detection. We need to have sound recorded but no sound outusing a headphone can't be the only solution. thx L