Re: [Flashcoders] favourite programming environment

2008-12-29 Thread Omar Fouad
Here is some work around for getting similar functionalities of FlashDevelop on Mac OS X. www.omar-fouad.net On Sat, Sep 27, 2008 at 6:25 PM, eric e. dolecki wrote: > Cosmos? Really? > > On Sat, Sep 27, 2008 at 11:52 AM, Glen Pike >wrote: > > > My Favourite coding environment: > > > > On a trop

[Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
Hi all, I wanted to ask if there is a way to let two AIR applications connect to each other through a home network (the same AIR application running on different computers) by using sockets or any other method. Thanks. -- Omar M. Fouad - www.omar-fouad.net Cellular: (+20) 1011.88.534 Mail: m...

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
Ok but I don't know Java... On Fri, Jan 9, 2009 at 10:43 PM, Weyert de Boer wrote: > If so, the code should be available on Google Code somewhere. > >> Hi all, >> >> I wanted to ask if there is a way to let two AIR applications connect to >> each other through a home network (the same AIR applic

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
...) :) cheers On Fri, Jan 9, 2009 at 11:23 PM, Anthony Pace wrote: > that is mean but funny... What languages do you know? > > > Nate Beck wrote: > >> http://www.amazon.com/Head-First-Java-Kathy-Sierra/dp/0596009208 >> Enjoy! >> >> :) >> >> O

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
t; >> if you want these features... everyone is going to have to bug them... >> >> http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform >> >> Nate Beck wrote: >> >>> http://www.amazon.com/Head-First-Java-Kathy-Sierra/dp/0596009208 >>> En

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
Guys when there are deadlines and a Boss bugging you 24/7 there is no time to pick a book and learn a language definitely different from the language you are being writing for years. I've found another way to share information between two applications by the way. It is not a new way, it is the tra

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
hear Omar! I hate nagging bosses. >> On Fri, Jan 9, 2009 at 3:22 PM, Omar Fouad >> wrote: >> >> >> >>> Guys when there are deadlines and a Boss bugging you 24/7 there is no >>> time >>> to pick a book and learn a language definitely d

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
Weyert, the SQLite file is stored somewhere in a full access shared folder. Each AIR application connects to it, and performs sql statements without any problem, as long as the computer is connected to the same network. Yours On Sat, Jan 10, 2009 at 2:07 AM, Omar Fouad wrote: > Antony I h

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
metimes >> easier said than done. >> >> >> http://www.google.ca/search?hl=en&q=simple+socket+server+in+c%23&btnG=Search&meta= >> >> >> Nate Beck wrote: >> >>> Good to hear Omar! I hate nagging bosses. >>> On Fri, Jan 9, 2009

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
it works > that's cool; yet, what happens when they request or write to the file at the > same time? > I don't see this working with multiple connections trying to write to the > same file at once; considering there is no server handling the threading of > requests to th

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
PS: loved this thread :D On Sat, Jan 10, 2009 at 2:36 AM, Omar Fouad wrote: > Anthony, > > File locking would be an issue i know but there are two ways to connect to > a SQLite file, one is with open() and the other is with openAsync() - > Basically a SQLite file is locked

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
whole > application in C#, just the communication part. > > You AIR client communicates with your c# app installed beside it, the c# > app > communicates with other clients c# app installed, which then passes > messages > to their AIR clients. > > I believe that is what they a

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
Sure. On Sat, Jan 10, 2009 at 3:16 AM, Nate Beck wrote: > That would be really cool Omar. > Be sure to keep us posted! > > On Fri, Jan 9, 2009 at 4:46 PM, Omar Fouad > wrote: > > > Yeah I got it, it is just like bridging them to each other. Good idea I > > know

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-09 Thread Omar Fouad
Well I've beening talking about a similar application in my blog http://omar-fouad.net/blog/?p=95 That is using the SQLite approach... cheers. On Sat, Jan 10, 2009 at 3:58 AM, Omar Fouad wrote: > Sure. > > > On Sat, Jan 10, 2009 at 3:16 AM, Nate Beck wrote: > >>

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-10 Thread Omar Fouad
Yes Pablo, that is an issue that I am being thinking about today. I want to enable user presence detection to the client. I've been thinking to let each client logged to the chat, send it's "id" to a table called ActiveUsers. When the user Closes the Application, the row is deleted. At the same tim

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-10 Thread Omar Fouad
ents with a longer > interval and using a bigger threshold to consider a user disconnected. It's > a trade-off. You'd lose accuracy, but the DD.BB would be less stressed > (consider that each client will be performing these queries). > > > Cheers > Juan Pablo Califan

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-10 Thread Omar Fouad
. > > > > Write delay based on file stamping, with all the clients agreeing to work > > based on the same parameters, is the only way to make this work even > > marginally well in a production environment. > > > > If file has an id and range of time associated to i

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-10 Thread Omar Fouad
ou do, he seems to be backing up your bad method. And >> again... the DB in your scenario is a file on the network being written and >> over written by each client; thus, as I stated, very insecure. >> >> Omar Fouad wrote: >> >>> Yeah Juan I agree with you. &

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-10 Thread Omar Fouad
And why problematic on Macs? On Sun, Jan 11, 2009 at 12:56 AM, Juan Pablo Califano < califa010.flashcod...@gmail.com> wrote: > As far as I know, SQLite uses the OS file locking facilities (which do seem > to be problematic in Macs). Anyway, I'm not saying this is the most robust > possible soluti

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-11 Thread Omar Fouad
Thanks Guys for the Replies... OK I agree with all this, but do you believe I hadn't thought about using an online server and save the headache? As I said before, it is an option that will let the users of an AIR POS application (that also stores and read data in a database shared on the network a

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-11 Thread Omar Fouad
een around for years. > In fact I remember back in 2000 with flash 5 when I was still in my teens > trying out a method just like this and getting it to work with XML; yet, > realizing there were better ways I moved on. > > > Omar Fouad wrote: > >> Thanks Guys for the Re

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-12 Thread Omar Fouad
tions in the Flash > > Player/AIR: no server sockets. Of course, you could write the helper > > applications in any language of your choice. I only would prefer some > > language which can convert to native executables for OSX, Windows and > maybe > > even Linux... > &

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-12 Thread Omar Fouad
Wait a minute I don't get you. It is possible to open the Application's sockets with HaXe? On Mon, Jan 12, 2009 at 6:52 PM, Weyert de Boer wrote: > > Absolutely. I was merely correcting this line: >> >> >>> HaXe will still have the same limitations in the Flash Player/AIR: no >>> server sockets

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-12 Thread Omar Fouad
HaXe and neko I mean On Mon, Jan 12, 2009 at 7:24 PM, Omar Fouad wrote: > Wait a minute I don't get you. It is possible to open the Application's > sockets with HaXe? > > > On Mon, Jan 12, 2009 at 6:52 PM, Weyert de Boer wrote: > >> >> Absol

