Re: [FlexJS, AMF] Steps to make FlexJS / Java - RemoteObject / AMF sample work

2017-09-24 Thread PKumar
Carlos,

I tested it with most of built in data type( Including Vector)  and it is
working  ok, but I  can  not send or receive following  type:

ArrayList - send & receive not  working
Custom Class Object - nor able to  send it , getting  exception at BlazeDs
side.
Complex  Object with Inheritance - not working

One more thing i noted with RemoteObject , that i can not send multiple
request  to BlazeDs side.
eg.
//Passing Vector
var vector1:Vector. = new Vector.();
vector1.push("test");
service.send("passObject",[vector1]);

//Passing Array of String
service.send("passArray",[["Test1","Test2"]]);

In this only first request goes to server second one does not go.




--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS, AMF] Steps to make FlexJS / Java - RemoteObject / AMF sample work

2017-09-16 Thread PKumar
Alex,

I kept ClassAliasBead at Application level and my demo started working. I
noted following issues:

VO with inheritance not working, as Car  extends Vehicle
ArrayList  serialization not working
Custom Array not working

I am testing with more dataType and will update you further.

Thanks,
Prashant




--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FLEX JS] How to import mx.managers.PopUpManager?

2017-09-12 Thread PKumar
check the  sample code at following github link

https://github.com/pkumar-ghub/ApacheFlexJSDemo/tree/master/PopupWindow



--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS, AMF] Steps to make FlexJS / Java - RemoteObject / AMF sample work

2017-09-12 Thread PKumar
I downloaded the  latest nightly build and used that. I am also compiled this
app with the FlexJS package  that you shared. but same error i am  getting.



--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS, AMF] Steps to make FlexJS / Java - RemoteObject / AMF sample work

2017-09-10 Thread PKumar
If i am using "ClassAliasBead" then i am getting following error on browser
console. Please suggest.

Uncaught TypeError: app.info is not a function
at org.apache.flex.reflection.beads.ClassAliasBead.set__strand
(ClassAliasBead.js:48)
at MainView.org.apache.flex.core.UIBase.addBead (UIBase.js:372)
at MainView.org.apache.flex.core.UIBase.addedToParent (UIBase.js:542)
at MainView.org.apache.flex.core.GroupBase.addedToParent
(GroupBase.js:73)
at MainView.org.apache.flex.core.View.addedToParent (View.js:69)
at Main.org.apache.flex.core.Application.addElement (Application.js:132)
at Main.org.apache.flex.core.Application.initialize (Application.js:281)
at Main.org.apache.flex.core.Application.start (Application.js:252)
at index.html:140



--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS][Installer] Future packaging of FlexJS releases

2017-09-10 Thread PKumar
after removing that line, everything  is fine. Thanks



--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS, AMF] Steps to make FlexJS / Java - RemoteObject / AMF sample work

2017-09-10 Thread PKumar
no message on server console.  my server is  running under Eclipse.



--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS][Installer] Future packaging of FlexJS releases

2017-09-09 Thread PKumar
Alex,

Tried this package with VCode but getting the attached errror with no code
intelligence

 



--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS, AMF] Steps to make FlexJS / Java - RemoteObject / AMF sample work

2017-09-09 Thread PKumar
Alex,

I downloaded   latest nightly build and modify and tried remote object
changes. but i am getting the attached error on console.

 



--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: [FlexJS][Docs] Started with some docs using a github repo

2017-08-09 Thread PKumar
please add few pages  on following  topics. These are commonly  used in
enterprise applications.

FlexJS Data  Binding
Formatters - Date Formatter , Number  Formatter etc
Validators - StringValidator, DateValidator etc
Popupwindow or Dialog in FlexJS
File Browse,  Upload and Download
HTTPService

Thanks,
Prashant



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Docs-Started-with-some-docs-using-a-github-repo-tp63786p63789.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] findPopupHost issue

2017-07-19 Thread PKumar
​Panel , close event not firing on JS side. swf side it is working fine.
This may  be an issue.​

On Wed, Jul 19, 2017 at 11:00 PM, Prashant Kumar 
wrote:

> ​I am having a gird  with one view column. On clicking view link , i want
> to open a popup to view information. I was unaware  about actual use of
> findPopupHost so i pass this. I was thinking it will work same as
> PopupManager works.
>
>
>
> On Tue, Jul 18, 2017 at 8:02 PM, Alex Harui-2 [via Apache Flex
> Development]  wrote:
>
>> I guess I should have been more clear.  FlexJS supports multiple
>> component
>> sets and runtimes.  An Application class is probably always going to be
>> the entry point of an application, but there is no guarantee in any
>> application that the Application class will be a display object or even
>> the correct display object in the case of a multi-window desktop
>> application.
>>
>> IPopUpHost is an API for a good place to hang popups, but it is only a
>> coincidence that in the currently supported runtimes and most popular
>> component sets that the Application is mapped to a display object and
>> thus
>> an IPopUpHost.  We should not presume that will always be the case.
>>
>> If you are looking for a good place to hang a popup you probably want it
>> to popup over some UI component.  So, it is best to start with that known
>> IUIBase and find an IPopUpHost that will display the popup over that
>> IUIBase.  That way, your code will work in a multi-window app someday,
>> and
>> other future runtime environments as well.  And that's why findPopUpHost
>> takes an IUIBase.  And in other future runtimes, it should be implemented
>> to return a useful thing, but that thing may not be the Application
>> instance.
>>
>> So, the recommended practice is to use UIUtils.findPopupHost and pass it
>> an IUIBase that you want the popup to float over.
>>
>> HTH,
>> -Alex
>>
>> On 7/17/17, 10:48 PM, "Yishay Weiss" <[hidden email]
>> > wrote:
>>
>> >Even if the Application instance isn’t an IPopUpHost the method will
>> just
>> >return null, so the effect is the same as just doing (appInstance as
>> >IPopUpHost). I suspect the method is being misused rather than there
>> >being a problem with the method.
>> >
>> >From: Alex Harui> >
>> >Sent: Tuesday, July 18, 2017 8:33 AM
>> >To: [hidden email] 
>> > >
>> >Subject: Re: [FlexJS] findPopupHost issue
>> >
>> >FWIW, it may not be safe to assume that Application will always be an
>> >IPopUpHost, hence the utility function.
>> >
>> >Thanks,
>> >-Alex
>> >
>> >On 7/17/17, 9:59 PM, "piotrz" <[hidden email]
>> > wrote:
>> >
>> >>Hi Yishay,
>> >>
>> >>That's a good point - Application is itself an IPopupHost. I've asked
>> him
>> >>what is the use case for his host popup search.
>> >>
>> >>Thanks,
>> >>Piotr
>> >>
>> >>
>> >>
>> >>-
>> >>Apache Flex PMC
>> >>[hidden email] 
>> >>--
>> >>View this message in context:
>> >>https://na01.safelinks.protection.outlook.com/?url=http%
>> 3A%2F%2Fapache-fl
>> >>e
>> >>x-development.247.n4.nabble.com%2FFlexJS-findPopupHost-issue-tp63362p
>>
>> >>6
>> >>3366.html=02%7C01%7C%7Cbfd19d2deba646c64df208d4cd9c9798%7Cfa7b1b5a7b
>>
>> >>3
>> >>4438794aed2c178decee1%7C0%7C0%7C636359519816386890=CyeQuoJ0gVVl2UHU
>>
>> >>B
>> >>W%2B6hbyDNw%2FOSFuswfzeLTqUf3c%3D=0
>> >>Sent from the Apache Flex Development mailing list archive at
>> Nabble.com.
>> >
>>
>>
>>
>> --
>> If you reply to this email, your message will be added to the discussion
>> below:
>> http://apache-flex-development.247.n4.nabble.com/FlexJS-
>> findPopupHost-issue-tp63362p63395.html
>> To start a new topic under Apache Flex Development, email
>> ml+s247n1...@n4.nabble.com
>> To unsubscribe from Apache Flex Development, click here
>> 
>> .
>> NAML
>> 
>>
>
>
>
> --
> *Regards,*
> Prashant Kumar* | *Mob.: +91 8408811225 <084088%2011225>
>



