[Flashcoders] Flash Games With Joysticks

2007-06-12 Thread vivek
Hi, I was doing a search on how can we play the flash games on TV but didn't got great information. For instance, a simple pacman game which is created in flash, how can we play it with joystick and display on TV? What all things we need to consider making it workable with joysticks and TV

Re: [Flashcoders] RE: Swf not loading at run time

2007-06-12 Thread Muzak
http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_04157&sliceId=1 - Original Message - From: "Kannan Bharadwaj" <[EMAIL PROTECTED]> To: Sent: Tuesday, June 12, 2007 8:42 AM Subject: [Flashcoders] RE: Swf not loading at run time > Dave, > > I have the same issue with html pa

[Flashcoders] Re: XML Photo Changer Button

2007-06-12 Thread José Maria Barros
Can anyone help?THanks On 6/11/07, José Maria Barros <[EMAIL PROTECTED]> wrote: Hi changed the folowing code: //creates the numbered buttons //newButt = attachMovie("butt", "butt"+i, 999+i); //newButt._x = 210+(newButt._width)*pub_count; //

[Flashcoders] setNewTextFormat

2007-06-12 Thread Giles Roadnight
Hi All I have a loop that creates pages, creates textfields then adds text. Some of this text has font tags and some doesn't. I want to use a default textFormat so that an embedded font is used when no http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software

Re: [Flashcoders] setNewTextFormat

2007-06-12 Thread o renken
hey one question...why are you mixing html and TextFormat? i try to use one of both. where did you get the font for each textField from? so you could do it on that way var default_font="arial" var html_font="" if(text_html_font==undefined){ html_font=default_font } currentPage.my_txt.htmlText

Re: [Flashcoders] setNewTextFormat

2007-06-12 Thread Giles Roadnight
Some of the text that is being pulled in from xml will have font tags attached and some won't so I want to se thte default format. I have got round it for now with an if statement so the default format is only set if there is no font tag in the string. However in the case of a string with only p

RE: [Flashcoders] setNewTextFormat

2007-06-12 Thread Danny Kodicek
> Hi All > > I have a loop that creates pages, creates textfields then > adds text. Some of this text has font tags and some doesn't. > I want to use a default textFormat so that an embedded font > is used when no > currentPage.createTextField("my_txt", 1, 5, 5, > currentPage._

[Flashcoders] FLV Streaming causes browser crash when closing a window

2007-06-12 Thread Olaf Schmidtmann
Hi coders, we are currently working on a media player for streaming video playback. The stream comes from a FMS. Our customers are working with Windows and every time they close the popup containing the player the browser crashes badly. We could reproduce this *only* on Windows for IE6, IE7, Fire

Re: [Flashcoders] setNewTextFormat

2007-06-12 Thread Giles Roadnight
Yes, it does seem to be broken. I think I'll just add font tags around text if there are none present. Thansk for the help. On 6/12/07, Danny Kodicek <[EMAIL PROTECTED]> wrote: > Hi All > > I have a loop that creates pages, creates textfields then > adds text. Some of this text has font tags

Re: [Flashcoders] setNewTextFormat

2007-06-12 Thread o renken
no danny. setNewTextFormat means that all NEW text in the textfield will be formed. setTextFormat is only once and not for new text. and if you do some new text via AS setNexTextFormat will work fine.. giles. if i understand you right youll get html-strings from your xml. some of them have a font

Re: [Flashcoders] setNewTextFormat

2007-06-12 Thread Giles Roadnight
That's exactly what I have done: if(this.Model.pages[i].text.indexOf("'; } but the setNEwTextFormat funtion is not working the way it should do. That would be a more elegant solution that the above. On 6/12/07, o renken <[EMAIL PROTECTED]> wrote: no danny. setNewTextForm

Re: [Flashcoders] FLV Streaming causes browser crash when closing a window