Re: [Flashcoders] Socket connection between two air applications on the same Network Area

2009-01-13 Thread Omar Fouad
Well I would like you to contribute on the Application project if you don't mind. On Mon, Jan 12, 2009 at 11:19 PM, Ian Thomas wrote: > Screenweaver is Neko. :-) It just happens to host an instance of the > Flash Player, and so can run AS3/SWFs inside itself. > > You can't write a socket server

[Flashcoders] orkut - Invitation to join from Omar Fouad

2009-02-12 Thread Omar Fouad
make sure that the email address at which you received this note is entered into your orkut profile. That way, you'll automatically be connected to all of your friends. This invitation was sent on behalf of Omar Fouad (omarfouad@gmail.com). You can block all orkut users from

[Flashcoders] Printing table receipt with Flex

2009-02-26 Thread Omar Fouad
Hi all,I am working on a POS application in AIR and SQLite, and I am stuck with this little problem. I need to send to a printer, some data from an array and create a table.. in other words, I need to print a receipt. Is there any way to create dinamically a table and fill it with strings and prin

Re: [Flashcoders] Printing table receipt with Flex

2009-02-26 Thread Omar Fouad
inting-in-flash-in-10-simple-steps > > > > > Glen Pike wrote: > >> Omar Fouad wrote: >> >>> Hi all,I am working on a POS application in AIR and SQLite, and I am >>> stuck >>> with this little problem. I need to send to a printer, some

Re: [Flashcoders] Printing table receipt with Flex

2009-02-28 Thread Omar Fouad
m?context=LiveDocs_Parts&file=0334.html > > http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e25.html > > http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9b90204-7d8f.html > > > > > &g