-- 
*Regards,*
Prashant Kumar* | *Mob.: +91 8408811225




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-findPopupHost-issue-tp63362p63425.html
Sent from the Apache Flex 

Re: [FlexJS] findPopupHost issue

2017-07-19 Thread PKumar
​I am having a gird  with one view column. On clicking view link , i want
to open a popup to view information. I was unaware  about actual use of
findPopupHost so i pass this. I was thinking it will work same as
PopupManager works.



On Tue, Jul 18, 2017 at 8:02 PM, Alex Harui-2 [via Apache Flex Development]
 wrote:

> I guess I should have been more clear.  FlexJS supports multiple component
> sets and runtimes.  An Application class is probably always going to be
> the entry point of an application, but there is no guarantee in any
> application that the Application class will be a display object or even
> the correct display object in the case of a multi-window desktop
> application.
>
> IPopUpHost is an API for a good place to hang popups, but it is only a
> coincidence that in the currently supported runtimes and most popular
> component sets that the Application is mapped to a display object and thus
> an IPopUpHost.  We should not presume that will always be the case.
>
> If you are looking for a good place to hang a popup you probably want it
> to popup over some UI component.  So, it is best to start with that known
> IUIBase and find an IPopUpHost that will display the popup over that
> IUIBase.  That way, your code will work in a multi-window app someday, and
> other future runtime environments as well.  And that's why findPopUpHost
> takes an IUIBase.  And in other future runtimes, it should be implemented
> to return a useful thing, but that thing may not be the Application
> instance.
>
> So, the recommended practice is to use UIUtils.findPopupHost and pass it
> an IUIBase that you want the popup to float over.
>
> HTH,
> -Alex
>
> On 7/17/17, 10:48 PM, "Yishay Weiss" <[hidden email]
> > wrote:
>
> >Even if the Application instance isn’t an IPopUpHost the method will just
> >return null, so the effect is the same as just doing (appInstance as
> >IPopUpHost). I suspect the method is being misused rather than there
> >being a problem with the method.
> >
> >From: Alex Harui >
> >Sent: Tuesday, July 18, 2017 8:33 AM
> >To: [hidden email] 
>  >
> >Subject: Re: [FlexJS] findPopupHost issue
> >
> >FWIW, it may not be safe to assume that Application will always be an
> >IPopUpHost, hence the utility function.
> >
> >Thanks,
> >-Alex
> >
> >On 7/17/17, 9:59 PM, "piotrz" <[hidden email]
> > wrote:
> >
> >>Hi Yishay,
> >>
> >>That's a good point - Application is itself an IPopupHost. I've asked
> him
> >>what is the use case for his host popup search.
> >>
> >>Thanks,
> >>Piotr
> >>
> >>
> >>
> >>-
> >>Apache Flex PMC
> >>[hidden email] 
> >>--
> >>View this message in context:
> >>https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-fl
> >>e
> >>x-development.247.n4.nabble.com%2FFlexJS-findPopupHost-issue-tp63362p
>
> >>6
> >>3366.html=02%7C01%7C%7Cbfd19d2deba646c64df208d4cd9c9798%7Cfa7b1b5a7b
>
> >>3
> >>4438794aed2c178decee1%7C0%7C0%7C636359519816386890=CyeQuoJ0gVVl2UHU
>
> >>B
> >>W%2B6hbyDNw%2FOSFuswfzeLTqUf3c%3D=0
> >>Sent from the Apache Flex Development mailing list archive at
> Nabble.com.
> >
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.com/FlexJS-findPopupHost-
> issue-tp63362p63395.html
> To start a new topic under Apache Flex Development, email
> ml+s247n1...@n4.nabble.com
> To unsubscribe from Apache Flex Development, click here
> 
> .
> NAML
> 
>



-- 
*Regards,*
Prashant Kumar* | *Mob.: +91 8408811225




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-findPopupHost-issue-tp63362p63424.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: FlexJS Yeoman generator

2017-07-13 Thread PKumar
Hi Josh,

I  tried tried the yeoman & flexjs generator  with VCode. Everything is
really good and working fine. One  problem i  am getting on creating mxml
component. when i am trying to create the new mxml then i am getting 
exception. check the attached screen shot.


 

 _-_ 
|   |╭──╮
|--(o)--|│  Let's create an │
   `-´   │  MXML component  │
( _´U`_ )╰──╯
/___A___\   /
 |  ~  | 
   __'.___.'__   
 ´   `  |° ´ Y ` 

Uncaught Exception:  TypeError: Invalid property descriptor. Cannot both
specify accessors and a value or writable attribute, #
TypeError: Invalid property descriptor. Cannot both specify accessors and a
value or writable attribute, #
at Function.defineProperty ()
at new ErrorEXError (C:\Users\Prashant
Kumar\.vscode\extensions\samverschueren.yo-0.9.3\node_modules\error-ex\index.js:79:10)
at vscode_1.window.showQuickPick.then.result (C:\Users\Prashant
Kumar\.vscode\extensions\samverschueren.yo-0.9.3\out\prompts\list.js:20:23)
at Object.m [as _notify] (c:\Program Files (x86)\Microsoft VS
Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:23:41973)
at Object.enter (c:\Program Files (x86)\Microsoft VS
Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:23:45538)
at n.Class.derive._oncancel._run (c:\Program Files (x86)\Microsoft VS
Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:23:47366)
at n.Class.derive._oncancel._completed (c:\Program Files (x86)\Microsoft
VS
Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:23:46807)
at c:\Program Files (x86)\Microsoft VS
Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:23:63502
at n.Class.derive._creator.done (c:\Program Files (x86)\Microsoft VS
Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:23:48667)
at Object.m [as _notify] (c:\Program Files (x86)\Microsoft VS
Code\resources\app\out\vs\workbench\node\extensionHostProcess.js:23:42115)




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Yeoman-generator-tp63178p63235.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


