ANT task for compiling flex-sdk is not working

2019-07-15 Thread Ramazan Ergüder Bekrek
Greetings! The compilation of the SDK is not working with the current settings although the folders and files are all there: env.PLAYERGLOBAL_HOME=G:\\programming\\sdks\\air31\\frameworks\\libs\\player env.AIR_HOME=G:\\programming\\sdks\\air31 env.FLASHPLAYER_DEBUGGER=C:\\Program Files\\Adobe\

Re: ANT task for compiling flex-sdk is not working

2019-07-15 Thread Ramazan Ergüder Bekrek
\ar.rahman\eclipse-workspace\apache-flex\modules\downloads.xml:283: java.nio.file.InvalidPathException: Illegal char <*> at index 78: C:\Users\ar.rahman\eclipse-workspace\apache-flex\modules\thirdparty\batik\lib\** 15.07.2019, 13:47, "Ramazan Ergüder Bekrek" : > Greetings! > &g

Re: ANT task for compiling flex-sdk is not working

2019-07-16 Thread Ramazan Ergüder Bekrek
I commented that line which generates the error and the build is following! 15.07.2019, 14:07, "Ramazan Ergüder Bekrek" : > Now I have this error: > > BUILD FAILED > C:\Users\ar.rahman\eclipse-workspace\apache-flex\build.xml:162: The following > error occurred while

Re: ANT task for compiling flex-sdk is not working

2019-07-16 Thread Ramazan Ergüder Bekrek
I think that the correct config settings for a compilation are: playerglobal.version=31.0 playerglobal.swfversion=42 env.PLAYERGLOBAL_HOME=G:\\programming\\sdks\\air31\\frameworks\\libs\\player env.TLF_HOME=G:\\programming\\as3\\flex-tlf 17.07.2019, 01:44, "Ramazan Ergüder Bekrek&q

Re: ANT task for compiling flex-sdk is not working

2019-07-16 Thread Ramazan Ergüder Bekrek
, "Ramazan Ergüder Bekrek" : > I think that the correct config settings for a compilation are: > > playerglobal.version=31.0 > playerglobal.swfversion=42 > env.PLAYERGLOBAL_HOME=G:\\programming\\sdks\\air31\\frameworks\\libs\\player > > env.TLF_HOME=G:\\programming\\as3\

How to compile an SWF to bypass any VerifyError for non-existing classes inside of that SWF

2019-07-17 Thread Ramazan Ergüder Bekrek
Greetings again! I have special use case that I would like to be able to reproduce and as an inspiration I took one specific SWF file which is part of the ADEP Gravity Client Component Framework which is an adaptation of the OSGi runtime in Actionscript 3.0. The file in question can be seen in

Cannot access a property or method of a null object reference for simple DateFormatter.parseDateString(date);

2019-08-22 Thread Ramazan Ergüder Bekrek
Greetings to y'all I have a simple code which us calling DateFormatter for conversion from String to Date like follow: public static function parseBlobDate(date:String):Date{ return DateFormatter.parseDateString(date); } which triggers an error : TypeErro

Re: Cannot access a property or method of a null object reference for simple DateFormatter.parseDateString(date);

2019-08-22 Thread Ramazan Ergüder Bekrek
You can have a screenshot of what I am talking about. https://pasteboard.co/ItRpbza.png 22.08.2019, 12:57, "Ramazan Ergüder Bekrek" : > Greetings to y'all > > I have a simple code which us calling DateFormatter for conversion from > String to Date like follow:

How to create application states dynamically?

2019-10-17 Thread Ramazan Ergüder Bekrek
Greetings all! Long time that I haven't heard anything concerning Apache Flex SDK. Is this being abandoned or is it simply that people are focusing more energy on the Apache Royale at the moment? Anyway I was wondering if it is possible to create states dynamically in AS3 because I would like t

Eclipse Extension Points mechanism equivalent in AS3 inside of an OSGi runtime

2019-10-19 Thread Ramazan Ergüder Bekrek
Greetings to all again! I'm developing something similar to Eclipse Extension Points with Annotations [ExtensionPoint] and [Extension] for dynamic sparks and mx control injection at runtime. The whole thing is running inside of an OSGi framework built with AS3 and the problem that I'm having is

Re: Eclipse Extension Points mechanism equivalent in AS3 inside of an OSGi runtime

2019-10-19 Thread Ramazan Ergüder Bekrek
t that everything is handled automatically? Screenshot link : https://pasteboard.co/ICLWnzG.png 19.10.2019, 20:42, "Ramazan Ergüder Bekrek" : > Greetings to all again! > > I'm developing something similar to Eclipse Extension Points with Annotations > [ExtensionPoint] a

