Re: PDO vs mysqli Web Service Return Values

2017-04-07 Thread bilbosax
I hear what you are saying, but I don't think I understand what I need to do.
The services are written in PHP and they communicate with Flex using Zend
AMF. There isn't any tags or code in the PHP files that indicate to use AMF,
I think that it just automatically happens with Zend.

Which brings us to the Flex side. When I connect to a PHP service file, why
would Flex recognize the type identifiers in the data stream in one PHP
service, but not the other? I have never had to mess with registerClassAlias
to get Flex to recognize the type identifiers before, so I feel like
something must be wrong on the PHP side, on what or how I am sending it.

I'm probably missing something in my thinking. Could you perhaps give me a
little more direction on steps I could take to help identify the problem, or
what I need to do on the Flex side to get it to recognize the type
identifiers in the data stream?

Thanks



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/PDO-vs-mysqli-Web-Service-Return-Values-tp14970p15002.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Crippling Lag - Windows 10 IE11 - FlashPlayer / IBM ILOG Elixir

2017-04-07 Thread Alex Harui


On 4/7/17, 4:04 AM, "DarrenEvans" 
wrote:

>I think the staticRenderHandler is a red herring, FTETextField sets event
>listeners up to call that method on every RENDER and ENTER_FRAME so we'd
>expect that to be called all the time.

Yes, if you single step for a while and end up back at debugTickler, then
you saw all of the AS3 running in the frame, and it looks like there isn't
any serious work for it to do.

Of course, if you can also get a debugger on the SWF when it isn't having
the performance problem, you can compare to see if it is running the same
AS3 and rule it out.

I think the next step is to start comparing working vs non-working.
Compare the stage size.  Amount of memory.  Networking configuration.  I
would swear that Flash uses up more cycles on a slower network, but I
don't have definitive proof.

Also, are there any other configuration differences?  Screen depth,
resolution, etc?  Super-high-resolution screens could take more time to
render.

There was also some performance issues related to line drawing.  If you
draw lines with different line-joins, some line-joins because really slow.

In another case I saw, a bug kept a tiny Flash Authoring SWF they were
using for either a wait cursor or some advertising running.

HTH
-Alex


>
>Here are some screenshots that may provide some more insight and make
>things
>a bit clearer from what I'm seeing in Scout.
>
>The first is showing the time line for, logging in, navigating to a really
>basic screen and then leaving it idle. The idle time is the selected
>portion. See the uncategorized "Runtime Overhead" making up pretty much
>all
>the time:
>ex-users.246.n4.nabble.com%2Ffile%2Fn14991%2FBasic_Idle_Time.png=
>02%7C01%7C%7Ce29525ffb3464e48aaae08d47da72cf2%7Cfa7b1b5a7b34438794aed2c178
>decee1%7C0%7C0%7C636271604362597995=Ah3Kexnd6xb0natn7z8L2jK8eKjwnNRD
>%2BWOgpwOxrPw%3D=0>
>
>The second is showing the time line for, logging in, navigating to a part
>of
>the system which has our most complicated usage of the ILOG Ganntt
>component, then leaving it idle. Again the idle portion is the selected
>section, notice how much higher the orange section is when in this part of
>the system. Again nearly all time in "Runtime Overhead":
>ex-users.246.n4.nabble.com%2Ffile%2Fn14991%2FILOG%252520Idle%252520Tim
>e.png=02%7C01%7C%7Ce29525ffb3464e48aaae08d47da72cf2%7Cfa7b1b5a7b34438
>794aed2c178decee1%7C0%7C0%7C636271604362597995=%2FSaKVOT2x8xdoj6PWyE
>Ewd9MD6DA35f5feLzDDtGdEo%3D=0>
>
>
>
>--
>View this message in context:
>https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-fle
>x-users.246.n4.nabble.com%2FCrippling-Lag-Windows-10-IE11-FlashPlayer-
>IBM-ILOG-Elixir-tp14958p14991.html=02%7C01%7C%7Ce29525ffb3464e48aaae0
>8d47da72cf2%7Cfa7b1b5a7b34438794aed2c178decee1%7C0%7C0%7C63627160436259799
>5=FGqDrlEaQeYoCGOT0AsOOgRFnIpQXb4B0PcT1lFfKWA%3D=0
>Sent from the Apache Flex Users mailing list archive at Nabble.com.



Re: PDO vs mysqli Web Service Return Values