RE: [FlexJS] question about porting an Adobe Flex 3 project to HTML+JS

2017-07-06 Thread PKumar
I will check the example shared. But if need more examples on title window,
grid, panel , list and other controls. Just let me know I will share with
you on GitHub.

On 06-Jul-2017 7:21 PM, "allenyyang [via Apache Flex Development]" <
ml+s247n62863...@n4.nabble.com> wrote:

> Hi PKumar,
>
> You are correct that I don't need to have Maven or Ant installed if I want
> to just use Flash Builder as the IDE.   was able to use Flash Builder 4.7
> and FlexJS to build and run the examples in the wiki successfully.  I just
> could not use FB to build Yishay's demo_for_presentation project
> successfully.  But I desired to get this demo working because the demo
> program is beyond "Hello World".  I just didn’t know that it would takes me
> longer time than I expected and still not fully getting it to work the way
> it should.
> After trying both FB and VS Code+Maven for a while, I think Flash
> Builder's error messages tend to be more cryptic.
>
> Hi Yishay,
> I followed Alex's suggestions and did the following steps to
> demo_for_presentation project:
> 1) In Project -> Properties -> Flex Build Path, removed airglobal,
> Core.swc and Basic.swc.
> 2) Shut down Flash Builder
> 3) Open the .actionScriptProperties file in a text editor and remove these
> two lines from excludedEntries:
>  path="${PROJECT_FRAMEWORKS}/libs/core.swc" useDefaultLinkType="false"/>
>path="${PROJECT_FRAMEWORKS}/libs/Basic.swc" useDefaultLinkType="false"/>
> 4) Use the file system to remove bin folder from the project folder.
> 5) Restart Flash Builder, clean and rebuild the project.
>
> These changes allowed me to build demo_for_presentation. And I now can run
> it by double-clicking index.html in both bin/js-debug and bin/js-release
> folders.
> But I am not sure that it runs correctly because the screen display always
> look like the following:
>
> boring
> my comp 0
> Button1 Button2
>
> Clicking Button1 should increment the count, but it doesn't change the
> display at all; and I believe clicking Button2 doesn't do anything
> according to the source code.  Could you help me  to correct the behavior
> of the demo program?
> I exported the fpx file on my Dropbox: https://www.dropbox.com/s/
> zknv0tj5kvvioph/demo_for_presentation.fxp?dl=0
>
> Hi Team:
> My original purpose of learning FlexJS is to convert my Flex 3 project so
> it will run without Flash Player. I am still far away from the goal.  If
> anyone could suggest what to do to rewrite my MXMLs that use TitleWindow
> and HBox that will be quite appreciated.
>
> Best regards,
> Allen
>
>
> -Original Message-
> From: PKumar [mailto:[hidden email]
> <http:///user/SendEmail.jtp?type=node=62863=0>]
> Sent: Thursday, July 06, 2017 2:26 AM
> To: [hidden email] <http:///user/SendEmail.jtp?type=node=62863=1>
> Subject: RE: [FlexJS] question about porting an Adobe Flex 3 project to
> HTML+JS
>
> If you want to use FlexJS with Flash Builder 4.7 then no need to install
>  Ant and maven.
>
> just download latest version of FlexJs via SDK installer and add new
> FlexJS SDK under Flash Buildrler4.7 as you add regular flex SDK.
>
> After SDK setup . You need to import runtime command into Flash Builder so
> that u can compile Flex JS project.
>
> Apache Flex wiki have nice information on this. Please refer wiki.
>
> On 06-Jul-2017 5:17 AM, "allenyyang [via Apache Flex Development]" <
> [hidden email] <http:///user/SendEmail.jtp?type=node=62863=2>>
> wrote:
>
> > Hi Yishay,
> >
> > After trying for quite a while, I found that we might be talking about
> > two different things.  I informed Piotr that was able to use Maven and
> > VS Code to build and run Piotr's "Hello World" example successfully.
> > But I was unable to successfully run demo_for_presentation using Flash
> Builder 4.7.
> > You might be thinking that I was talking about being able to use VS
> > Code and Maven to build and run demo_for_presentation successfully;
> > which is not the case for me yet.
> >
> > So I went back to your email on 07/01 and I installed Ant and added it
> > to PATH; I also set ANT_HOME to where I installed Ant:
> > C:\apache-ant-1.10.1; and already have JAVA_HOME to its installation
> > folder: C:\Program
> > Files\Java\jdk1.8.0_131
> > At the folder demo_for_presentation where build.xml file resides, I
> > typed 'ant' in the cmd window.  I got the following error:
> > --
> > 
> >
> > Buildfile: C:\Projects\demo_for_presentation\build.x

RE: [FlexJS] question about porting an Adobe Flex 3 project to HTML+JS

2017-07-06 Thread PKumar
If you want to use FlexJS with Flash Builder 4.7 then no need to install
 Ant and maven.

just download latest version of FlexJs via SDK installer and add new FlexJS
SDK under Flash Buildrler4.7 as you add regular flex SDK.

After SDK setup . You need to import runtime command into Flash Builder so
that u can compile Flex JS project.

Apache Flex wiki have nice information on this. Please refer wiki.

On 06-Jul-2017 5:17 AM, "allenyyang [via Apache Flex Development]" <
ml+s247n62853...@n4.nabble.com> wrote:

> Hi Yishay,
>
> After trying for quite a while, I found that we might be talking about two
> different things.  I informed Piotr that was able to use Maven and VS Code
> to build and run Piotr's "Hello World" example successfully.  But I was
> unable to successfully run demo_for_presentation using Flash Builder 4.7.
> You might be thinking that I was talking about being able to use VS Code
> and Maven to build and run demo_for_presentation successfully; which is not
> the case for me yet.
>
> So I went back to your email on 07/01 and I installed Ant and added it to
> PATH; I also set ANT_HOME to where I installed Ant: C:\apache-ant-1.10.1;
> and already have JAVA_HOME to its installation folder: C:\Program
> Files\Java\jdk1.8.0_131
> At the folder demo_for_presentation where build.xml file resides, I typed
> 'ant' in the cmd window.  I got the following error:
> --
>
> Buildfile: C:\Projects\demo_for_presentation\build.xml
>
> clean:
>
> build_example.compilejs:
>  [echo] Compiling demo_for_presentation.js
>  [echo] FLEX_HOME: ${env.FLEXJS_HOME}
>  [echo] FALCONJX_HOME: ${FALCONJX_HOME}
>  [echo] env GOOG_HOME: ${env.GOOG_HOME}
>  [echo] GOOG_HOME: ${GOOG_HOME}
>  [java] Error: Could not find or load main class ${mxmlc.jvm.args}
>  [java] Java Result: 1
>
> BUILD FAILED
> C:\Projects\demo_for_presentation\build_example.xml:124: code: 1
>
> Total time: 0 seconds
>
> Can you help me to see what's wrong?
>
> Thanks and Regards,
> Allen
> -
>
>
> -Original Message-
> From: yishayw [mailto:[hidden email]
> ]
> Sent: Wednesday, July 05, 2017 12:54 AM
> To: [hidden email] 
> Subject: RE: [FlexJS] question about porting an Adobe Flex 3 project to
> HTML+JS
>
> yishayw wrote
> > Now assuming you have pom.xml and build.xml in your project you should
> > be able to run Maven like this:
>
> Should read:
>
>
> Now assuming you have pom.xml and build.xml in your project you should be
> able to run Maven *or ant* like this:
>
>
>
>
> --
> View this message in context: http://apache-flex-
> development.247.n4.nabble.com/FlexJS-question-about-
> porting-an-Adobe-Flex-3-project-to-HTML-JS-tp62698p62835.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.
>
> 
>
> Ce message, ainsi que tous les fichiers joints à ce message, peuvent
> contenir des informations sensibles et/ ou confidentielles ne devant pas
> être divulguées. Si vous n'êtes pas le destinataire de ce message (ou que
> vous recevez ce message par erreur), nous vous remercions de le notifier
> immédiatement à son expéditeur, et de détruire ce message. Toute copie,
> divulgation, modification, utilisation ou diffusion, non autorisée, directe
> ou indirecte, de tout ou partie de ce message, est strictement interdite.
>
>
> This e-mail, and any document attached hereby, may contain confidential
> and/or privileged information. If you are not the intended recipient (or
> have received this e-mail in error) please notify the sender immediately
> and destroy this e-mail. Any unauthorized, direct or indirect, copying,
> disclosure, distribution or other use of the material or parts thereof is
> strictly forbidden.
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.
> com/FlexJS-question-about-porting-an-Adobe-Flex-3-project-to-HTML-JS-
> tp62698p62853.html
> To start a new topic under Apache Flex Development, email
> ml+s247n1...@n4.nabble.com
> To unsubscribe from Apache Flex Development, click here
> 
> .
> NAML
> 
>