Re: How to create application states dynamically?

2019-10-21 Thread Ramazan Ergüder Bekrek
After looking how the compiler generates MXML states as suggested by Alex I've discovered some important details... Let's say that I have these two UI component in my main UI. The class that is generated automatically is this: https://pastebin.com/dg93hAQv As you can see also the class has t

Re: How to create application states dynamically?

2019-10-28 Thread Ramazan Ergüder Bekrek
in your use of bindings for public properties, then you should > be able to get things to work. Instead of generating getter/setters, you have > to add the right event listeners for changes. > > HTH, > -Alex > > On 10/21/19, 7:26 AM, "Ramazan Ergüder Bekrek" w

How to set the compiler so that there is no compiled ResourceBundles at all?

2019-10-30 Thread Ramazan Ergüder Bekrek
Greetings again! I would like to know if there is a way to bypass the Resource Compilation of a module or an Application in Flex. I realized that duplicates are in every SWF and I don't need them. In the RSL loader that is loading the Apache Flex SWFs from my app all the Resources are already t

Re: How to set the compiler so that there is no compiled ResourceBundles at all?

2019-10-30 Thread Ramazan Ergüder Bekrek
ttempt to add resource bundles if there are no locales. > > HTH, > -Alex > > On 10/30/19, 7:45 AM, "Ramazan Ergüder Bekrek" wrote: > > Greetings again! > > I would like to know if there is a way to bypass the Resource Compilation > of a module or

Re: How to set the compiler so that there is no compiled ResourceBundles at all?

2019-10-30 Thread Ramazan Ergüder Bekrek
like it will not > attempt to add resource bundles if there are no locales. > > HTH, > -Alex > > On 10/30/19, 7:45 AM, "Ramazan Ergüder Bekrek" wrote: > > Greetings again! > > I would like to know if there is a way to bypass the Resource Compi

Re: How to set the compiler so that there is no compiled ResourceBundles at all?

2019-10-31 Thread Ramazan Ergüder Bekrek
; there are no CSS style definitions to output. You might be able to control > what CSS the compiler sees by setting the compiler.defaults-css-files option > and/or messing around with the .css files in the SWCs. > > HTH, > -Alex > > On 10/30/19, 1:46 PM, "Rama

Re: How to set the compiler so that there is no compiled ResourceBundles at all?

2019-10-31 Thread Ramazan Ergüder Bekrek
then > it won't generate the class so you have to get rid of all of the selectors in > that class. Some may be coming from SWCs. > > -Alex > > On 10/31/19, 6:17 AM, "Ramazan Ergüder Bekrek" wrote: > > I tried these compiler settings: > > -default

Re: How to set the compiler so that there is no compiled ResourceBundles at all?

2019-10-31 Thread Ramazan Ergüder Bekrek
As I said those classes are all inside of the main bootstrapper which loads all the RSLs. All the type selectors are handled in the bootstrapper one time with -keep-all-type-selectors. All other should not have them because of the redundency. 31.10.2019, 17:44, "Ramazan Ergüder B

How to implement complex mouse focus in ItemRenderer with a list which has a children ItemRenderers which has a list with children ItemRenderers and so on,,,,?

2019-11-15 Thread Ramazan Ergüder Bekrek
I have a specific use case where I have a ParagraphItemRenderer. In that ItemRenderer there is a List with SubParagraphItemRenderer (Paragraph.children) In that SubParagraphItemRenderer there is List with SubParagraphItemRenderer (SubParagraph.children) How am I able to achieve this desired mo

Re: How to implement complex mouse focus in ItemRenderer with a list which has a children ItemRenderers which has a list with children ItemRenderers and so on,,,,?

2019-11-15 Thread Ramazan Ergüder Bekrek
This is a visual which could help to understand : https://pasteboard.co/IGNIK02.png I would like it to be either the parent SubParagraph or the child SubParagraph to be selected not both. 15.11.2019, 13:39, "Ramazan Ergüder Bekrek" : > I have a specific use case w

Re: How to implement complex mouse focus in ItemRenderer with a list which has a children ItemRenderers which has a list with children ItemRenderers and so on,,,,?