2007-06-12 Thread Johannes Nel
its a problem with a netconnection, either when connnecting or innitial buffereing. sucks dunnit. On 6/12/07, Olaf Schmidtmann <[EMAIL PROTECTED]> wrote: Hi coders, we are currently working on a media player for streaming video playback. The stream comes from a FMS. Our customers are working w

RE: [Flashcoders] setNewTextFormat

2007-06-12 Thread Danny Kodicek
> no danny. setNewTextFormat means that all NEW text in the > textfield will be formed. setTextFormat is only once and not > for new text. and if you do some new text via AS > setNexTextFormat will work fine.. Not for me, no. I always have to run setTextFormat after setting with AS, whatever

Re: [Flashcoders] setNewTextFormat

2007-06-12 Thread o renken
why do you need the textFormat if youre using html? you can do all the formating with html. i got curious about that. your textformat will not take effect cause youre setting the textfields htmlText, not its text. seems like format and html are no good friends...different things copy that in the

Re: [Flashcoders] FLV Streaming causes browser crash when closing a window

2007-06-12 Thread Olaf Schmidtmann
Hi Johannes, this is a little bit vague. Could you be a little more precise? Right now we have the impression that it has to do with a stream using port 80. Our streaming server uses the standard port 1935 (rtmp) and in some configurations port 80 (rtmpt). Does anybody have any idea? Cheers Olaf

Re: [Flashcoders] FLV Streaming causes browser crash when closing a window

2007-06-12 Thread Johannes Nel
for me its difficult to determine which port it is on as we open connections on rtmp 1935,443,80 and rtmpt 80 concurrently. it mostly occurs for me when i try to close a browser where none of connections have succeeded (obviously if one succeeds all the others get closed). I have not found a sollu

[Flashcoders] crash when using local shared object

2007-06-12 Thread Hans Wichman
Hi, some of our clients are experiencing a crash when data is saved to a local shared object. It seems to occur under the following circumstances: * the user has not previously allowed the player to save the data so a security box is displayed, asking for more priviliges * the user allows or dis

Re: [Flashcoders] FLV Streaming causes browser crash when closing a window

2007-06-12 Thread Olaf Schmidtmann
Hi Johannes, maybe this is a help for you. We finally found out that the problem does not occur when the stream uses the FMS port 1935. As soon as we use the tunneled protocol (port 80) the browser crashes when closing the window. OS X seems to handle this pretty good but windows does not like it

[Flashcoders] RE: Swf not loading at run time

2007-06-12 Thread dave matthews
hi Kannan, looks like Muzak posted a link to a relevant page from Adobe in this thread, deleted the email or would have included it - try the FlashCoder's archive maybe. The problem of paths in the IDE vs. full paths used on the web for embedded display in an HTML page is an old one. A

Re: [Flashcoders] FLV Streaming causes browser crash when closing a window

2007-06-12 Thread Johannes Nel
i don't have the luxary of knowing over which port or protocol i able to connect. On 6/12/07, Olaf Schmidtmann <[EMAIL PROTECTED]> wrote: Hi Johannes, maybe this is a help for you. We finally found out that the problem does not occur when the stream uses the FMS port 1935. As soon as we use th

[Flashcoders] JOB: Full-time ActionScript Developer Needed For Established E-Gaming Company

2007-06-12 Thread Mark Lapasa
[Position Summary] The Flash Developer will be responsible for integrating unique solutions within our Flash Gaming Suites. The position strongly emphasizes ActionScript programming, from core libraries to interface development. The position will be part of a team of 2-5 flash developers and 2-

[Flashcoders] Mac full screen title bar

2007-06-12 Thread Tony P
Hello all, I have a strange problem with a fullscreen projector (Flash Player 9) on Mac OS X. It works fine normally, but if the user has installed Flash Player 8 then it goes not-quite-fullscreen and displays a title bar for the window. Uninstalling, reinstalling 9 and praying to the tec

[Flashcoders] Contractors and Full-Time needed

2007-06-12 Thread Chris Hill
We are looking for up to 2 of each in either the Phoenix, AZ or Tucson, AZ areas: ActionScript Programmer Flash Production Artist More information about all open positions is at: http://terralever.com/about-us/careers/ We are also looking to make contact with more freelancers (telecommute ok)