--
View this message in context: 

Re: [FlexJS] Failed to download nightly build FlexJS 0.9.0

2017-07-02 Thread PKumar
I am trying to download FlexJS0.8.0 via installer but getting error. please
check the following error log.

[image: Inline image 1]

On Thu, Jun 29, 2017 at 1:27 PM, piotrz [via Apache Flex Development] <
ml+s247n62679...@n4.nabble.com> wrote:

> Alex,
>
> Now it's working!
>
> Thanks,
> Piotr
> Apache Flex PMC
> piotrzarzyck...@gmail.com
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.
> com/FlexJS-Failed-to-download-nightly-build-FlexJS-0-9-0-
> tp62664p62679.html
> To start a new topic under Apache Flex Development, email
> ml+s247n1...@n4.nabble.com
> To unsubscribe from Apache Flex Development, click here
> 
> .
> NAML
> 
>



-- 
*Regards,*
Prashant Kumar* | *Mob.: +91 8408811225


image.png (258K) 





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Failed-to-download-nightly-build-FlexJS-0-9-0-tp62664p62757.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Is it possible to Convert Flex Application to HTML5

2017-06-07 Thread PKumar
Not completely, you can re-use your existing business logic and back end
serverice but view components you have to rewrite using FlexJS components
set.

On 07-Jun-2017 2:14 PM, "Gudu [via Apache Flex Development]" <
ml+s247n62212...@n4.nabble.com> wrote:

> Hello all,
>
> I have lots of MXML and ActionScript file. I have been tried to convert
> these files to HTML/JS using FlaconJX and FlexJS. I like to ask if someone
> has any success converting Flex application with FlexJS or FalconJX.
> I have followed this instruction to configure the development environment:
> https://cwiki.apache.org/confluence/display/FLEX/Falcon+and+FalconJX+
> Developer+Setup but I didn't manage to set the development environment.
>
> Is it possible to convert Flex application to HTML5/JS using FlaconJX or
> FlexJS?
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.
> com/Is-it-possible-to-Convert-Flex-Application-to-HTML5-tp62212.html
> To start a new topic under Apache Flex Development, email
> ml+s247n1...@n4.nabble.com
> To unsubscribe from Apache Flex Development, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Is-it-possible-to-Convert-Flex-Application-to-HTML5-tp62212p62214.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [ApacheCon/FlexJS Summit] FlexJS 1.0 Discussion Round - Summary

2017-05-25 Thread PKumar
Thanks for information Peter, I have started looking storage project code.
I will get back  to you for any query.

On 25-May-2017 6:24 PM, "Peter Ent-2 [via Apache Flex Development]" <
ml+s247n61889...@n4.nabble.com> wrote:

