[flexcoders] Re: HTTP component flash support

2009-09-07 Thread yiğit boyar
resources but will be able to use full js force. Anybody has an experience on how to do this ? yigit On Mon, Sep 7, 2009 at 2:41 AM, yiğit boyar ybo...@gmail.com wrote: hi all, we have a rich internet application coded with ajax which also uses flash for some tasks via Flex Ajax Bridge (video

[flexcoders] HTTP component flash support

2009-09-06 Thread yiğit boyar
hi all, we have a rich internet application coded with ajax which also uses flash for some tasks via Flex Ajax Bridge (video socket connection). now we want to develop a desktop version with as little work as possible. I've tried a simple AIR app that includes an html component where location

Re: [flexcoders] Sharing bindable data between mxml files in different project folders

2008-05-30 Thread yiğit boyar
If you want to share data between different files, the best approach is to implement a singleton Model class. On Fri, May 30, 2008 at 1:31 PM, [EMAIL PROTECTED] wrote: Hi All, Could any one help me in how can I share a set of string variables available in my homePage.mxml to be available

[flexcoders] offline installer with runtime

2008-05-11 Thread yiğit boyar
hi all, i've been searching about how to deliver my application with Runtine but there is solution except for writing a windows bat file. (i'll distribute it for windows users) actually never in my life i've written a bat file so if someone did before, can you please provide your bat file which

[flexcoders] reading serial port with AIR / or pipe in linux with AIR application

2008-05-08 Thread yiğit boyar
hi folks, is there a way to read data from serial port ? (RS232 - 9pin cable) I couldn't find any example/API and not very hopeful but Java has it why not AIR? I have an embedded HW and the instructor requires a good looking GUI, so I want to do the GUI with AIR, if I can. From internet searchs,

Re: [flexcoders] reading serial port with AIR / or pipe in linux with AIR application

2008-05-08 Thread yiğit boyar
yes, what came to my mind is that, I will write a java program which will listen the serial port and open a server socket. my AIR application will connect to the java application and get the data using socket. i this way, it will be fast and seamless... thnks. yigit On Thu, May 8, 2008 at 6:39

[flexcoders] my fonts does not show up!

2008-04-21 Thread yiğit boyar
hi folks; i try to embed 3 kind of fonts to my air application. the weird thing is that although the compiler does not give any errors; two of the fonts can not be seen in the application. (e.g. text written with that font is invisible) what might be the problem? the ttf file should be well

Re: [flexcoders] my fonts does not show up!

2008-04-21 Thread yiğit boyar
/ no bolds... any sign of hope? On Mon, Apr 21, 2008 at 6:34 PM, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 21 Apr 2008, yiğit boyar wrote: what might be the problem? Hard to say, as we don't know how your code (trys to) work. Maybe you could give some code samples, as well as details

Re: [flexcoders] Re: problem installing AIR linux, any way to debug install??

2008-04-04 Thread yiğit boyar
300 400 progress 400 400 status Rollback due to error complete error 1· Failed:· - I've put the complete log file here: http://www.birbit.com/airlog.txt any help, suggestion ? what does the installer do during progress 299 ??? On Thu, Apr 3, 2008 at 12:44 AM, yiğit boyar [EMAIL PROTECTED

Re: [flexcoders] Where is adobe? Come to universities!

2008-04-04 Thread yiğit boyar
what i mean is not let flex in our course schedules. I believe a technology should never be offered as a course, at least for undergraduate (cs educationconcepts are much more important) but adobe should do some more to introduce flex to students. Most of them are far from being a geek so they

Re: [flexcoders] Re: problem installing AIR linux, any way to debug install??

2008-04-02 Thread yiğit boyar
will be debug but that will come with the AIR SDK. and during the installtion don't pass any arguments. I can see your passing -h. I didn't pass any... I don't know what -h does so I'm assuming here On Tue, Apr 1, 2008 at 11:25 PM, yiğit boyar [EMAIL PROTECTED] wrote: actually, yes

[flexcoders] Where is adobe? Come to universities!

2008-04-02 Thread yiğit boyar
Yesterday, Microsoft was in my department to present silverlightajax technologies. Although silverlight is currently a bullshit compared to flex, and in my department (METU computer engineering) many people use linux; there were quite many people attending to the seminar. Tomorrow, I'll do give a

Re: [flexcoders] Re: problem installing AIR linux, any way to debug install??

2008-04-02 Thread yiğit boyar
Pardus is debian based and your using KDE ( KWin )... only difference between me and you is I'm not using debian... this is where I got all the info about the requirements http://labs.adobe.com/wiki/index.php/AIR_for_Linux:Release_Notes On Wed, Apr 2, 2008 at 12:50 PM, yiğit boyar [EMAIL