2017-04-07 Thread Alex Harui
Bits are just bits.  Some look like readable characters, others do not.
When you send bits from a server to a Flex app, there has to be an
agreement as to what the bits mean.  If you want to send bits that become
useful instances of data classes or value objects in Flex, you have to use
AMF or SOAP and have the right decoder/encoder set up on the Flex side.
Otherwise, you are going to get plain objects or ObjectProxy instances.

I've never used PDO or MySQL.  I'm unclear what you are using to encode
the type information in the bits.  I seem to recall that PHP has an AMF
capability.  Not sure what MySQL APIs you are using.

If you are using AMF, you have to have the registerClassAlias calls match
the type identifier in the data stream.

HTH,
-Alex

On 4/7/17, 9:06 PM, "bilbosax"  wrote:

>OK, now I am truly baffled, more so than usual :) Before attempting to
>look
>at network traffic, I decided to do a little test, totally forgetting
>about
>PDO.  I did this all in mysqli, which is what flex generates if you ask it
>to build a service.  I had flex generate a service for a table with three
>columns.  When I set the return types, it generated a string and two
>numbers
>- working perfectly.  I then created my own service using the same order
>and
>structure of mysqli code as the service Flex generated.  There were two
>notable differences.  One is that my service is dynamic and has to bind
>the
>variables using an array instead of individual parameters.  I don't think
>this should make a difference.  The second is that my service has 59
>columns
>to retrieve instead of 3.  When I try to set the return types on MY
>service,
>I get a primitive object instead of individually typed fields.
>
>So, it doesn't seem to matter in my case whether I use PDO or mysqli, my
>return type is always a primitive object.  Why is this???
>
>My only guess is that Flex is unable or unwilling to type that many
>columns,
>and therefore just defaults to a primitive object, and leaves it up to me
>to
>handle inside of Flex instead of in PHP.
>
>Any thoughts???
>
>
>
>--
>View this message in context:
>https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fapache-fle
>x-users.246.n4.nabble.com%2FPDO-vs-mysqli-Web-Service-Return-Values-tp
>14970p14999.html=02%7C01%7C%7Cdc1194482d654719592b08d47e35eb9d%7Cfa7b
>1b5a7b34438794aed2c178decee1%7C0%7C0%7C636272217453822794=UNsG2%2F2J
>hSrNYbuGadosBMwv1u%2BKnTfmOSQYH5R%2BGjY%3D=0
>Sent from the Apache Flex Users mailing list archive at Nabble.com.



Re: PDO vs mysqli Web Service Return Values

2017-04-07 Thread bilbosax
OK, now I am truly baffled, more so than usual :) Before attempting to look
at network traffic, I decided to do a little test, totally forgetting about
PDO.  I did this all in mysqli, which is what flex generates if you ask it
to build a service.  I had flex generate a service for a table with three
columns.  When I set the return types, it generated a string and two numbers
- working perfectly.  I then created my own service using the same order and
structure of mysqli code as the service Flex generated.  There were two
notable differences.  One is that my service is dynamic and has to bind the
variables using an array instead of individual parameters.  I don't think
this should make a difference.  The second is that my service has 59 columns
to retrieve instead of 3.  When I try to set the return types on MY service,
I get a primitive object instead of individually typed fields.

So, it doesn't seem to matter in my case whether I use PDO or mysqli, my
return type is always a primitive object.  Why is this???

My only guess is that Flex is unable or unwilling to type that many columns,
and therefore just defaults to a primitive object, and leaves it up to me to
handle inside of Flex instead of in PHP.

Any thoughts???



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/PDO-vs-mysqli-Web-Service-Return-Values-tp14970p14999.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Compiling flex project using maven

2017-04-07 Thread Maxim Solodovnik
Thanks a lot Chris,

I have added additional repositories
But no luck so far:

*mvn clean install -U*
[INFO] Scanning for projects...
Downloading:
https://repo.maven.apache.org/maven2/org/apache/flex/compiler/4.15.0/compiler-4.15.0.pom
Downloading:
http://repository.sonatype.org/content/groups/flexgroup/org/apache/flex/compiler/4.15.0/compiler-4.15.0.pom
[WARNING] The POM for org.apache.flex:compiler:pom:4.15.0 is missing, no
dependency information available
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Unresolveable build extension: Plugin
net.flexmojos.oss:flexmojos-maven-plugin:7.1.0 or one of its dependencies
could not be resolved: Failure to find org.apache.flex:compiler:pom:4.15.0
in https://repo.maven.apache.org/maven2 was cached in the local repository,
resolution will not be reattempted until the update interval of central has
elapsed or updates are forced @
[ERROR] Unknown packaging: swf @ line 24, column 13
 @
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR]   The project org.apache.openmeetings:omvideo:1.0.0-SNAPSHOT
(/home/solomax/work/tmp/flex-maven/pom.xml) has 2 errors
[ERROR] Unresolveable build extension: Plugin
net.flexmojos.oss:flexmojos-maven-plugin:7.1.0 or one of its dependencies
could not be resolved: Failure to find org.apache.flex:compiler:pom:4.15.0
in https://repo.maven.apache.org/maven2 was cached in the local repository,
resolution will not be reattempted until the update interval of central has
elapsed or updates are forced -> [Help 2]
[ERROR] Unknown packaging: swf @ line 24, column 13
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions,
please read the following articles:
[ERROR] [Help 1]
http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2]
http://cwiki.apache.org/confluence/display/MAVEN/PluginManagerException


Maybe dependency coordinates are wrong?
I found org.apache.flex and org.apache.flex.framework groups in maven which
one is correct?

On Fri, Apr 7, 2017 at 8:44 PM, Christofer Dutz 
wrote:

> Hi Maxim,
>
> If you are not seeing some cool asci-art Flex Logo in your build, you are
> not using the flex-sdk-converter that should kick in automatically.
> This is probably due to the fact that we haven’t released that yet and it
> is only available as a SNAPSHOT version from the ASF Maven repo.
> In order to tell Maven about that, you need to provide it in your maven
> settings.xml … for an example see the “settings-template.xml” files in the
> flexjs repo [1]
>
> But if you are using fontkit libraries for font embedding you will
> probably be running into another problem as the download is done from
> sourceforge servers and a non-us JDK isn’t able to download from there
> automatically. You need to manually install the Java Cryptography Extension
> from here [2].
>
> Hope that helps …
>
> Chris
>
> [1] https://github.com/apache/flex-asjs/blob/develop/settings-template.xml
> [2] http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-
> 2133166.html
>
>
>
> Am 07.04.17, 12:55 schrieb "Maxim Solodovnik" :
>
> Hello All,
>
> I'm trying to create my first project using this [1] guide
> Unfortunately it fails with following error:
>
> [ERROR] [ERROR] Some problems were encountered while processing the
> POMs:
> [ERROR] Unresolveable build extension: Plugin
> net.flexmojos.oss:flexmojos-maven-plugin:7.1.0 or one of its
> dependencies
> could not be resolved: Failure to find org.apache.flex:compiler:pom:
> 4.15.0
> in https://repo.maven.apache.org/maven2 was cached in the local
> repository,
> resolution will not be reattempted until the update interval of
> central has
> elapsed or updates are forced @
>
> Here is this dummy project: https://github.com/solomax/flex-maven (no
> code
> at all ...)
> Maven 3.3.9
> Java 1.8.121
>
> Would appreciate you can help me :)
>
> [1]
> https://cwiki.apache.org/confluence/display/FLEX/Quick+
> Start+Guide:+Building+Apache+Flex+applications+using+Maven#
> QuickStartGuide:BuildingApacheFlexapplicationsusingMaven-SWFArtifact
>
> --
> WBR
> Maxim aka solomax
>
>
>


-- 
WBR
Maxim aka solomax


Re: Flexmojos Maven Apache Flex Error 1014

2017-04-07 Thread rodol...@essencialcode.com.br
Chris, very thanks for your help; 

I just did exactly this and many other forms, but it still showing me the
same error, unfortunetly...

Man I'm really pissed with this, I'm trying to fix this for many days, read
uncountable web pages with possible solutions, just tried almos anything...

My project has 1 parent pom and 3 modules, 2 swcs and 1 swf, that holds the
entire project; I really don't see what is wrong in it; even the adobe
framework does not respect the configuration copying libraries, I specified
{artifactId}-{version}.{extension} in first pom and it copies
only the {artifactId}.{extension};

I really wanted to work this out, I'm trying hard almost two weeks and
nothing; 












--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Flexmojos-Maven-Apache-Flex-Error-1014-tp14976p14997.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Anyone using IntelliJ for Flex Dev?

2017-04-07 Thread Christofer Dutz
I’m not using anything else than IntelliJ ;-)
Haven’t used FB for more than 8 years now … never missed anything.

Chris



Von: "Erik J. Thomas" 
Antworten an: "users@flex.apache.org" 
Datum: Donnerstag, 6. April 2017 um 23:09
An: "users@flex.apache.org" 
Betreff: Anyone using IntelliJ for Flex Dev?