> Looks like you got some good advice about being a contributor/committer.
>
> As for the file system/storage issue. The FlexJS Storage project seems
> like a good place for all of storage/repository/file system functions to
> go. We can give them different package names within the project, too, of
> course.
>
> The key is providing functionality across the platforms which are: the
> browser, the Flash Player, Cordova, and Air. From an application
> developer's point of view, they should have a generic way to access
> storage that works on all the platform, or at least, does not crash on any
> particular platform if the platform does not support the feature. For
> example, if you want to make the device's file system available, that's
> really only available when run in Air and on mobile using Cordova; the
> browser environment prevents direct access to the underlying file system
> for security reasons. In this case, any file system classes or functions
> should compile for browser and Flash Player, even if they won't do
> anything (e.g., saving a file).
>
> Here's an example: The HTML  element provides the UI for selecting
> a file to upload. That needs to have Flash Player, equivalence
> (FileReference API), Air has a richer API for this, and I believe Cordova
> does as well. But the FlexJS class(es) that a developer would use should
> be generic:
>
>   
>
> or something like that.
>
> I hope that helps.
> —peter
>
> On 5/25/17, 1:42 AM, "PKumar" <[hidden email]
> <http:///user/SendEmail.jtp?type=node=61889=0>> wrote:
>
> >Peter,
> >
> >If u can give me few pointers then I am willing to work on this.
> >
> >One more point, right now I am not a flexjs contributer. Since one year I
> >am using flexjs and creating demos so that I can get good grip on it.
> >Now I am having free time and want to contribute to FlexJS. So What are
> >the
> >process to become official FlexJS contributer? Please suggest.
> >
> >
> >On 22-May-2017 5:50 PM, "Peter Ent-2 [via Apache Flex Development]" <
> >[hidden email] <http:///user/SendEmail.jtp?type=node=61889=1>>
> wrote:
> >
> >> The Storage package is definitely incomplete. We should address access
> >> from browser (JS & SWF) air, and Cordova.
> >>
> >> Peter
> >>
> >>
> >> > On May 21, 2017, at 10:44 AM, PKumar <[hidden email]
> >> <http:///user/SendEmail.jtp?type=node=61737=0>> wrote:
> >> >
> >> > Peter,
> >> >
> >> > As compare to regular FlexSDK , there is no way to select any file
> >>from
> >> > file system and adding file type filter on selection. Also no way to
> >> open
> >> > FileSave dialogue box.
> >> >
> >> > On 21-May-2017 7:18 PM, "Peter Ent-2 [via Apache Flex Development]" <
> >> > [hidden email] <http:///user/SendEmail.jtp?type=node=61737=1>>
>
> >> wrote:
> >> >
> >> >> The FlexJS Storage package address some storage concerns. It
> provides
> >> file
> >> >> handling when run via AIR and on mobile devices via Cordova. Since
> >> there
> >> >> are sandboxing issues with the Flash Player, I'm not sure what else
> >>we
> >> can
> >> >> do there besides local storage.
> >> >>
> >> >> ‹peter
> >> >>
> >> >> On 5/21/17, 7:25 AM, "PKumar" <[hidden email]
> >> >> <http:///user/SendEmail.jtp?type=node=61714=0>> wrote:
> >> >>
> >> >>> FileHandling  can also be a option in the list. Right now FlexJS
> not
> >> >>> having
> >> >>> any file handling capabilities.
> >> >>>
> >> >>> On 20-May-2017 5:45 PM, "yishayw [via Apache Flex Development]" <
> >> >>> [hidden email]
> >><http:///user/SendEmail.jtp?type=node=61714=1>>
> >> >> wrote:
> >> >>>
> >> >>>> Items 1-9 were considered musts.
> >> >>>>
> >> >>>> Fontkit library port (item 7) made it to the list because it was
> >> >>>> blocking
> >> >>>> Maven builds. I think Chris has found a workaround, so

Re: [ApacheCon/FlexJS Summit] FlexJS 1.0 Discussion Round - Summary

2017-05-24 Thread PKumar
Peter,

If u can give me few pointers then I am willing to work on this.

One more point, right now I am not a flexjs contributer. Since one year I
am using flexjs and creating demos so that I can get good grip on it.
Now I am having free time and want to contribute to FlexJS. So What are the
process to become official FlexJS contributer? Please suggest.


On 22-May-2017 5:50 PM, "Peter Ent-2 [via Apache Flex Development]" <
ml+s247n61737...@n4.nabble.com> wrote:

> The Storage package is definitely incomplete. We should address access
> from browser (JS & SWF) air, and Cordova.
>
> Peter
>
>
> > On May 21, 2017, at 10:44 AM, PKumar <[hidden email]
> <http:///user/SendEmail.jtp?type=node=61737=0>> wrote:
> >
> > Peter,
> >
> > As compare to regular FlexSDK , there is no way to select any file from
> > file system and adding file type filter on selection. Also no way to
> open
> > FileSave dialogue box.
> >
> > On 21-May-2017 7:18 PM, "Peter Ent-2 [via Apache Flex Development]" <
> > [hidden email] <http:///user/SendEmail.jtp?type=node=61737=1>>
> wrote:
> >
> >> The FlexJS Storage package address some storage concerns. It provides
> file
> >> handling when run via AIR and on mobile devices via Cordova. Since
> there
> >> are sandboxing issues with the Flash Player, I'm not sure what else we
> can
> >> do there besides local storage.
> >>
> >> ‹peter
> >>
> >> On 5/21/17, 7:25 AM, "PKumar" <[hidden email]
> >> <http:///user/SendEmail.jtp?type=node=61714=0>> wrote:
> >>
> >>> FileHandling  can also be a option in the list. Right now FlexJS not
> >>> having
> >>> any file handling capabilities.
> >>>
> >>> On 20-May-2017 5:45 PM, "yishayw [via Apache Flex Development]" <
> >>> [hidden email] <http:///user/SendEmail.jtp?type=node=61714=1>>
> >> wrote:
> >>>
> >>>> Items 1-9 were considered musts.
> >>>>
> >>>> Fontkit library port (item 7) made it to the list because it was
> >>>> blocking
> >>>> Maven builds. I think Chris has found a workaround, so maybe we can
> >>>> strike
> >>>> that off.
> >>>>
> >>>> Post meeting there was some agreement that a better looking default
> >>>> theme
> >>>> was also a must. Leonidas said he would provide us with the graphics.
> >>>> That
> >>>> would be very helpful in my opinion.
> >>>>
> >>>>
> >>>> --
> >>>> If you reply to this email, your message will be added to the
> >> discussion
> >>>> below:
> >>>>
> >>>> https://na01.safelinks.protection.outlook.com/?url=
> >> http%3A%2F%2Fapache-fl
> >>>> ex-development.247.n4.nabble=02%7C01%7C%7C9e768268022a4555dcd008
>
> >>
> >>>> d4a03dfbb9%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63630963545957906
>
> >>
> >>>> 9=D4m8GDMEUC5WcEpHcxKSDOGHnc4MXZx3fhT4ksecVw0%3D=0.
> >>>> com/ApacheCon-FlexJS-Summit-FlexJS-1-0-Discussion-Round-
> >>>> Summary-tp61700p61703.html
> >>>> To start a new topic under Apache Flex Development, email
> >>>> [hidden email] <http:///user/SendEmail.jtp?type=node=61714=2>
> >>>> To unsubscribe from Apache Flex Development, click here
> >>>>
> >>>> <https://na01.safelinks.protection.outlook.com/?url=
> >> http%3A%2F%2Fapache-f
> >>>> lex-development.247.n4.nabble.com%2Ftemplate%2FNamlServlet.jtp%3Fmacr
>
> >>
> >>>> o%3Dunsubscribe_by_code%26node%3D1%26code%
> 3DcHJhc2hha3VtYXJAZ21haWwuY29tf
> >>
> >>>> DF8LTU0MTcyMzE2NA=02%7C01%7C%7C9e768268022a4555dcd008d4a03dfbb9%7Cfa
>
> >>
> >>>> 7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636309635459579069=FGQ9vpd
>
> >>
> >>>> yMvICZ4dTpGxOsYF0hWp%2FMPg6x%2FwB3thsayM%3D=0==>
> >>>> .
> >>>> NAML
> >>>>
> >>>> <https://na01.safelinks.protection.outlook.com/?url=
> >> http%3A%2F%2Fapache-f
> >>>> lex-development.247.n4.nabble.com%2Ftemplate%2FNamlServlet.jtp%3Fmacr
>
> >>
> >>>> o%3Dmacro_viewer%26id%3Dinstant_html%2521nabble%253Aemail.naml%26base%3Dn
>
> >>
> >>>> abble.naml.namespa