[Flashcoders] Zend AMF Framework Paramaters error

2009-03-21 Thread Omar Fouad
Hello, I've got some trouble with the Zend Framework (AMF) and ActionScript, in sending multiple parameter to a PHP Function. The user loads an image file from the local hard drive using FileReference into the Flash Movie than I take the Image's Bitmap Data, encode it to with JPGEncoder (CoreLib),

[Flashcoders] Re: Zend AMF Framework Paramaters error

2009-03-21 Thread Omar Fouad
No Ideas yet? On Sat, Mar 21, 2009 at 6:50 PM, Omar Fouad wrote: > Hello, > > I've got some trouble with the Zend Framework (AMF) and ActionScript, in > sending multiple parameter to a PHP Function. > The user loads an image file from the local hard drive using FileRefere

Re: [Flashcoders] Zend AMF Framework Paramaters error

2009-03-22 Thread Omar Fouad
s/", ba:ba}; > NC.call("PHPClass.function", Res, params); > > Not sure about the syntax to retrieve those in PHP, as I don't do PHP :) > > // wild guess > function writeJpg($args) { > $args["path"]; > $args["ba"]; > } > >

[Flashcoders] rotationX not working In Flex actionscript Projects

2009-04-11 Thread Omar Fouad
Hi all, Since I switched to Mac now, I am using Flex Builder for my ActionScript Projects, I've got the latest Flex SDK 3.2 (I think that is the latest) and edited the flex_config xml file. I've added the playerglobal swc file to the build path of Flex for Auto Completion and all. Here is the pro

Re: [Flashcoders] rotationX not working In Flex actionscript Projects

2009-04-14 Thread Omar Fouad
gt; By default FlexBuilder compiles to Flash 9, which doesn't have the new 3D > stuff. > > regards, > Muzak > > ----- Original Message - From: "Omar Fouad" > To: "Flash Coders List" > Sent: Saturday, April 11, 2009 10:51 PM > Subject: [Flashco

Re: [Flashcoders] rotationX not working In Flex actionscript Projects

2009-04-14 Thread Omar Fouad
ot; and browse to frameworks/libs/player/10/playerglobal.swc > inside the 3.2 SDK directory and click OK. > > That's probably what FB automatically does when you change the required FP > version :) > > regards, > Muzak > > - Original Message - From: "Omar Foua

[Flashcoders] link bar frustrating question

2009-04-21 Thread Omar Fouad
Hi all, this is a silly problem that, because it is silly, makes me nervous and frustrate at the same time. I've got a class (extends Sprite) that has embedded some MovieClips. Those MCs are actually containing textboxes with the name of the sections. for each MC MC.addEventListener(MouseEvent.R

Re: [Flashcoders] link bar frustrating question

2009-04-21 Thread Omar Fouad
Thanks Dave but No It does not change anything same problem. On Tue, Apr 21, 2009 at 7:38 PM, Dave Watts wrote: > > this is a silly problem that, because it is silly, makes me nervous and > > frustrate at the same time. > > > > I've got a class (extends Sprite) that has embedded some MovieClips.

Re: [Flashcoders] link bar frustrating question

2009-04-22 Thread Omar Fouad
Well, mouseChildren did not help. The only thing it helped was checking whether the e.target is enabled or not in the rollOut handler. According that, I change the color or not. Thanks folks for the replies. On Wed, Apr 22, 2009 at 1:13 PM, Matt S. wrote: > What if the rollOut function looks li

[Flashcoders] AS3 Papervision Question

2009-04-25 Thread Omar Fouad
Hi all, I am wondering if I can create a 3D object in papervision, as a movieClip, and apply it as a material to a Sphere, like, for example some piramids placed on the Sphere. Another thing, If I would let each piramid on the sphere to have a specific click event, in this case I think that each pi

Re: [Flashcoders] AS3 Papervision Question

2009-04-25 Thread Omar Fouad
I havn't tried using a viewpoint as a material, but I think it should work, > performance might be an issue though. > > /Christoffer > > Omar Fouad skrev: > >> Hi all, >> I am wondering if I can create a 3D object in papervision, as a movieClip, >> and app

Re: [Flashcoders] AS3 Loader() stupidity