Re: [flexcoders] Re: problem installing AIR linux, any way to debug install??

2008-04-01 Thread yiğit boyar
actually, yes :) no comments? will i have to change my linux ? On Tue, Apr 1, 2008 at 8:14 AM, Jerome Clarke [EMAIL PROTECTED] wrote: I'm assuming you installed it as root? On Tue, Apr 1, 2008 at 3:18 AM, yiğit boyar [EMAIL PROTECTED] wrote: it did not, but i remember checking

[flexcoders] problem installing AIR linux, any way to debug install??

2008-03-31 Thread yiğit boyar
hi all; i'm pretty excited to see AIR is available for linux (read from slashdot); i downloaded the air installer. when i try to run it, it gets roots previliges (ok I have); during installation i get the following error: An error occurred while installing Adobe AIR. Installation may not be

Re: [flexcoders] Re: problem installing AIR linux, any way to debug install??

2008-03-31 Thread yiğit boyar
it did not, but i remember checking with ls -al and the file is executable... (currently i'm not@ linux so i cannot try, but i'm pretty sure that the file is executable) On Tue, Apr 1, 2008 at 4:34 AM, luchi_bustos [EMAIL PROTECTED] wrote: Did you chmod the bin file ?? linux commands

Re: [flexcoders] finding all textareas

2008-02-20 Thread yiğit boyar
you can trace all children with; var obj:Object; for each(obj in this){ if(obj is TextArea){ //than do sth } } but i dont know it has anything to do with the currentState or not On Feb 20, 2008 1:15 PM, Nikolas Hagelstein [EMAIL PROTECTED] wrote: Hi there, is there a way

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-18 Thread yiğit boyar
i tried shared objects but i could not make it work between two applications, any example ? extre thing to do ? On Feb 18, 2008 5:28 PM, Ralf Bokelberg [EMAIL PROTECTED] wrote: Those are your only options. Beside SharedObjects, which is the easiest option i guess. -- Ralf Bokelberg

Re: [flexcoders] My website Project

2008-02-17 Thread yiğit boyar
you need to compile pages with to seperate swf files and use the Loader class to load them. don't include them in the main swf! On Feb 17, 2008 9:17 AM, bornaeon [EMAIL PROTECTED] wrote: Hi all. how do you do? I'm working on my personal website, and that's a full Flex website. I have a

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-15 Thread yiğit boyar
actually it does no work :( i can store value to a cookie vie external interface and read in the other application; but when i try to save xml data, since the way to keep cookies via javascript is really weak, it does not work :( i need to make too many escape character control and to make it

Re: [flexcoders] Re: Accessing objects within objects within objects... ???

2008-01-12 Thread yiğit boyar
tab1_panel.getChildren()[0].myText,text= dsa; if it gives a compile time error; try (tab1_panel.getChildren()[0] as Object).myText,text= dsa; On Jan 12, 2008 7:11 PM, Alger Werft [EMAIL PROTECTED] wrote: Mayby it's due to the creationPolicy. Alger Randy Martin wrote: Post your code.

Re: [flexcoders] Re: how does import statement,work? a possible fb bug

2007-12-04 Thread yiğit boyar
yes; actually what i thought was explicit definitions will be enough.(like in java) more specifically, there are too many VO's in the application (cairngorm). i tried importing every class VO one by one, but it did not solve the problem, i again had to ctrl+space. i made a diff on the

Re: [flexcoders] cairngorm design question, need suggestions

2007-11-19 Thread yiğit boyar
hi Ralf; in our case, we auto-generate the commanders; so we wouldn't need to test these parts. since calling a commander from another one without dispatching a new event does not violate the micro-architecture rules; we will choose it for efficiency; thanks a lot. On Nov 16, 2007 2:09 PM, Ralf

Re: [flexcoders] Re: YouTube style video (Video vs VideoDisplay)

2007-06-04 Thread yiğit boyar
you may want to take a look at this article; streaming video with php http://www.flashcomguru.com/index.cfm/2005/11/2/Streaming-flv-video-via-PHP-take-two On 6/1/07, Rohan Pinto [EMAIL PROTECTED] wrote: Are you looking at displaying a thumbnail in the VideoPlayer itself ? look at Jeron

[flexcoders] videoDisplay.volume not working

2007-05-23 Thread yiğit boyar
hi; i'm setting the volume property of a videoDisplay to 0.0 but when the video is loaded; there comes sound... is this property not working or is there a crack for this (like flex 1.5 useHandCursor crack) or what am i making wrong ? thnks.