Re: [ApacheCon/FlexJS Summit] FlexJS 1.0 Discussion Round - Summary

2017-05-21 Thread PKumar
Peter,

As compare to regular FlexSDK , there is no way to select any file from
file system and adding file type filter on selection. Also no way to open
FileSave dialogue box.

On 21-May-2017 7:18 PM, "Peter Ent-2 [via Apache Flex Development]" <
ml+s247n61714...@n4.nabble.com> wrote:

> The FlexJS Storage package address some storage concerns. It provides file
> handling when run via AIR and on mobile devices via Cordova. Since there
> are sandboxing issues with the Flash Player, I'm not sure what else we can
> do there besides local storage.
>
> ‹peter
>
> On 5/21/17, 7:25 AM, "PKumar" <[hidden email]
> <http:///user/SendEmail.jtp?type=node=61714=0>> wrote:
>
> >FileHandling  can also be a option in the list. Right now FlexJS not
> >having
> >any file handling capabilities.
> >
> >On 20-May-2017 5:45 PM, "yishayw [via Apache Flex Development]" <
> >[hidden email] <http:///user/SendEmail.jtp?type=node=61714=1>>
> wrote:
> >
> >> Items 1-9 were considered musts.
> >>
> >> Fontkit library port (item 7) made it to the list because it was
> >>blocking
> >> Maven builds. I think Chris has found a workaround, so maybe we can
> >>strike
> >> that off.
> >>
> >> Post meeting there was some agreement that a better looking default
> >>theme
> >> was also a must. Leonidas said he would provide us with the graphics.
> >>That
> >> would be very helpful in my opinion.
> >>
> >>
> >> --
> >> If you reply to this email, your message will be added to the
> discussion
> >> below:
> >>
> >>https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-fl
> >>ex-development.247.n4.nabble=02%7C01%7C%7C9e768268022a4555dcd008
>
> >>d4a03dfbb9%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63630963545957906
>
> >>9=D4m8GDMEUC5WcEpHcxKSDOGHnc4MXZx3fhT4ksecVw0%3D=0.
> >> com/ApacheCon-FlexJS-Summit-FlexJS-1-0-Discussion-Round-
> >> Summary-tp61700p61703.html
> >> To start a new topic under Apache Flex Development, email
> >> [hidden email] <http:///user/SendEmail.jtp?type=node=61714=2>
> >> To unsubscribe from Apache Flex Development, click here
> >>
> >><https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-f
> >>lex-development.247.n4.nabble.com%2Ftemplate%2FNamlServlet.jtp%3Fmacr
>
> >>o%3Dunsubscribe_by_code%26node%3D1%26code%3DcHJhc2hha3VtYXJAZ21haWwuY29tf
>
> >>DF8LTU0MTcyMzE2NA=02%7C01%7C%7C9e768268022a4555dcd008d4a03dfbb9%7Cfa
>
> >>7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636309635459579069=FGQ9vpd
>
> >>yMvICZ4dTpGxOsYF0hWp%2FMPg6x%2FwB3thsayM%3D=0==>
> >> .
> >> NAML
> >>
> >><https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-f
> >>lex-development.247.n4.nabble.com%2Ftemplate%2FNamlServlet.jtp%3Fmacr
>
> >>o%3Dmacro_viewer%26id%3Dinstant_html%2521nabble%253Aemail.naml%26base%3Dn
>
> >>abble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNames
>
> >>pace-nabble.view.web.template.NodeNamespace%26breadcrumbs%3Dnotify_subscr
>
> >>ibers%2521nabble%253Aemail.naml-instant_emails%2521nabble%253Aemail.naml-
>
> >>send_instant_email%2521nabble%253Aemail.naml=02%7C01%7C%7C9e76826802
>
> >>2a4555dcd008d4a03dfbb9%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63630
>
> >>9635459579069=VVuCGtlA2uJ2eu4LI9uKVYKFElfHNdBz0uQpNe%2F%2BBGY%3D
>
> >>served=0>
> >>
> >
> >
> >
> >
> >--
> >View this message in context:
> >https://na01.safelinks.protection.outlook.com/?url=
> http%3A%2F%2Fapache-fle
> >x-development.247.n4.nabble.com%2FApacheCon-FlexJS-Summit-FlexJS-1-0-D
>
> >iscussion-Round-Summary-tp61700p61713.html=02%7C01%7C%7C9e768268022a4
>
> >555dcd008d4a03dfbb9%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C636309635
>
> >459579069=BTZ1%2FXsfjGT7XLQEFFvVz5L%2F1F0XIqB5BzxxaVT0%2Fb0%3D
>
> >ved=0
> >Sent from the Apache Flex Development mailing list archive at Nabble.com.
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.
> com/ApacheCon-FlexJS-Summit-FlexJS-1-0-Discussion-Round-
> Summary-tp61700p61714.html
> To start a new topic under Apache Flex Development, email
> ml+s247n1...@n4.nabble.com
> To unsubscribe from Apache Flex Develop

Re: [ApacheCon/FlexJS Summit] FlexJS 1.0 Discussion Round - Summary

2017-05-21 Thread PKumar
FileHandling  can also be a option in the list. Right now FlexJS not having
any file handling capabilities.

On 20-May-2017 5:45 PM, "yishayw [via Apache Flex Development]" <
ml+s247n6170...@n4.nabble.com> wrote:

> Items 1-9 were considered musts.
>
> Fontkit library port (item 7) made it to the list because it was blocking
> Maven builds. I think Chris has found a workaround, so maybe we can strike
> that off.
>
> Post meeting there was some agreement that a better looking default theme
> was also a must. Leonidas said he would provide us with the graphics. That
> would be very helpful in my opinion.
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.
> com/ApacheCon-FlexJS-Summit-FlexJS-1-0-Discussion-Round-
> Summary-tp61700p61703.html
> To start a new topic under Apache Flex Development, email
> ml+s247n1...@n4.nabble.com
> To unsubscribe from Apache Flex Development, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/ApacheCon-FlexJS-Summit-FlexJS-1-0-Discussion-Round-Summary-tp61700p61713.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Table

2017-04-21 Thread PKumar
This will be really helpful Peter. Thanks

