Okay this is what I've got so far. I've got a shader based on the horizontal gaussian blur shader that can be found at...
165290
faizal_ac
Jul 2, 2012 6:41 am
Alex do you have anything to add that can point me in the right direction? Is there something that flash player 11.3 treats differently regarding webservices...
165291
Laurence
laurence5905
Jul 2, 2012 10:14 pm
I'm working with Flex 4.6, and I'm trying to allow a user to pan and zoom an image that's larger than the display-window... I've found a couple of Pan|Zoom...
165292
Nick Collins
ndcollins
Jul 3, 2012 11:11 am
actually listen for a RESIZE event on the view, then check if the width of the view is greater than the height. If it is, landscape, if not, portrait....
165293
Nick Collins
ndcollins
Jul 3, 2012 11:12 am
protected function view_resizeHandler(event:ResizeEvent):void { if (width>height) this.currentState="landscape"; else this.currentState="portrait"; }...
165294
Jake Churchill
reygeek
Jul 3, 2012 3:45 pm
I found out what was happening. I had a global deactivate handler (I don't want this particular app running in the background). Apparently, this gets called...
165295
Jake Churchill
reygeek
Jul 3, 2012 4:38 pm
Alex, I think I have figured out what is causing the mouse disruption. I have a background element where I display the symbol and the symbol description. ...
I'm working on a bug which has us puzzled and I'm looking for a bit of direction. When we launch our external help documents (HTML) with the following...
165298
Alex Harui
alex_harui
Jul 6, 2012 4:18 am
It appears that ExternalInterface.call takes its arguments and encodes them into XML before passing them to the HTML/JS wrapper. If there is something in the...
165299
michael_regert@...
flexcodemonkey
Jul 6, 2012 1:22 pm
Thank you Alex for your reply. Can you further clarify what you mean by "try encoding entities in the urlString and maybe the additional args". I guess I'm...
165300
Jameel Ahmad
jameelahmad1988
Jul 6, 2012 2:46 pm
Hi Michael, I have already encountered this kind of errors. Please check the XML content that is returned by the file which you call through the external ...
165301
michael_regert@...
flexcodemonkey
Jul 6, 2012 2:51 pm
Thanks. I'm not retrieving any XML content though. All we're doing is launching an external browser window to display a URL so no data is coming in. Michael...
165302
Alex Harui
alex_harui
Jul 8, 2012 4:45 am
I’m just guessing here, but I get suspicious when I see non-alphas (equal signs, dashes) in a URL. See this link:...
165303
k.sigiscar
Jul 9, 2012 8:24 am
Hi, I have a chart with dynamic series on a LinearAxis (Y) and a DateTimeAxis (X). The series visibility can be set to true / false by the user. When a series...
165304
claudiu ursica
the_braniak
Jul 9, 2012 9:43 am
Hi Karl, Can you share some basic example? I don't know how your chart and data looks like, and how you add/discard new data. I see you already ran into this...
165305
k.sigiscar
Jul 9, 2012 1:19 pm
Hi Claudiu, Yes, I saw that one. But he's using a CategoryAxis and not a DateTimeAxis (we bind the minimum and maximum properties of the DateTimeAxis to the...
165306
claudiu ursica
the_braniak
Jul 9, 2012 1:43 pm
Hi Karl, I am not an expert on the charts, I only played with an example from the docs which updates nicely. Hence the request about some basic example to see...
165307
k.sigiscar
Jul 9, 2012 3:17 pm
Hi, The minimum and maximum properties of the LinearAxis are not bound to anything and they are the ones I have problems with (values not resetting when...
165308
michael_regert@...
flexcodemonkey
Jul 9, 2012 4:41 pm
Changing the function use encoding (%3D in place of the =) causes the function to completely fail. I guess I can chalk this one up as an Adobe bug overall? ...
165309
Erik van der Neut
erique_de_la...
Jul 9, 2012 8:28 pm
In your original message you wrote: me! nubar=1 Instead of: menubar=1 I assume that was a typo in your message to this group, not in your actual code? Erik ......
165310
Erik van der Neut
erique_de_la...
Jul 9, 2012 8:29 pm
Oh, also seeing "urlStri! ng" -- must be something else then...? E ... Oh, also seeing " urlStri! ng " -- must be something else then...? E On Jul 9, 2012, at...
165311
Erik van der Neut
erique_de_la...
Jul 9, 2012 8:33 pm
Ignore me. Those got introduced halfway down the discussion, with the message from Alex Harui. Sorry, E ... Ignore me. Those got introduced halfway down the...
165312
Alex Harui
alex_harui
Jul 9, 2012 9:41 pm
I would encode the commas as well. Another test would be to simply pass in “foo” instead of “status...” to see if it is something in that string that...
165313
method_air
Jul 9, 2012 11:42 pm
The HDividerBox dividerRelease and dividerPress event listeners no longer execute after changing the current state of a parent container (and the 'drag handle'...
165314
ZIONIST
stinasius
Jul 10, 2012 11:50 am
Hi guys am trying to follow this example http://nightlycoding.com/index.php/2011/05/flex-preloader-with-greensock-tweenlite-and-tweenmax/ to create the same...
165315
Asad Zaidi
asadzaidi23
Jul 10, 2012 12:10 pm
Hi everyone,  i m having very strange problem and i m unable to identify the cause of that problem. i have added some list controls on my screen and...
165316
Alex Harui
alex_harui
Jul 10, 2012 4:44 pm
What error are you getting? On 7/10/12 4:50 AM, "ZIONIST" <stinasius@...> wrote: Hi guys am trying to follow this example...
165317
k.sigiscar
Jul 11, 2012 2:29 pm
Hi Claudiu, Here is part of the existing code of the custom component. Data is invalidated in the dataProvider setter and used in commitProperties: override...
165318
k.sigiscar
Jul 11, 2012 2:48 pm
I checked the Flex JIRA bugs and found this entry, which might explain the problem: https://bugs.adobe.com/jira/browse/FLEXDMV-1674...