Hey all:

Long time Flex developer (started with Flex Builder 2) currently working on a 
mobile app for iOS and Android.

Finally took the plunge to switch from FlashBuilder 4.7 to IntelliJ with Flex 
plug in as my IDE.

Was just wondering if anyone on this list is using IntelliJ for Flex mobile 
development? It works great for the most part, especially web apps, but there 
are some issues configuring it with custom application descriptors and 
packaging for IOS/Android using AIR that appear to require some time figuring 
custom ADT options to get assets deployed to IPA root.

I'd be willing to engage a consultant for a few hours to help get us get these 
issues worked out.

Unfortunately, IntelliJ user community is so small, my posts to that forum go 
unanswered. Thought I'd reach out for paid help.

Let me know if you're interested.

Thanks.

Erik

Erik Thomas
Chief Architect

PastedGraphic-1.tiff

http://linqto.com


This email may contain confidential and privileged material for the sole use of 
the intended recipient. Any review or distribution by others is strictly 
prohibited. If you are not the intended recipient, please contact the sender 
and delete all copies.



Re: Compiling flex project using maven

2017-04-07 Thread Christofer Dutz
Hi Maxim,

If you are not seeing some cool asci-art Flex Logo in your build, you are not 
using the flex-sdk-converter that should kick in automatically. 
This is probably due to the fact that we haven’t released that yet and it is 
only available as a SNAPSHOT version from the ASF Maven repo.
In order to tell Maven about that, you need to provide it in your maven 
settings.xml … for an example see the “settings-template.xml” files in the 
flexjs repo [1]

But if you are using fontkit libraries for font embedding you will probably be 
running into another problem as the download is done from sourceforge servers 
and a non-us JDK isn’t able to download from there automatically. You need to 
manually install the Java Cryptography Extension from here [2].

Hope that helps … 

Chris

[1] https://github.com/apache/flex-asjs/blob/develop/settings-template.xml
[2] 
http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html



Am 07.04.17, 12:55 schrieb "Maxim Solodovnik" :

Hello All,

I'm trying to create my first project using this [1] guide
Unfortunately it fails with following error:

[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Unresolveable build extension: Plugin
net.flexmojos.oss:flexmojos-maven-plugin:7.1.0 or one of its dependencies
could not be resolved: Failure to find org.apache.flex:compiler:pom:4.15.0
in https://repo.maven.apache.org/maven2 was cached in the local repository,
resolution will not be reattempted until the update interval of central has
elapsed or updates are forced @

Here is this dummy project: https://github.com/solomax/flex-maven (no code
at all ...)
Maven 3.3.9
Java 1.8.121

Would appreciate you can help me :)

[1]

https://cwiki.apache.org/confluence/display/FLEX/Quick+Start+Guide:+Building+Apache+Flex+applications+using+Maven#QuickStartGuide:BuildingApacheFlexapplicationsusingMaven-SWFArtifact

-- 
WBR
Maxim aka solomax




Re: PDO vs mysqli Web Service Return Values

2017-04-07 Thread bilbosax
I'll look into it and post back. Even if I were to do it, I am not sure that
I would understand what I am looking at as I am pretty sure it will not look
like an array flowing through the network to my eyes. But I have never done
it so we will see.



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/PDO-vs-mysqli-Web-Service-Return-Values-tp14970p14994.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Anyone using IntelliJ for Flex Dev?

2017-04-07 Thread Gary Yang
Just use Grade Fx plugin, Google it, it's perfect with intelliJ

On Fri, Apr 7, 2017, 7:27 AM Michael Gaston  wrote:

> Hello, Smart People:
>
> I do not use IntelliJ for Flex Dev. However, I wish to offer my services
> as a web developer. I have one year experience and my GPA is 3.7 from a
> regionally accredited university.
>
> I can program all kinds of web pages. I have skills in the following
> languages and frameworks:
>
> Django
> Rails
> Zend
> Meteor
> Node
> JBoss
> ReactJS
> Backbone
> Angular
> Ember
> Vue
> Drupal
> Joomla
> Wordpress
> Silverstripe
>
> Also:
> Python, Ruby, C, C++, C#, Java, Javascript, Visual Basic,
> Flex,Actionscript, you name it, I know it.
>
> Please respond if you are interested in hiring me, an omnipotent web
> developer with many years experience in all languages listed above. I am 20
> years old and will work much harder than  programmers that should have
> retired a long time ago.
>
> If you are not interested, please remove me from your list. ( WINK, WINK)
>
> HAVE A NICE DAY,
> YOUR AWESOME WEB DEVELOPER,
>
> On Apr 7, 2017, at 4:32 AM, Paul Moreau > wrote:
>
> I recently switched from FB to IntelliJ also.
>
> For the most part the switch was fairly pain free but I do find the auto
> complete & syntax highlighting to be a bit buggy particularly in  > blocks in my mxml files.
>
> My main issue is this one :
> https://youtrack.jetbrains.com/issue/IDEA-106027  which there is no
> timeline on fixing.
>
> Aside from that my app builds & packages exactly as it did in FlashBuilder.
>
> If you could send some details about the specific issues you are having or
> provide links to the forums where you posted maybe someone in here could
> offer some help ?
>
> Thanks,
>
> Paul
>
> On Thu, Apr 6, 2017 at 10:09 PM, Erik J. Thomas > wrote:
> Hey all:
>
> Long time Flex developer (started with Flex Builder 2) currently working
> on a mobile app for iOS and Android.
>
> Finally took the plunge to switch from FlashBuilder 4.7 to IntelliJ with
> Flex plug in as my IDE.
>
> Was just wondering if anyone on this list is using IntelliJ for Flex
> mobile development? It works great for the most part, especially web apps,
> but there are some issues configuring it with custom application
> descriptors and packaging for IOS/Android using AIR that appear to require
> some time figuring custom ADT options to get assets deployed to IPA root.
>
> I'd be willing to engage a consultant for a few hours to help get us get
> these issues worked out.
>
> Unfortunately, IntelliJ user community is so small, my posts to that forum
> go unanswered. Thought I'd reach out for paid help.
>
> Let me know if you're interested.
>
> Thanks.
>
> Erik
>
> Erik Thomas
> Chief Architect
>
> [cid:12B2045C-930A-42BA-8B4E-91C3953F7BD8]
>
> http://linqto.com
>
> This email may contain confidential and privileged material for the sole
> use of the intended recipient. Any review or distribution by others is
> strictly prohibited. If you are not the intended recipient, please contact
> the sender and delete all copies.
>
>
>
>
> --
> DISCLAIMER: This electronic message together with any attachments is
> confidential.
> If you are not the intended recipient, do not copy, disclose or use the
> contents in
> any way. Please also advise us by return e-mail that you have received the
> message
> and then please destroy. Zutec  Ltd is not responsible for any changes
> made to this message and / or any attachments after sending by Zutec. We
> use virus
> scanning software but exclude all liability for viruses or anything
> similar in this
> email or any attachment.
>


Re: Anyone using IntelliJ for Flex Dev?

2017-04-07 Thread Michael Gaston
Hello, Smart People:

I do not use IntelliJ for Flex Dev. However, I wish to offer my services as a 
web developer. I have one year experience and my GPA is 3.7 from a regionally 
accredited university.

I can program all kinds of web pages. I have skills in the following languages 
and frameworks:

Django
Rails
Zend
Meteor
Node
JBoss
ReactJS
Backbone
Angular
Ember
Vue
Drupal
Joomla
Wordpress
Silverstripe

Also:
Python, Ruby, C, C++, C#, Java, Javascript, Visual Basic, Flex,Actionscript, 
you name it, I know it.

Please respond if you are interested in hiring me, an omnipotent web developer 
with many years experience in all languages listed above. I am 20 years old and 
will work much harder than  programmers that should have retired a long time 
ago.

If you are not interested, please remove me from your list. ( WINK, WINK)

HAVE A NICE DAY,
YOUR AWESOME WEB DEVELOPER,

On Apr 7, 2017, at 4:32 AM, Paul Moreau 
> wrote:

I recently switched from FB to IntelliJ also.

For the most part the switch was fairly pain free but I do find the auto 
complete & syntax highlighting to be a bit buggy particularly in  
blocks in my mxml files.

My main issue is this one : https://youtrack.jetbrains.com/issue/IDEA-106027  
which there is no timeline on fixing.

Aside from that my app builds & packages exactly as it did in FlashBuilder.

If you could send some details about the specific issues you are having or 
provide links to the forums where you posted maybe someone in here could offer 
some help ?

Thanks,

Paul

On Thu, Apr 6, 2017 at 10:09 PM, Erik J. Thomas 
> wrote:
Hey all:

Long time Flex developer (started with Flex Builder 2) currently working on a 
mobile app for iOS and Android.

Finally took the plunge to switch from FlashBuilder 4.7 to IntelliJ with Flex 
plug in as my IDE.

Was just wondering if anyone on this list is using IntelliJ for Flex mobile 
development? It works great for the most part, especially web apps, but there 
are some issues configuring it with custom application descriptors and 
packaging for IOS/Android using AIR that appear to require some time figuring 
custom ADT options to get assets deployed to IPA root.

I'd be willing to engage a consultant for a few hours to help get us get these 
issues worked out.

Unfortunately, IntelliJ user community is so small, my posts to that forum go 
unanswered. Thought I'd reach out for paid help.

Let me know if you're interested.

Thanks.

Erik

Erik Thomas
Chief Architect

[cid:12B2045C-930A-42BA-8B4E-91C3953F7BD8]

http://linqto.com

This email may contain confidential and privileged material for the sole use of 
the intended recipient. Any review or distribution by others is strictly 
prohibited. If you are not the intended recipient, please contact the sender 
and delete all copies.




--
DISCLAIMER: This electronic message together with any attachments is 
confidential.
If you are not the intended recipient, do not copy, disclose or use the 
contents in
any way. Please also advise us by return e-mail that you have received the 
message
and then please destroy. Zutec  Ltd is not responsible for any changes
made to this message and / or any attachments after sending by Zutec. We use 
virus
scanning software but exclude all liability for viruses or anything similar in 
this
email or any attachment.


Re: Crippling Lag - Windows 10 IE11 - FlashPlayer / IBM ILOG Elixir

2017-04-07 Thread DarrenEvans
I think the staticRenderHandler is a red herring, FTETextField sets event
listeners up to call that method on every RENDER and ENTER_FRAME so we'd
expect that to be called all the time.

Here are some screenshots that may provide some more insight and make things
a bit clearer from what I'm seeing in Scout.

The first is showing the time line for, logging in, navigating to a really
basic screen and then leaving it idle. The idle time is the selected
portion. See the uncategorized "Runtime Overhead" making up pretty much all
the time:

 

The second is showing the time line for, logging in, navigating to a part of
the system which has our most complicated usage of the ILOG Ganntt
component, then leaving it idle. Again the idle portion is the selected
section, notice how much higher the orange section is when in this part of
the system. Again nearly all time in "Runtime Overhead":

 



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Crippling-Lag-Windows-10-IE11-FlashPlayer-IBM-ILOG-Elixir-tp14958p14991.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Compiling flex project using maven

2017-04-07 Thread Maxim Solodovnik
Hello All,

I'm trying to create my first project using this [1] guide
Unfortunately it fails with following error:

[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[ERROR] Unresolveable build extension: Plugin
net.flexmojos.oss:flexmojos-maven-plugin:7.1.0 or one of its dependencies
could not be resolved: Failure to find org.apache.flex:compiler:pom:4.15.0
in https://repo.maven.apache.org/maven2 was cached in the local repository,
resolution will not be reattempted until the update interval of central has
elapsed or updates are forced @

Here is this dummy project: https://github.com/solomax/flex-maven (no code
at all ...)
Maven 3.3.9
Java 1.8.121

Would appreciate you can help me :)

[1]
https://cwiki.apache.org/confluence/display/FLEX/Quick+Start+Guide:+Building+Apache+Flex+applications+using+Maven#QuickStartGuide:BuildingApacheFlexapplicationsusingMaven-SWFArtifact

-- 
WBR
Maxim aka solomax


Re: Crippling Lag - Windows 10 IE11 - FlashPlayer / IBM ILOG Elixir

2017-04-07 Thread DarrenEvans
Tom Chiverton wrote
> Graphics drivers ? Maybe acceleration is disabled ?

I did wonder about graphic drivers. All the machines I've seen this happen
on are touch screens. However, the client's machine are not touch screen.

Hardware acceleration is on for the machines I've played around with.
Ironically, searching FlashPlayer lag in google and some people solve their
issue it by turning Hardware Acceleration off. On or off it still exhibits
the problem.




--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Crippling-Lag-Windows-10-IE11-FlashPlayer-IBM-ILOG-Elixir-tp14958p14989.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Crippling Lag - Windows 10 IE11 - FlashPlayer / IBM ILOG Elixir

2017-04-07 Thread DarrenEvans
Alex Harui wrote
> "Other" includes "Other (activities such as garbage collection, event
> processing, and so on)"