On 22-Apr-2017 12:52 AM, "Peter Ent [via Apache Flex Development]" <
ml-node+s247n61270...@n4.nabble.com> wrote:

> Hi,
>
> I've just committed/pushed a new FlexJS component (and its helpers) to the
> HTML project. It is the  component. I saw that there were JS-only
> fragments of Table present and decided to make an official SWF/JS version.
>
> The idea is to create a clean  HTML structure and mimic it in the
> Flash Player. For a first-pass, it does a pretty good job.
>
> It works something like this:
>
> 
> 
>  
>
>  
>  
> 
> 
> 
>  
> 
> 
> 
> 
> 
>
> You can place nearly anything inside of a cell (I tried it with another
> Table and Groups). If you need it to scroll, place it within 
> and add a  bead to the Container.
>
> Regards,
> Peter
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.
> com/FlexJS-Table-tp61270.html
> To start a new topic under Apache Flex Development, email
> ml-node+s247n1...@n4.nabble.com
> To unsubscribe from Apache Flex Development, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-Table-tp61274.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Container work status

2017-03-18 Thread PKumar
Peter, can I test this in FlexJs nightly build?

On 16-Mar-2017 5:38 PM, "Peter Ent [via Apache Flex Development]" <
ml-node+s247n60509...@n4.nabble.com> wrote:

Thanks for letting me know. I will try to be quick.

‹peter

On 3/16/17, 4:11 AM, "Justin Mclean" <[hidden email]
> wrote:

>Hi,
>
>The current changes have broken the layout in our application (not
>unexpected). When you feel it at a stable state just say so and we set if
>we can fix it up and report back any issues.
>
>Thanks,
>Justin



--
If you reply to this email, your message will be added to the discussion
below:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Container-work-
status-tp60417p60509.html
To start a new topic under Apache Flex Development, email
ml-node+s247n1...@n4.nabble.com
To unsubscribe from Apache Flex Development, click here

.
NAML





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Container-work-status-tp60417p60563.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS][FalconJX] Dual output Compilation

2017-03-10 Thread PKumar
Alex,

I downloaded the flexjs dual nightly build and it is working as expected
but one thing I want to point out here is that if I am not adding
"-compiler.target SWF" compiler option in FB 4.7 then I am getting compiler
error. If you want to check error screen shot, I can send you.

On 07-Mar-2017 7:01 AM, "Alex Harui [via Apache Flex Development]" <
ml-node+s247n60197...@n4.nabble.com> wrote:

> Hi,
>
> I think I finally have the dual branch operational enough for folks to
> poke at.  There is one issue with FB integration where it keeps starting a
> compile right after the previous compile finishes.  I'm looking into that
> today, but for now I just go to Project Properties and switch to another
> FlexJS SDK.
>
> One goal of the dual branch was to have one invocation of the compiler
> generate both SWF and JS output.  That way, if you are using an IDE like
> FlashBuilder and save your changes, the compiler will generate both SWF
> and JS and catch any differences in the underlying APIs.
>
> Another goal was to allow FlexJS classes to generate overrides of Flash
> classes but with FlexJS types.  This would give us better control over the
> APIs presented to FlexJS customers.  For example, in Flash, Sprite has a
> dispatchEvent method that takes a flash.events.Event.  We'd like to tell
> our users that UIBase has a dispatchEvent that takes an
> org.apache.flex.events.Event.  But if you write:
>
>   class UIBase extends Sprite
>   {
> override public function
> dispatchEvent(event:org.apache.flex.events.Event):Boolean
> {
> }
>   }
>
> The compiler normally returns an error since the base class has:
>
>   public function dispatchEvent(event:flash.events.Event):Boolean
>
>
> But now we can add metadata to our dispatchEvent override.
>
>   [SWFOverride(params="flash.events.Event",
> altparams="org.apache.flex.events.Event:org.apache.flex.events.MouseEvent")
>
> ]
>   override public function
> dispatchEvent(event:org.apache.flex.events.Event):Boolean
>
> And the FlexJS compiler will allow the override without an error.
> However, it will actually generate SWF code for event being a
> flash.events.Event since the runtime would otherwise throw an exception
> about illegal overrides. As long as org.apache.flex.events.Event extends
> flash.events.Event on the SWF side, then the code will operate normally in
> the player.
>
>
> The combination of these two goals make Flash Builder integration a bit
> more seamless.  Before, you would save your changes and compile a SWF,
> then go and run an Eclipse launch script that ran the cross-compiler.  And
> errors found during the cross-compile couldn't be clicked on in the
> problems pane.  But now, on each save you spend a bit more time compiling
> for both platforms, but you immediately see errors against the JS APIs and
> can examine them from the problems pane.  I found some missing APIs while
> testing this.
>
> In addition, the flex-config.xml and air-config.xml files have between
> tweaked to be JS-oriented.  IOW, the external-library-path and
> library-path in those files point to JS.swc and the FlexJS JS SWCs (like
> BasicJS.swc).  This means that code-hinting is oriented towards the JS API
> surface. That prevents a lot of Flash-only APIs from showing up in the
> code hinting.  We might want to figure out a way to hide APIs since some
> of the offerings don't have Flash support either.
>
> One cool outcome of this work is that we can now generate the JS output
> without playerglobal.swc or airglobal.swc.  I think they are needed for
> Flash Builder to think of the SDK as a Flex SDK, but if you are not using
> FB and just using Ant or Maven, it should be possible to create a release
> package for those Ant and Maven customers that have no Adobe dependencies!
>  Of course, that means that you won't get SWF output, which I think is
> still beneficial for many reasons, but if you think you don't need the SWF
> output, we could come up with a release package that is truly all ALv2
> compatible.
>
> I made changes to the Maven mojos to exercise this dual output code, but
> I'm waiting on Christofer and other maven experts to decide whether I've
> broken any Maven rules.   Maven doesn't really need these changes since
> you essentially dictate what outputs you want in the POM anyway.  The main
> benefit of dual output was for IDEs like Flash Builder.
>
> Anyway, you can try to use the Installer and install the FlexJS Dual build
> or build it from the repos.  If you use the repos, be sure to get both the
> flex-falcon and flex-asjs dual branches and build flex-falcon first.
>
> Let me know what you think.
> -Alex
>
>
>
>
>
> --
> If you reply to this email, your message will be added to the discussion
> below:
> http://apache-flex-development.247.n4.nabble.com/FlexJS-FalconJX-Dual-
> output-Compilation-tp60197.html
> To start a new topic under Apache Flex Development, email
> ml-node+s247n1...@n4.nabble.com
> To 

Re: [FlexJS] Panel

2017-03-09 Thread PKumar
ChromeContainer should be fine. We should be able to modify the panel title
bar style as header corlor , border etc.

Can Panel title bar contain other controls as image , button , check box?