2019-11-15 Thread Ramazan Ergüder Bekrek
Well for the SubParagraphItemRenderer I included focusOut event as following: This part is working but still the Paragraph always gets selected automatically. protected function onFocusOut(event:FocusEvent):void { subparagraphs.selectedItem =

Re: How to implement complex mouse focus in ItemRenderer with a list which has a children ItemRenderers which has a list with children ItemRenderers and so on,,,,?

2019-11-15 Thread Ramazan Ergüder Bekrek
I found a much easier way than this complicated idea... I am now using rollOver and rollOut to display only the command bar for each respective itemrenderer. That way I don't need to deal with complexity. 15.11.2019, 15:11, "Olaf Krueger" : > Maybe it helps to simplify your use case at first: >

Re: Flex web deployment...

2020-03-10 Thread Ramazan Ergüder Bekrek
>From my researches I found out that it will be possible to run Flash/Flex >applications after 2020 inside of the browser due to this new technology which >will use WebAssembly. https://medium.com/leaningtech/preserving-flash-content-with-webassembly-done-right-eb6838b7e36f Maybe we don't need

Re: Flex web deployment...

2020-03-10 Thread Ramazan Ergüder Bekrek
l tell > if it goes to real > Thanks for let us know! :) > > El mar., 10 mar. 2020 a las 15:44, Ramazan Ergüder Bekrek (< > e.bek...@yandex.com>) escribió: > >>  From my researches I found out that it will be possible to run Flash/Flex >>  applications after 2020 insi

Re: Flex web deployment...

2020-03-10 Thread Ramazan Ergüder Bekrek
people will need to evaluate it to see > if it works as expected. For what they say it will only work on Chrome, > that's not bad... and the idea itself seems promising. But time will tell > if it goes to real > Thanks for let us know! :) > > El mar., 10 mar. 2020 a l

Re: GUI IDE need.

2020-03-11 Thread Ramazan Ergüder Bekrek
This is just my idea and my intuition tells me that the FB DV was built as an SWF app which was loaded inside of eclipse like a browser SWF what if we decompile its source code and just inject it in Moonshine editor?  11.03.2020, 19:57, "QA" : > Hi, I agree that a GUI IDE is needed or would be

Re: Flex web deployment...

2020-03-11 Thread Ramazan Ergüder Bekrek
Hey look this out I found also something pretty cool it seems that Silverlight is also back :) https://opensilver.net/announcements/introducing-opensilver.aspx 10.03.2020, 17:03, "Ramazan Ergüder Bekrek" : > To see the talk about the tech with demos you can watch th

Re: GUI IDE need.

2020-03-14 Thread Ramazan Ergüder Bekrek
This is just my idea and my intuition tells me that the FB DV was built as an SWF app which was loaded inside of eclipse like a browser SWF what if we decompile its source code and just inject it in Moonshine editor? Does this make any sense? 11.03.2020, 22:43, "Ramazan Ergüder B

Re: GUI IDE need.

2020-03-14 Thread Ramazan Ergüder Bekrek
va/Eclipse or other IDE platforms would be concerning to me. I > think you would get better fidelity if the IDE would run a browser in a > window of the IDE and talk to it, and potentially do most of the UI in that > browser window. > > Of course, I could be wrong... > -Alex >

Re: GUI IDE need.

2020-03-16 Thread Ramazan Ergüder Bekrek
Thank you Alex for your feedback. Concerning HTML/CSS implementation in Actionscript I found out that it is not totally true. Searching led me to this discoveries: https://www.as3gamegears.com/misc/htmlwrapper/ https://web.archive.org/web/20110308200521/http://motionandcolor.com/projects https:/

Re: GUI IDE need.

2020-03-16 Thread Ramazan Ergüder Bekrek
rg/d/10408-textblockrenderer-html-support/4 16.03.2020, 13:54, "Ramazan Ergüder Bekrek" : > Thank you Alex for your feedback. > > Concerning HTML/CSS implementation in Actionscript I found out that it is not > totally true. > Searching led me to this discoveries: &g

Any possibility to inject Ultralight UX inside of an AIR Application on the Stage3D?

2020-03-16 Thread Ramazan Ergüder Bekrek
I would like to ask a specific question concerning an open source project called Ultralight. Basically this is how it is defined on their web site : Ultralight is a tool to display fast, beautiful HTML interfaces inside all kinds of applications. Save time and money by writing your applicatio

Any possibility to inject Ultralight UX inside of an AIR Application on the Stage3D?

2020-03-19 Thread Ramazan Ergüder Bekrek
I would like to ask a specific question concerning an open source project called Ultralight. Basically this is how it is defined on their web site : Ultralight is a tool to display fast, beautiful HTML interfaces inside all kinds of applications. Save time and money by writing your application'