2009-04-26 Thread Omar Fouad
Try to trace out what's in assets[i].assetPath inside the loop and see what is returning. i also suggest to create the loader variable inside the loop. for (var :uint = 0; i wrote: > - Original Message - From: "Gregory Boland" < > breakfastcof...@gmail.com> > To: "Flash Coders List" > Se

Re: [Flashcoders] AS3 Papervision Question

2009-04-30 Thread Omar Fouad
No one? On Sun, Apr 26, 2009 at 8:49 AM, Omar Fouad wrote: > So there is a way to apply multiple movieClips, or material to a sphere? > > > On Sun, Apr 26, 2009 at 8:41 AM, Christoffer Enedahl < > christof...@enedahl.com> wrote: > >> That site is not using paper

[Flashcoders] Papervision Help

2009-05-23 Thread Omar Fouad
Hi all, I am working on a project where I need to create 6 circles (planes) with different colors. the cirlces are placed one over the other and centered, so when I move the mouse down those they rotate to show something like a piramid. I could just use the native 3d in Flash but my boss needs eac

Re: [Flashcoders] Papervision Help

2009-05-24 Thread Omar Fouad
ing live is only necessary if your object > are going to change enough to make a difference. You might find you > can get away with baking all that into textures and saving your > processing power. > > Ashim > > The Random Lines > My online portfolio > www.therandomlines.com

Re: [Flashcoders] Papervision Help