On 09-Mar-2017 9:37 PM, "piotrz [via Apache Flex Development]" <
ml-node+s247n60286...@n4.nabble.com> wrote:

Hi Peter,

Let's say that you reconstructed Panel using new Group container - How can
we use there Chrome ?

I would go with ChromedContainer.

Piotr
Apache Flex PMC
piotrzarzyck...@gmail.com


--
If you reply to this email, your message will be added to the discussion
below:
http://apache-flex-development.247.n4.nabble.com/FlexJS-Panel-
tp60285p60286.html
To start a new topic under Apache Flex Development, email
ml-node+s247n1...@n4.nabble.com
To unsubscribe from Apache Flex Development, click here

.
NAML





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Panel-tp60285p60287.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


FlexjS: Unable to download Apache FlexJS Dual Nightly Build

2017-03-06 Thread PKumar
Hi,

I am unable to download FlexJS Dual or flexJS nightly build and getting the
following error. Please suggest.

Version 3.1.0 (windows)
Using Locale: en_US
Fetched the SDK download mirror URL from the CGI.
AIR version 24.0
Flash Player version 24.0
Creating Apache FlexJS home
Creating temporary directory
Downloading Apache FlexJS
from:http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs-dual/lastSuccessfulBuild/artifact/out/apache-flex-flexjs-0.8.0-bin.zip
Verifying Apache FlexJS MD5 Signature
The Apache FlexJS MD5 Signature of the downloaded files does not match the
reference value. The file is invalid, installation is aborted.
Installation aborted

Regards,
Prashant



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexjS-Unable-to-download-Apache-FlexJS-Dual-Nightly-Build-tp60165.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS][AMF] branch feature/amf - Starting the effort!! (Special Thanks to PKumar!)

2017-02-19 Thread PKumar
Carlos,

for testing, you can commented out the reflection API related code. just
dispatch the result event.  Reflection code i used for mapping the Object to
a particular class object as we do with registerClassAlias in regular flex
sdk.

I am also struggling with Reflection API and do not know ,how to use
correctly.

Thanks,
Prashant



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-AMF-branch-feature-amf-Starting-the-effort-Special-Thanks-to-PKumar-tp59640p59654.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Some things still missing ni FlexJS

2017-01-11 Thread PKumar
Alex,

I have ported the following amfjs library in FlexjS and working fine with
BlazeDS. But due to busy schedule i could  not further continue on class
mapping part. Currently i am getting the Object from BlazeDS with one
"_explicitType" field. Now i need to map that Object to correct class.
Hopefully this week i will do some progress.

https://github.com/emilkm/amfjs




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Some-things-still-missing-ni-FlexJS-tp57985p58164.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Tour de FlexJS

2017-01-11 Thread PKumar
This is really great. i am porting AMFJS in FlexJS and half part done and now
figuring the class mapping part.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Tour-de-FlexJS-tp58119p58160.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Data-binding fails when following multiple references

2017-01-09 Thread PKumar
@Sanker,

I checked the same scenario with minor changes. You need to use bit more
code to achieve the binding in FlexjS. use following code to achieve correct
binding behavior,

[Bindable] privatevar anyClass:ClassA = new ClassA(); 
protected function onTextInputChangeA(event:Event):void 
{ 
anyClass.fieldA = myTI1.text; 
} 

protected function onTextInputChangeB(event:Event):void 
{ 
anyClass.subClass.fieldB = myTI2.text; 
} 
... 



 
 
 

... 







--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Data-binding-fails-when-following-multiple-references-tp58022p58053.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: AW: How to put an example online

2016-12-30 Thread PKumar
I  have seen the following URL without login.

https://s.apache.org/MDLExample

Controls are looking great. it will be better if we can use individual
control and create demo for other users. As we have example in tour de flex.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/How-to-put-an-example-online-tp57619p57681.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJX][Falcon] Binding support fixes/improvements

2016-12-06 Thread PKumar
@Sankar, FlexJS  binding support is not similar to regular Flex SDK binding
and FlexJS DataGrid. FlexJS having the supported classes for runtime data
update in DataGrid and dataprovider. If you need  the sample code. i will
check in my demo list & share with you.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJX-Falcon-Binding-support-fixes-improvements-tp54632p57041.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Team Page

2016-11-12 Thread PKumar
this is really inspiring. could you please share source code?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Team-Page-tp56450p56464.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: inflate/deflate

2016-11-02 Thread PKumar
Currently i am trying to port amfjs library only, Porting the RemoteObject
involves more tasks as having  ChannelSet,  Channel & Operation classes so i
can pick it in future.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/inflate-deflate-tp56108p56171.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: inflate/deflate

2016-10-31 Thread PKumar
I used   with my  custom custom  for AMFJS integration and it
works ok. check below code:

public class AMFJS
{

/** 
 * 
 *  
 * 
 */ 
public function AMFJS()
{

}

public function sendAMFReq():void
{
COMPILE::JS
{
var amfClient:Object = new ((window as
Object).amf).Client("patientService",
"http://localhost:8080/BlazeDS/messagebroker/amf;);
var operation:Object = 
amfClient.invoke("patientService",
"getPatientNames", []);
operation.then(onResult , onFault);
}
}

private function onResult(res:Object):void
{
trace("Response =" + res);
}

private function onFault(err:Object):void
{
trace("Error=" + err);
}
}



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/inflate-deflate-tp56108p56135.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: AMFPHP support for FlexJS

2016-10-27 Thread PKumar
I am digging in to AMFJS and tested it with AMFPHP & Blazeds. Currently i am
trying to use AMFJS functions  in FlexJS side. I am also looking the FlexSDK
RemoteObject implementation and registerclassAlias implementation, so that i
can get more information on this. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/AMFPHP-support-for-FlexJS-tp56066p56086.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Form component?

2016-10-17 Thread PKumar
2) A form-like thing for RIAs/single-page apps.  We might need someone to 
research how other JS frameworks handle single-screen apps and Forms. 
Maybe they don't use Form under the covers and replicate a lot of the 
functionality, or maybe there is some way to override the Form action and 
keep your app running. 
- this can be achieved using "VerticalColumnLayout" & HTTPService call. No
separate  control should be required.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Form-component-tp55839p55868.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS][0.8.0] Binding issue on swf side

2016-10-04 Thread PKumar
Just try once  making your private variable to public. [Bindable] with
Private variable is not working properly. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-0-8-0-Binding-issue-on-swf-side-tp55563p55571.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FLEXJS][FALCONJX] News on the Spark-like component set

2016-09-22 Thread PKumar
Great News Alex,  now FlexJS will be backward-compatible and great milestone
in converting existing Flex application to FlexJS.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FLEXJS-FALCONJX-News-on-the-Spark-like-component-set-tp52004p55267.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.