[Flashcoders] Gaia Flash Framework Released

2007-06-12 Thread Steven Sacks
http://www.stevensacks.net/ Technology author Steven Sacks today announced the free public release of his Gaia Flash Framework® (gaiaflashframework.com). Gaia (pronounced "guy-uh") is an open-source framework that provides powerful solutions for building Flash websites to designers and develop

[Flashcoders] Cycle through XML nodes

2007-06-12 Thread José Maria Barros
Hi, all..I hope anyone can help me here.. I have two buttons: a next and a previous button. I need to cycle through the XML nodes with that.. Like a photo menu that i press next and the next photo and text loads.. Can anyone give me hints about it? THanks in advance __

Re: [Flashcoders] Cycle through XML nodes

2007-06-12 Thread Bob Wohl
currentImage++ On 6/12/07, José Maria Barros <[EMAIL PROTECTED]> wrote: Hi, all..I hope anyone can help me here.. I have two buttons: a next and a previous button. I need to cycle through the XML nodes with that.. Like a photo menu that i press next and the next photo and text loads.. Can

RE: [Flashcoders] Cycle through XML nodes

2007-06-12 Thread Merrill, Jason
Was it you - or maybe someone else, but this same exact question was just asked recently, and after several responses and the person also being referred to Flashnewbies, the thread ended. I suggest you ask on Flashnewbies or refer back to the previous responses. No offense, but this is pretty

RE: [Flashcoders] Cycle through XML nodes

2007-06-12 Thread Paul Venton
I had thought of posting something similar but in all seriousness this really is pretty basic stuff. Please read some of the Flash documentation, specifically regarding XML - it's all there for the taking. Either that or maybe the FlashNewbies list ... no offence intended. -Original Message-

Re: [Flashcoders] Cycle through XML nodes

2007-06-12 Thread Chris Kelley
after your xml objects load, store references to your them in an array, and then cycle through the array indexes when people click the "next" or "previous" buttons. On 6/12/07, Bob Wohl <[EMAIL PROTECTED]> wrote: currentImage++ On 6/12/07, José Maria Barros <[EMAIL PROTECTED]> wrote: > > Hi,

Re: [Flashcoders] Gaia Flash Framework Released

2007-06-12 Thread Ron Wheeler
Very neat. Nice introductory demo. Ron Steven Sacks wrote: http://www.stevensacks.net/ Technology author Steven Sacks today announced the free public release of his Gaia Flash Framework® (gaiaflashframework.com). Gaia (pronounced "guy-uh") is an open-source framework that provides powerful

[Flashcoders] [JOB] Sr. FLEX Developer, Los Angeles, CA | 120-160k

2007-06-12 Thread Beau Gould
Sr. FLEX Developer, Los Angeles, CA | 120-160k My client is building a social network (think myspace meets youtube meets itunes) for the hip hop community. They are a combination of user generated content and in house productions, original programming. They have built the site entirely in Flex and

Re: [Flashcoders] Cycle through XML nodes

2007-06-12 Thread José Maria Barros
Sorry...didnt know that was a FlashNewbies list..i will subscribe.. On 6/12/07, Paul Venton <[EMAIL PROTECTED]> wrote: I had thought of posting something similar but in all seriousness this really is pretty basic stuff. Please read some of the Flash documentation, specifically regarding XML -

[Flashcoders] flex question(xml based menu)