It's not GC (that has it's own activity which can be seen) it's the sub
section activity "Runtime Overhead"


Alex Harui wrote
> If you have a debugger on it, I would just wait until the app is supposed
> to be idle, then set a breakpoint on debugTickler in Application.as.  Then
> single step and it should step you into all AS that is running.  I've had
> that show me things that are unexpected.

Now that is a great little trick I didn't know about! 

Done that and its then stepping into the method staticRenderHandler on
mx.Core.FTETextField.as. No call stack, it doesn't do anything, nothing is
in invalidFields, so it just exits. debugTickler gets called again and we go
back into staticRenderHandler. 

Where do I go from here? Without a call stack I can't see what's initiating
this call






--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Crippling-Lag-Windows-10-IE11-FlashPlayer-IBM-ILOG-Elixir-tp14958p14988.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Flexmojos Maven Apache Flex Error 1014

2017-04-07 Thread Christofer Dutz
Hi Rodolpho,

I think the problem might be that you have “create-rsl” in an SWF project, I 
would simply remove that execution.
Another thing is that unfortunately things have changed in Maven and now one 
bug we have been relying on heavily has been “fixed”.
The thing is that using non-standard scopes (such as rsl) the transitive 
resolution no longer works. This means you have to explicitly
Add rsl scoped dependencies to all swcs that you need.

I did see that you added spark as a direct dependency, so I don’t think it’s 
that problem. Just try removing the “create-rsl” execution for a start.

Chris


Am 06.04.17, 19:46 schrieb "rodol...@essencialcode.com.br" 
:

Hello everyone, 

I really need your help; I am trying to compile an extense flex
project(4.15) using Maven and FlexMojos (7.1.0), just solved many problems
until here, finally got success in last compilation process, but when I
execute it using the generated html page there is one problem I'm trying to
solve unsuccessfully;

VerifyError: Error #1014: Class spark.components::Application could not be
found.

I just tried in many ways to put the dependencies in swf pom, modified the
order, made many changes but the error still there, visited many pages and
examples, just tried almost everything and nothing; 

Somebody can help me ? thanks in advance; Here is my final swf pom.xml :


http://maven.apache.org/POM/4.0.0;
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd;>
  4.0.0
  
   
  

  
  swf
  ...
  
  
 src
 
 
   
  src/br/
   
   
  src/br/com/...
   
 
 
 
   

net.flexmojos.oss
flexmojos-maven-plugin
${flexmojos.version}
true



create-rsl

create-rsl




wrapper

  wrapper




.
100%
100%
   
${flash.framework.version}
   
${flash.framework.version}
#FF











{artifactId}-${flex.sdk.version}.{extension}


   true
true


mx.managers.systemClasses.MarshallingSupport



en_US
   


 ...   


 













   
   

  

Re: Anyone using IntelliJ for Flex Dev?

2017-04-07 Thread Paul Moreau
I recently switched from FB to IntelliJ also.

For the most part the switch was fairly pain free but I do find the auto
complete & syntax highlighting to be a bit buggy particularly in  blocks in my mxml files.

My main issue is this one : https://youtrack.jetbrains.com/issue/IDEA-106027
which there is no timeline on fixing.

Aside from that my app builds & packages exactly as it did in FlashBuilder.

If you could send some details about the specific issues you are having or
provide links to the forums where you posted maybe someone in here could
offer some help ?

Thanks,

Paul

On Thu, Apr 6, 2017 at 10:09 PM, Erik J. Thomas  wrote:

> Hey all:
>
> Long time Flex developer (started with Flex Builder 2) currently working
> on a mobile app for iOS and Android.
>
> Finally took the plunge to switch from FlashBuilder 4.7 to IntelliJ with
> Flex plug in as my IDE.
>
> Was just wondering if anyone on this list is using IntelliJ for Flex
> mobile development? It works great for the most part, especially web apps,
> but there are some issues configuring it with custom application
> descriptors and packaging for IOS/Android using AIR that appear to require
> some time figuring custom ADT options to get assets deployed to IPA root.
>
> I'd be willing to engage a consultant for a few hours to help get us get
> these issues worked out.
>
> Unfortunately, IntelliJ user community is so small, my posts to that forum
> go unanswered. Thought I'd reach out for paid help.
>
> Let me know if you're interested.
>
> Thanks.
>
> Erik
>
> *Erik Thomas*
> Chief Architect
>
>
> http://linqto.com
>
> This email may contain confidential and privileged material for the sole
> use of the intended recipient. Any review or distribution by others is
> strictly prohibited. If you are not the intended recipient, please contact
> the sender and delete all copies.
>
>