Re: Any possibility to inject Ultralight UX inside of an AIR Application on the Stage3D?

2020-03-22 Thread Ramazan Ergüder Bekrek
Any expertise on this question ? 19.03.2020, 17:23, "Ramazan Ergüder Bekrek" : > I would like to ask a specific question concerning an open source project > called Ultralight. > > Basically this is how it is defined on their web site : > > Ultralight is a tool to

Re: GUI IDE need.

2020-03-30 Thread Ramazan Ergüder Bekrek
raries > and maybe someone or you will validate them. > > Thanks > -Alex > > On 3/16/20, 6:10 AM, "Ramazan Ergüder Bekrek" wrote: > > I also found out that there is a possibility to "It should be possible to > manually parse HTML and convert it into

Re: Launching an AIR application (captive runtime) from an http link

2020-05-15 Thread Ramazan Ergüder Bekrek
Greetings dear Flexer I hope this will help you : https://stackoverflow.com/questions/9228761/how-to-launch-an-adobe-air-application-from-browser 15.05.2020, 17:35, "After24" : > Hello, > > I'm searching for a way to open an AIR application from an http link. I > cannot find any information on

Re: Launching an AIR application (captive runtime) from an http link

2020-05-15 Thread Ramazan Ergüder Bekrek
There is one link which is dead but I found it with web archive : https://web.archive.org/web/20190215130044/http://archive.davidtucker.net/2008/01/11/air-tip-6-launching-an-application-from-the-browser/ 15.05.2020, 22:21, "Ramazan Ergüder Bekrek" : > Greetings dear Flexer > &g

Re: Flex Articles archived

2020-05-15 Thread Ramazan Ergüder Bekrek
Here's a thread about rewritting the whole documentation from the community : https://discuss.as3lang.org/t/adobe-air-documentation-archives-and-downloads/2314 15.05.2020, 20:04, "Carlos Rovira" : > Thanks Leokan, > > uff, many files there ;) > if Adobe maintain this page online for me is ok, the

Re: Flex Articles archived

2020-05-15 Thread Ramazan Ergüder Bekrek
I forgot that link too concerning the project : https://discuss.as3lang.org/t/community-documentation-projects/1996 15.05.2020, 20:04, "Carlos Rovira" : > Thanks Leokan, > > uff, many files there ;) > if Adobe maintain this page online for me is ok, the problem is if they > remove some day for wh

Re: Tip/Solution after December/2020

2020-06-03 Thread Ramazan Ergüder Bekrek
I talked with the people from the Sales and they are preparing a public version soon. There will be different licensing schemes with the product and also a free license. Their product is working pretty well I saw the Tour de Flex running in Browser. You can read the Medium threads concerning th

Re: Flex to Adobe AIR migration

2020-06-12 Thread Ramazan Ergüder Bekrek
You don't need to convert anything there is https://www.leaningtech.com/pages/cheerpx.html which will allow after 2020 to run flash/flex applications on the browser. Also there is also ruffle : https://github.com/ruffle-rs/ruffle Both of these projects are growing so don't worry. 12.06.2020, 0

Is there any TLS/SSL compatible library to create an HTTPS server locally in AIR?

2020-06-18 Thread Ramazan Ergüder Bekrek
Greetings I would like to ask this question because I want to directly from AIR to create local HTTPS server and past to it cert,key files so that any request coming from outside is secured. Up until now I could not find any implementation and the as3crypto lib was never updated. Does someone

Re: Air SDK 33.1 F4M audio broken

2021-01-13 Thread Ramazan Ergüder Bekrek
14:19, "Ramazan Ergüder Bekrek" : > My advice is stick to AIR31 where everything worked just fine. All the rest > is broken since it is in Hartmanns hand thing just kept breaking. > > 05:36, January 12, 2021, Jason Taylor : >> Meanwhile I have reached out to adobe.sup

Re: Post for help wanted

2021-02-23 Thread Ramazan Ergüder Bekrek
Hi Daniel, what kind of development are you planning to do? Maybe I could be of some help. Best Regards 22.02.2021, 21:16, "Daniel McQuillen" : > Hi all, > > Is there still a location for posts about help needed with AIR/Flex > development? I have a former client who needs help building a deskt

Re: Post for help wanted

2021-02-23 Thread Ramazan Ergüder Bekrek
Hi Daniel, what kind of development are you planning to do? Maybe I could be of some help. Best Regards 22.02.2021, 21:16, "Daniel McQuillen" : > Hi all, > > Is there still a location for posts about help needed with AIR/Flex > development? I have a former client who needs help building a deskt