2009-05-27 Thread Omar Fouad
s - > > join the Bank of America Flash Platform Community > > > > > > > > > > -----Original Message- > > From: flashcoders-boun...@chattyfig.figleaf.com [mailto: > > flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Omar Fouad > > Sent: Sunday,

[Flashcoders] FLVPlaybacl Skin Question

2009-06-08 Thread Omar Fouad
Hello everybody, I skinned the FLVPlayback skin, it works and all but I need to change it's show/hide transition. I've seen video controls that slides from the bottom like youtube etc.. The default for the skin is fade in and fade out even in FullScreen Mode. i don't know if skinning the controls

Re: [Flashcoders] FLVPlaybacl Skin Question

2009-06-09 Thread Omar Fouad
gt; Create an Attractive Flash Video > Player< > http://flash.tutsplus.com/tutorials/screencasts/create-an-attractive-flash-video-player/ > > > Hope that helps. > Sam > @explrCre8 <http://twitter.com/explrCre8> > > > > > > On Mon, Jun 8, 2009 at 3:00 PM, Omar Fouad &

[Flashcoders] SWAddress logical workflow

2009-06-13 Thread Omar Fouad
Hi, I've been involved into a project where the client required the deep linking feature. The project is built with pure AS3 embedding symbols from a SWF library file, ZendAMF php and mysql, Now the question is how can I sync the address with the current state of my flash movie. All I know is that

[Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Omar Fouad
Thanks Gerry this is exactly what i do. But as Matt says there is a problem when i rapidily fire next and previous, things screw up. Another thing, what if i have a section in my movie like a gallery, and i need to add an additional parameter to the address like the photo id to load the image, this

[Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Omar Fouad
g= do something else. > I'm just spit balling but that might be what you have to do. > I don't think I've ever seen any tutorials on how anyone else has > handled that. > > -Gerry > > On Jun 13, 2009, at 12:15 PM, Omar Fouad wrote: > >> Thanks Gerry this

[Flashcoders] Re: SWAddress logical workflow

2009-06-13 Thread Omar Fouad
code to not allow future dates. > -Gerry > > On Jun 13, 2009, at 2:19 PM, Omar Fouad wrote: > >> Well i can do that but i don't use that syntax. i instead do >> /gallery/2. At the end i omit the first forward slash from the address >> value string, i split it to

[Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Omar Fouad
No ideas? On 6/14/09, Omar Fouad wrote: > Well i believe that group 94 are using a different technique to > implement SWFAddress dynamically. Ty also took care of fast > next-previous browsing. What do you think? > > On 6/14/09, Gerry wrote: >> That's strange, you

Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Omar Fouad
Thanks Guys, for the replies I'll see your example Glen. On Tue, Jun 16, 2009 at 11:27 PM, Steven Sacks wrote: > This is exactly how Gaia works. goto() calls setValue on SWFAddress and > the response is dispatched to the framework to handle the navigation. > Interrupts are handled in both loadi

Re: [Flashcoders] Re: SWAddress logical workflow

2009-06-16 Thread Omar Fouad
I almost forgot... what do you mean by interrupting the loading / transition of the site? On Wed, Jun 17, 2009 at 3:56 AM, Omar Fouad wrote: > Thanks Guys, for the replies I'll see your example Glen. > > > On Tue, Jun 16, 2009 at 11:27 PM, Steven Sacks > wrote: > >

[Flashcoders] Video Class Problem

2009-07-15 Thread Omar Fouad
Hello, I'm creating a custom shortcut class to play videos from a playlist. The class uses the Video Class in conjuction with NetConnection and NetStream of course (not using FLVPlayback component) The problem is that I cannot bring the video to FullScreen mode by using: stage.displayState = Sta

Re: [Flashcoders] Video Class Problem

2009-07-15 Thread Omar Fouad
You mean that first I set the stage to full screen than I set the video's width and height to the stage dimensions and switch it on top of the other display objects? On Wed, Jul 15, 2009 at 7:19 PM, allandt bik-elliott (thefieldcomic.com) < alla...@gmail.com> wrote: > ___

Re: [Flashcoders] Video Class Problem

2009-07-16 Thread Omar Fouad
trol > bar height. > > > B. > > On Wed, Jul 15, 2009 at 12:55 PM, Omar Fouad > wrote: > > You mean that first I set the stage to full screen than I set the video's > > width and height to the stage dimensions and switch it on top of the > other >

[Flashcoders] PHP Socket Question

2009-07-22 Thread Omar Fouad
hey, My boss asked me to develop a Cards Game called "Estimation" (I don't know if you heard about it). It is a Cards game similar to spades, where there are tricks, bids, etc. The game is going to be a Facebook application, so it is required a multi-player option (real time). At first I thought I

[Flashcoders] Arabic text loaded from database.

2009-08-19 Thread Omar Fouad
I'm creating an e-Library that consents users to read text from a pdf source and display it into a dynamic TextField in Flash. But I am experiencing a problem which is that RTL languages (in my case it is ARABIC) are not displayed correctly. This is the famous Flash Problem since years I know, but

Re: [Flashcoders] Arabic text loaded from database.

2009-08-23 Thread Omar Fouad
Ok I got it... But I cannot find a good documentation or getting started guide... On Wed, Aug 19, 2009 at 7:47 PM, Cedric Muller wrote: > Hi Omar, > > I did develop a dynamic arabic site using TextLayout Framework > > > It all went well. > > hth,

[Flashcoders] Reading text from PDF files or show PDF pages into Flash Player.

2009-08-25 Thread Omar Fouad
So, I'm creating an e-Library that consents users to read text from a pdf source and display it into a dynamic Text Field in Flash. But I am experiencing a problem which is that RTL languages (in my case it is ARABIC) are not displayed correctly. This is the famous Flash Problem since years I know

Re: [Flashcoders] Reading text from PDF files or show PDF pages into Flash Player.

2009-08-26 Thread Omar Fouad
That is for generating PDFs on the server... On Wed, Aug 26, 2009 at 7:05 AM, juju wrote: > Hi Omar, take a look at AlivePDF. > > http://alivepdf.bytearray.org/ > > HTH, juju > > > On Tue, Aug 25, 2009 at 10:32 PM, Omar Fouad >wrote: > > > So, > > &

[Flashcoders] Flash Projects worklow

2009-12-18 Thread Omar Fouad
Hi all, I've been working with ActionScript 3.0 since 2006 and I used some technique in the last two years. I believed that this way is the best for splitting code from design, but today I asked myself whether this approach is REALLY professional or not. What I do is a create a pure ActionScript p

[Flashcoders] Re: Flash Projects workflow

2009-12-18 Thread Omar Fouad
No one? On Fri, Dec 18, 2009 at 6:03 PM, Omar Fouad wrote: > Hi all, > > I've been working with ActionScript 3.0 since 2006 and I used some > technique in the last two years. I believed that this way is the best for > splitting code from design, but today I asked myself w

Re: [Flashcoders] Re: Flash Projects workflow

2009-12-18 Thread Omar Fouad
at 6:42 PM, Karl DeSaulniers > wrote: > > I am not an expert on classes, but couldn't you have a private var equal >> your public var after it gets initiated? >> >> Karl >> >> >> On Dec 18, 2009, at 3:58 PM, Omar Fouad wrote: >> >&g

Re: [Flashcoders] Flash Projects worklow

2009-12-20 Thread Omar Fouad
's clear > to you and possibly other people if they have to maintain your code :) > > Hope this helps and best wishes for the season. > > Glen > > > Omar Fouad wrote: > >> Hi all, >> >> I've been working with ActionScript 3.0 since 2006 and

[Flashcoders] Caching loaded bitmaps

2009-12-30 Thread Omar Fouad
Hi all, I have some sort of game that requires to load some bitmaps before it starts. I do this by using the Loader class, and shifting from an array of image Links on each time the Event.COMPLETE fires so that the images load one by one. The project is a FLA file (CS4) using document class and so

[Flashcoders] Re: Caching loaded bitmaps

2009-12-30 Thread Omar Fouad
No one? On Wed, Dec 30, 2009 at 10:54 PM, Omar Fouad wrote: > Hi all, > > I have some sort of game that requires to load some bitmaps before it > starts. I do this by using the Loader class, and shifting from an array of > image Links on each time the Event.COMPLETE fires so that

[Flashcoders] FDT and AIR?

2010-01-30 Thread Omar Fouad
Hey guys, I'm using FDT with Eclipse 3.5 on Snow Leopard and I am trying to export an AIR package. I've set everything such as application descriptor xml file, certificate etc. I'm getting a strange error in the console: at least one file is required usage: adt -checkstore SIGNING_OPTIONS adt

[Flashcoders] Re: FDT and AIR?

2010-01-31 Thread Omar Fouad
Nothing yet? On Sat, Jan 30, 2010 at 9:39 PM, Omar Fouad wrote: > Hey guys, > I'm using FDT with Eclipse 3.5 on Snow Leopard and I am trying to export an > AIR package. I've set everything such as application descriptor xml file, > certificate etc. > I'm getting

[Flashcoders] Omar Fouad wants to stay in touch on LinkedIn

2010-05-18 Thread Omar Fouad
LinkedIn Omar Fouad souhaite se connecter à vous sur LinkedIn : -- Marc, I'd like to add you to my professional network on LinkedIn. - Omar Fouad Accepter l'invitation de Omar Fouad http://www.link

[Flashcoders] Getting Pixel color cooridnates

2010-07-07 Thread Omar Fouad
of a given pixel coordinate, but what If I need to get the coordinate of a given pixel color (the opposite)? I would get the position of the user's upper lip and stick a movieclip on it. Any ideas?? Thanks in advance. Omar Fouad. ___ Flashcode

Re: [Flashcoders] Getting Pixel color cooridnates

2010-07-07 Thread Omar Fouad
in your results - we have similar > requirements / wishlist for features that are similar to this, but no time > to do them :( > >Glen > > > On 07/07/2010 09:41, Omar Fouad wrote: > >> Hi, >> I'm working on an application where the user should be able

[Flashcoders] ScrollRect and masking

2010-07-08 Thread Omar Fouad
Hello, I'm working on some project where I have a big container Sprite and based on what I need, I add some ui inside of it. Once I add this ui, and I make sure that everything is there on its place, I align this container sprite to fir in the center of my stage: private var currentModule:Sprite;

Re: [Flashcoders] ScrollRect and masking

2010-07-08 Thread Omar Fouad
Thanks for the reply. I'm already doing that, as the list loads its data upon added to stage On Thu, Jul 8, 2010 at 8:25 PM, Ktu wrote: > you could try positioning it before you add the 'list' to the displayList > of > the container. > > Ktu; > > On Thu,

Re: [Flashcoders] ScrollRect and masking

2010-07-10 Thread Omar Fouad
No one? On Thu, Jul 8, 2010 at 10:34 AM, Omar Fouad wrote: > Thanks for the reply. I'm already doing that, as the list loads its data > upon added to stage > > > On Thu, Jul 8, 2010 at 8:25 PM, Ktu wrote: > >> you could try positioning it before you add the &#

Re: [Flashcoders] ScrollRect and masking

2010-07-12 Thread Omar Fouad
What about extending movieClip and overriding the height property to return the mask height On Mon, Jul 12, 2010 at 12:14 AM, Glen Pike wrote: > currentModule.myMask ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf

Re: [Flashcoders] ScrollRect and masking

2010-07-12 Thread Omar Fouad
Well I will do as Glen suggested, the first option. In my custom class that implements an IModuleConteiner interface, I will add a get fixedHeight():Number function. Thanks everyone for the help On Mon, Jul 12, 2010 at 11:41 AM, Omar Fouad wrote: > What about extending movieClip and overrid

[Flashcoders] fscommand Issue.

2010-12-12 Thread Omar Fouad
ng); // this doesn't work. Am I missing something? Thanks in advance. Cordially. -- Omar Fouad ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] fscommand Issue.

2010-12-12 Thread Omar Fouad
That doesn't work at all :D I already tried it... On Sun, Dec 12, 2010 at 8:55 PM, Henrik Andersson wrote: > Omar Fouad skriver: > > Hello all, >> >> I'm trying to call a function in JavaScript from a SWF file (AS3). >> fscommand("start", "1&

Re: [Flashcoders] fscommand Issue.

2010-12-12 Thread Omar Fouad
Anyone?? On Sun, Dec 12, 2010 at 9:01 PM, Omar Fouad wrote: > That doesn't work at all :D I already tried it... > > > On Sun, Dec 12, 2010 at 8:55 PM, Henrik Andersson > wrote: > >> Omar Fouad skriver: >> >> Hello all, >>> >>> I

[Flashcoders] AttachMovieClip VS addChild

2008-03-15 Thread Omar Fouad
In an AS3 Project I have a MovieClip in the Library which class (identifier) is DataCard. My project fetches data from a database through a PHP File, and retruns data in an Array. Now in this project i wanted to do exactly what I used to do in AS2: for(i = 0; ihttp://www.omarfouad.net This e-ma

Re: [Flashcoders] AttachMovieClip VS addChild

2008-03-15 Thread Omar Fouad
Thanks DUDE!!! The issue was in DC.name = "dataCard" + i; Didn't know the name property. Thanks On Sat, Mar 15, 2008 at 7:46 PM, Rich Shupe <[EMAIL PROTECTED]> wrote: > Your code does what you're asking but I suspect you're having trouble with > the positioning, or something similar. Since DC

[Flashcoders] Writing Custom MovieClip Classes

2008-03-16 Thread Omar Fouad
I have a MovieClip in my project that I put in the library. This MovieClip is used in the application lots of times and I "attach" it on the stage on run time when required like var DC:DataCard = new DataCard(); DC.x = Math.random()*550; DC.y = Math.random()*400; addChild(DC); In the Identifier D

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-16 Thread Omar Fouad
XT_Name:TextField; > >public function DataCard() >{ >super(); >} >public function set label(value:String):void >{ >TXT_Name.text = value; > } > } > > > > > > Omar Fouad wrote: > > I

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-16 Thread Omar Fouad
and by the way nameTF.text = "bla bla" works in the class. It changes the textField text in the DataCard movieClip inside the fla file. But thanks anyways. :D On Sun, Mar 16, 2008 at 9:55 PM, Omar Fouad <[EMAIL PROTECTED]> wrote: > NameTF is the name of the textField in t

[Flashcoders] AS3 Classes and FLA not working together

2008-03-16 Thread Omar Fouad
So, I am trying to do an application in Air with Flash CS3. I can't deny, I am starting to hate AS3! First of all, The document class technique (wich lets you set the name of the starting class in the Document Class Text field) is not working while developing in AIR. It only works in an actionscri

Re: [Flashcoders] AS3 Classes and FLA not working together

2008-03-17 Thread Omar Fouad
Ok fellas... I'll try all this and I'll feedback. Thanks for the help. On Mon, Mar 17, 2008 at 11:00 AM, Kenneth Kawamoto < [EMAIL PROTECTED]> wrote: > Then why don't you extend Sprite??? > > Kenneth Kawamoto > http://www.materiaprima.co.uk/ > > Andrei Thomaz wrote: > > The only problem I had was

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-17 Thread Omar Fouad
u a Bank of America associate interested in innovative learning > ideas and technologies? > Check out our internal GT&O Innovative Learning Blog & subscribe. > > > > > > > >>-Original Message- > >>From: [EMAIL PROTECTED] > >>[mailto:[E

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-17 Thread Omar Fouad
been into AS3 for a long time. :) Thanks for your effort ! On Mon, Mar 17, 2008 at 9:51 PM, Omar Fouad <[EMAIL PROTECTED]> wrote: > Wow.. > > > On Mon, Mar 17, 2008 at 5:08 PM, Merrill, Jason < > [EMAIL PROTECTED]> wrote: > > > > > Try this instead,

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-19 Thread Omar Fouad
n Merrill > Bank of America > GT&O and Risk L&LD Solutions Design & Development > eTools & Multimedia > > Bank of America Flash Platform Developer Community > > > Are you a Bank of America associate interested in innovative learning > ideas and technologie

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-20 Thread Omar Fouad
Man Here is what I wrote. * public* *class* A_window *extends* MovieClip{ *public* static *const* CLOSE:String = *"close"*; *public* *function* A_window() { initListeners(); } *private* *function* initListeners():*void* { *this*.addEventListener(MouseEvent.CLICK, handleListener); } *priva

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-20 Thread Omar Fouad
t resist;) > > On Thu, Mar 20, 2008 at 4:49 PM, Omar Fouad <[EMAIL PROTECTED]> > wrote: > > > Man Here is what I wrote. > > > > * > > > > public* *class* A_window *extends* MovieClip{ > > > > *public* static *const* CLOSE:String = *"c

Re: [Flashcoders] Writing Custom MovieClip Classes

2008-03-21 Thread Omar Fouad
oh yeah I Realized it. THanks for the huge help guys. this list rocks! On Thu, Mar 20, 2008 at 8:36 PM, Merrill, Jason < [EMAIL PROTECTED]> wrote: > >>which is an __ > > typo, I meant to add the word, extension > > "which is an extension (not directly,but further down the chain) of > EventDi

[Flashcoders] Custom MovieClip Classes

2008-03-21 Thread Omar Fouad
List, I have a MovieClip in my Flash Library with Class Name APanel. The class obviously extends MovieClip; Also I have another MovieClip in the library Called RegistrationPanel and It's class also would extend the MovieClip's one. Now I would the like to let RegistrationPanel inherit some beha

Re: [Flashcoders] Custom MovieClip Classes

2008-03-21 Thread Omar Fouad
me or all? > > If you want to inherit all, have RegistrationPanel extend APanel. > > If you want to inherit some, have RegistrationPanel instantiate APanel > and have proxy methods to just the ones you want. > > -Steven > > > Omar Fouad wrote: > > List, >

Re: [Flashcoders] Custom MovieClip Classes

2008-03-22 Thread Omar Fouad
> > > > public class RegistrationPanel extends APanel { > > > > public function RegistrationPanel() { > >trace("RegistrationPanel ::: CONSTRUCTOR"); > > } > > > > } > > } > > > > Linkage properties for &qu

Re: [Flashcoders] Custom MovieClip Classes

2008-03-22 Thread Omar Fouad
Note: I am working with Flash and Document Class. Classes are written in Flex (Actionscript Project). Flash AS Editor Is not that good. On Sat, Mar 22, 2008 at 5:14 PM, Omar Fouad <[EMAIL PROTECTED]> wrote: > Nope. Just Restarted Flash. > > On Sat, Mar 22, 2008 at 4:13 PM, Cor &l

Re: [Flashcoders] Custom MovieClip Classes

2008-03-22 Thread Omar Fouad
Nope. Just Restarted Flash. On Sat, Mar 22, 2008 at 4:13 PM, Cor <[EMAIL PROTECTED]> wrote: > Cleared the cash?? > > -Oorspronkelijk bericht- > Van: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Namens Omar Fouad > Verzonden: zaterdag 22 maart 2008 14:56

Re: [Flashcoders] AS3 Classes and FLA not working together

2008-03-22 Thread Omar Fouad
and this -- Forwarded message -- From: Andrei Thomaz <[EMAIL PROTECTED]> Date: Mon, Mar 17, 2008 at 3:42 PM Subject: Re: [Flashcoders] AS3 Classes and FLA not working together To: [EMAIL PROTECTED] Cc: Flash Coders List Kenneth, you're right, sorry. I had some strange problems a

  1   2   3   4   >