2007-06-12 Thread Gustavo Duenas
Hi I have this code in as2, but i was wondering how could I do this in flex. myPhoto = new XML(); myPhoto.ignoreWhite = true; myPhoto.onLoad = function(success) { //portfolioTag = this.firstChild; numimages = this.firstChild.childNodes.length; spacing =300;

RE: [Flashcoders] Gaia Flash Framework Released

2007-06-12 Thread Frederic Caron
Hey Steven, Nice job! I was really interested in the fact that you included best practices like SWFObject and SWFaddress, you should have a look through http://www.the-flash-files.com and tell me what you think. Best Regards - Fred -Message d'origine- De : [EMAIL PROTECTED] [mai

Re: [Flashcoders] Gaia Flash Framework Released

2007-06-12 Thread Steven Sacks
Cool! You might be interested in Jason Grunstra's post regarding SEO with Flash: http://labs.blitzagency.com/?p=171 Frederic Caron wrote: Hey Steven, Nice job! I was really interested in the fact that you included best practices like SWFObject and SWFaddress, you should have a look through

RE: [Flashcoders] flex question(xml based menu)

2007-06-12 Thread Merrill, Jason
>>Hi I have this code in as2, but i was wondering how could I >>do this in flex. >>I'm not sure where do I have to put this, it seens easy in >>flash 8 but in flex I need quite a help. Ask the Flex list: http://tech.groups.yahoo.com/group/flexcoders/ Jason Merrill Bank of America GT&O Learn

[Flashcoders] Re: getBytes...() works only local, not online (except when imgs are cached)

2007-06-12 Thread Helios Pregioni Bayma
Hi list, I am facing a problem I can´t solve, and since now, thanks a lot for any help. I am loading images and preloading them...ok, nothing new. For this, I am using loadClip and onLoadProgress to update their bytesLoaded and bytesTotal, so I can preload them perfectly. The amount of images

Re: [Flashcoders] crash when using local shared object

2007-06-12 Thread Muzak
If you haven't done so yet, you might wanna report this: http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform Tried a google search but couldn't find anything useful. regards, Muzak - Original Message - From: "Hans Wichman" <[EMAIL PROTECTED]> To: "Flashcoders mailing list" Sent

Re: [Flashcoders] flex question(xml based menu)

2007-06-12 Thread Muzak
First off all: http://tech.groups.yahoo.com/group/flexcoders/ Second, Flex is a different ballgame. Flex has a number of components/controls/containers available that are not available in Flash. For displaying images, there's the Image component. For displaying a number of thumbnails you could u

[Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread Cristo @ cryzto.ch
Hi everybody I’m working on a multilanguage configurator and want to update every textareas, labels etc. by clicking on one of the available lang-buttons (english, german, spanish ect.). My configurator consists of different movieclips/layers of course. Now I’ve tried to reach this by creat

Re: [Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread eka
hello :) you can use my opensource framework and this extensions with the localization model of ASGard (ext of VEGAS) Page of the Framework project : http://code.google.com/p/vegas/ Install VEGAS and this extensions : http://code.google.com/p/vegas/wiki/InstallVEGASwithSVN Example to use the l

RE: [Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread Jesse Graupmann
You have to initialize the object before you can add listeners; var listener:Object = new Object(); listener.click = function ( evt:Object) { trace("it worked!"); }; var obj:Object = new Object(); mx.events.EventDispatcher.initialize ( obj ); obj.addEventListener( "click", listene

Re: [Flashcoders] flex question(xml based menu)

2007-06-12 Thread Gustavo Duenas
Thanks man I'll do it. Regards On Jun 12, 2007, at 1:58 PM, Merrill, Jason wrote: Hi I have this code in as2, but i was wondering how could I do this in flex. I'm not sure where do I have to put this, it seens easy in flash 8 but in flex I need quite a help. Ask the Flex list: http://tech.

Re: [Flashcoders] Gaia Flash Framework Released

2007-06-12 Thread Glen Pike
Wow, that's a lovely bit of engineering! Now if only my company would stop doing boring sites and get back to some good Flash stuff, but this will certainly help me in my freelance work. Can't wait to delve in further than the scaffolding and look under the hood - Design Patterns + Flash at j

[Flashcoders] Automated test tools?

2007-06-12 Thread Douglas Pearson
Can anyone recommend any good automated test tools for Flash? Thanks, Doug ___ 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

Re: [Flashcoders] Automated test tools?

2007-06-12 Thread Muzak
http://www.asunit.org/ http://www.google.com/search?hl=en&q=flash+unit+testing regards, Muzak - Original Message - From: "Douglas Pearson" <[EMAIL PROTECTED]> To: Sent: Tuesday, June 12, 2007 11:27 PM Subject: [Flashcoders] Automated test tools? > Can anyone recommend any good automa

[Flashcoders] AS1 Events

2007-06-12 Thread Tom Gooding
Hi – I’m interested in finding a way (in AS1) to fire a general event whenever a new textfield appears on stage (be it through createTextfield or the playhead hitting a frame where there is a new textfield). I’m investigating this as part of an attempted workaround for a flash player bug with runn

[Flashcoders] getBytes...() works only local, not online (except when imgs are cached)

2007-06-12 Thread Helios Pregioni Bayma
Hi list, I am facing a problem I can´t solve, and since now, thanks a lot for any help. I am loading images and preloading them...ok, nothing new. For this, I am using loadClip and onLoadProgress to update their bytesLoaded and bytesTotal, so I can preload them perfectly. The amount of images to

Re: [Flashcoders] getBytes...() works only local, not online (except when imgs are cached)

2007-06-12 Thread Muzak
Use the arguments (bytesLoaded, bytesTotal) passed to the onLoadProgress event rather than getting them form the movieclip. Check the docs for MovieClipLoader.onLoadProgress() And there's a whole bunch of other things that you should look into. Nested functions --> avoid them. No need for a seper

[Flashcoders] PeelBack Ad Unit

2007-06-12 Thread Catherine Eng
Hi - Does anyone have any experience with peelback ad units? I've got one that appears correctly in Safari on the mac, and in Firefox on the pc, but in IE on the pc it won't appear at the correct "level" - allowing the layers that it should cover to show through. It seems like it would be a d

[Flashcoders] [JOB] Core Industries seeks Flash Developers (New York City)

2007-06-12 Thread Corey Szopinski
Core Industries is a new interactive firm in Dumbo Brooklyn focused on creating award-wining online projects with a focus on environmentally responsible clients. We are looking for talented and highly motivated Flash Developers to help on a range of website, game, mobile and kiosk projects. Our w

AW: [Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread Cristo @ cryzto.ch
@ eka: thanks but for the moment i just want to understand why my code doesn't work... but I sure will take a look at your OpdenSource-project :-) @ Jesse: Thanx fort he hint, I modified now my code to my needs... it works, only: where's the practical difference between this solution and the solut

RE: [Flashcoders] AS2: Multilanguage-Listener

2007-06-12 Thread Jesse Graupmann
@ Cryzto "where's the practical difference between this solution and the solution where I just tell the Buttons to do what I want" There is nothing I could say that Muzak hasn't already said better and repeatedly. With that, search this list on EventDispatcher, encapsulation, and dirty ass code.

RE: [Flashcoders] Cycle through XML nodes

2007-06-12 Thread Jesse Graupmann
As someone that doesn't read Flash help, will not do a Google search, will never register or participate on a Flash forum, will ask the same question enough times an re: has to be added to the beginning to keep it fresh, will always asks the list before logically thinking through any project, let's

RE: [Flashcoders] Re: getBytes...() works only local, not online (except when imgs are cached)

2007-06-12 Thread Jesse Graupmann
Dear, Dear, re:Dear Helios, When at first you don't succeed, reply to yourself. Ok, so here is something I just stumbled across called PreloadAssetManager - but I haven't used it yet. Probably because although Jack Doyle has been rockn' the 3k range he's still missing the sexy examples like Paperv

[Flashcoders] XML Socket and ASP.NET

2007-06-12 Thread laurent untereiner
I'm searching a solution to make Xml socket connexions with ASP.NET... Is there a way? -- Laurent Untereiner > skype : laurentuntereiner > aim : luntereiner > icq : 294429730 > msn : [EMAIL PROTECTED] > http://www.untereiner.com < mes photos sur fotolia: http://www.fotolia.fr/p/116/pa