-- 






*DISCLAIMER: This electronic message together with any attachments is
confidential. If you are not the intended recipient, do not copy, disclose
or use the contents in any way. Please also advise us by return e-mail that
you have received the message and then please destroy. Zutec  Ltd is not
responsible for any changes made to this message and / or any attachments
after sending by Zutec. We use virus scanning software but exclude all
liability for viruses or anything similar in this email or any attachment.*


Re: PDO vs mysqli Web Service Return Values

2017-04-07 Thread Tom Chiverton
Can you put WireShark or something on the network and see what the 
decoded network traffic looks like ?


Tom


On 07/04/17 08:02, bilbosax wrote:

  I'm at a loss because
a var_dump of the mysqli and PDO results show the EXACT same result
structure. If they are the same, why does flex not see them as the same? Why




Re: SWF Debugging in Visual Studio Code

2017-04-07 Thread Silvije Mudri
Thank you! 

Silvije
‎
  Originalna poruka  
Šalje: Josh Tynjala
Poslano: četvrtak, 6. travnja 2017. 22:07
Prima: users@flex.apache.org
Odgovor za: users@flex.apache.org
Predmet: Re: Re: SWF Debugging in Visual Studio Code

I cannot say for sure when ANE support will be implemented. When I start
working on the next version of the extension, I'll keep in mind that people
in the community are waiting on it.

- Josh

On Wed, Apr 5, 2017 at 7:34 PM, Silvije Mudri 
wrote:

> ‎Ok. Thank you.
> Approx. how soon can we expect the plugin update with this feature
> included?
>
> Silvije
>
> Originalna poruka
> Šalje: Josh Tynjala
> Poslano: srijeda, 5. travnja 2017. 21:47
> Prima: users@flex.apache.org
> Odgovor za: users@flex.apache.org
> Predmet: Re: Odgovor: SWF Debugging in Visual Studio Code
>
> The VSCode extension does not currently support the -extdir option when
> running AIR apps in ADL.
>
> There is a feature request to add support for ANEs in a future version:
>
> https://github.com/BowlerHatLLC/vscode-nextgenas/issues/60
>
> - Josh
>
> On Wed, Apr 5, 2017 at 12:39 PM, Silvije Mudri 
> wrote:
>
> > Hi!
> > ‎
> > I've tried to debug a flex mobile application with profile
> > extendedMobileDevice, but got this error:
> >
> > "The content cannot be loaded because there was a problem loading an
> > extension: Error: Requested extension com.freshplanet.AirNetworkInfo
> could
> > not be found."
> >
> > Can someone tell me where can I specify -extdir parameter (required by
> > adl) in launch.json?
> >
> > Silvije
> > ‎
> > ‎
> > Originalna poruka
> > Šalje: piotrz
> > Poslano: utorak, 21. ožujka 2017. 23:02
> > Prima: users@flex.apache.org
> > Odgovor za: users@flex.apache.org
> > Predmet: Re: SWF Debugging in Visual Studio Code
> >
> > Hi Olaf,
> >
> > Once I modify some file I am able jump to the other files which are part
> of
> > my project. Unfortunately it wasn't help for the framework components - I
> > still cannot jump to any of them.
> >
> > Piotr
> >
> >
> >
> > -
> > Apache Flex PMC
> > piotrzarzyck...@gmail.com
> > --
> > View this message in context: http://apache-flex-users.
> > 246.n4.nabble.com/SWF-Debugging-in-Visual-Studio-
> > Code-tp14853p14913.html
> > Sent from the Apache Flex Users mailing list archive at Nabble.com.
> >
>


Re: PDO vs mysqli Web Service Return Values

2017-04-07 Thread bilbosax
I'm sure that I could do that. I could pull the object into AIR and typecast
and break it into an arraycollection, but that just feels sloppy and
inefficient and slow. The web service structure was set up to help you
typecast your incoming data so you get exactly what you want from your
database. I want individualized fields, not an object. I'm at a loss because
a var_dump of the mysqli and PDO results show the EXACT same result
structure. If they are the same, why does flex not see them as the same? Why
will it pull one format into the app flawlessly, and the other as a
primitive object? It just doesn't make sense, I must be missing something
simple.

Surely someone has written a service in PDO haven't they? Where are you at
guys?



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/PDO-vs-mysqli-Web-Service-Return-Values-tp14970p14983.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.