Re: [flexcoders] Re: Bindings on visual components being forgotten? (Flex 3 -> 4.6)

2012-03-18 Thread Alex Harui
If you take off the two-way binding does it work? On 3/18/12 7:41 PM, "Uber_Nick" wrote: I haven't tried explicitly re-setting the value manually or with BindingUtils, but that's something I'll try now! Should still be working without that. I have a feeling the problem is actually in th

RE: [flexcoders] Bindings on visual components being forgotten? (Flex 3 -> 4.6)

2012-03-16 Thread yang chen
Have you tried using binding util? > To: flexcoders@yahoogroups.com > From: nic...@gmail.com > Date: Fri, 16 Mar 2012 20:08:47 + > Subject: [flexcoders] Bindings on visual components being forgotten? (Flex 3 > -> 4.6) > > Seeing a strange, rare, issue after updating an app to 4.6. I can't

Re: [flexcoders] ControlBar not visible in Flex 4.6

2012-03-12 Thread Dave Glasser
I'm using a subclass of mx.containers.Panel. There is no controlBarContent array. From: claudiu ursica To: "flexcoders@yahoogroups.com" Sent: Monday, March 12, 2012 3:23 PM Subject: Re: [flexcoders] ControlBar not visible in Flex 4.6

Re: [flexcoders] Webcam recording without flash/flex?

2012-03-12 Thread claudiu ursica
As far as I know JS does not have support of capturing camera. If somebody else knows different I would be happy to be proven wrong. Probably you can do the same with silverlight as with flash. C From: mulchand12345 To: flexcoders@yahoogroups.com Sent: Mond

Re: [flexcoders] ControlBar not visible in Flex 4.6

2012-03-12 Thread claudiu ursica
You need to put your stuff inside controlBarContent array. C From: Dave Glasser To: "flexcoders@yahoogroups.com" Sent: Monday, March 12, 2012 5:28 PM Subject: [flexcoders] ControlBar not visible in Flex 4.6   I have an app originally developed in Flex 3.

Re: [flexcoders] ControlBar not visible in Flex 4.6

2012-03-12 Thread Dave Glasser
led. This is a Flex bug, IMHO. From: Alex Harui To: "flexcoders@yahoogroups.com" Sent: Monday, March 12, 2012 1:34 PM Subject: Re: [flexcoders] ControlBar not visible in Flex 4.6 Re: [flexcoders] ControlBar not visible in Flex 4.6 Post a small

Re: [flexcoders] ControlBar not visible in Flex 4.6

2012-03-12 Thread Alex Harui
Post a small test case. On 3/12/12 9:28 AM, "Dave Glasser" wrote: I have an app originally developed in Flex 3.3, which I'm in the process of migrating to Flex 4.6. I don't want to have to rewrite everything using Spark components and containers. I have a mx.containers.TitleWindow with

RE: [flexcoders] Flex Menu.createMenu on mouseDown issue

2012-03-08 Thread Philip Smith
That works. Thanks. To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Thu, 8 Mar 2012 14:38:38 -0800 Subject: Re: [flexcoders] Flex Menu.createMenu on mouseDown issue Did you try callLater on createAndhow? On 3/8/12 9:30 AM

Re: [flexcoders] Flex Menu.createMenu on mouseDown issue

2012-03-08 Thread Alex Harui
y://ns.adobe.com/flex/mx" width="400" height="300"> ! ; &nb! sp; To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Wed, 7 Mar 2012 22:55:23 -

RE: [flexcoders] Flex Menu.createMenu on mouseDown issue

2012-03-08 Thread Philip Smith
Substitute this button code to see the menu create fail: To: flexcoders@yahoogroups.com From: loudj...@hotmail.com Date: Thu, 8 Mar 2012 17:27:45 + Subject: RE: [flexcoders] Flex Menu.createMenu on mouseDown issue The menu

RE: [flexcoders] Flex Menu.createMenu on mouseDown issue

2012-03-08 Thread Philip Smith
To: flexcoders@yahoogroups.com From: aha...@adobe.com Date: Wed, 7 Mar 2012 22:55:23 -0800 Subject: Re: [flexcoders] Flex Menu.createMenu on mouseDown issue

Re: [flexcoders] Flex Menu.createMenu on mouseDown issue

2012-03-07 Thread Alex Harui
What happens? On 3/7/12 6:06 PM, "method_air" wrote: Attempting to create a flex Menu on 'mouseDown' is failing (but works using the 'click' event): private function createAndShow():void { var myMenu:Menu = Menu.createMenu(null, myMenuData, false); myMenu.show(10, 10); } ]]> I

RE: [flexcoders] Flex Menu.hide listener...which component was clicked to close menu?

2012-03-07 Thread Philip Smith
I figured this one out...added a stage mouse down listener, and found the value in MouseEvent target. To: flexcoders@yahoogroups.com From: loudj...@hotmail.com Date: Thu, 8 Mar 2012 00:20:21 + Subject: [flexcoders] Flex Menu.hide listener...which component was clicked to close menu?

Re: [flexcoders] CSS Type selectors are not supported in component

2012-03-07 Thread Alex Harui
You are not inheriting from UIComponent? I’m not sure how well that is tested. You might just need to implement some IStyleXXX interface, but there’s a chance it is just not going to work. On 3/7/12 1:53 AM, "k.sigiscar" wrote: Hi, I have a custom ActionScript component with a lot of

Re: [flexcoders] Re: Tap Android app slow to respond.

2012-03-06 Thread James Ong
Yup, mobile hardware are not as powerful as desktop PC that why there are spark components optimize for mobile, but some of the 2nd generation smartphone aren't good enough, I hope LG 4x that use quad-core can overcome the limitation. So did you code in AS3 or Flex mobile project? On Wed, Mar 7,

Re: [flexcoders] How to find intersection point between a lineseries and a vertical line.

2012-03-06 Thread Brendan Meutzner
I replied to the thread you mention below with the solution as well, but here I'll paste below here as well... Here are a few functions I wrote years ago for common chart transformations... the function you're going to focus on for your solution is chartToScreen... /** * Converts the screen p

Re: [flexcoders] Flex mobile - fullscreen on acer tablet ?

2012-02-27 Thread Csomák Gábor
It is Android ICS and Honeycomb limitation. You won't access that space on a factory firmware. Try it with the video player. same problem there. I hate this on my Xoom.. but it seems like Android either not want to pay, or not stable enough to use iPads finger gesture like program switching, rather

Re: [flexcoders] Adding a button in VideoPlayer

2012-02-23 Thread grimmwerks
*cough* well I *did* -- but for some reason I had public var overlayButton:ButtonBase; [SkinPart(required="false")] rather than [SkinPart(required="false")] public var overlayButton:ButtonBase; I *knew* it was something stupid… Thanks! On Feb 23, 2012, at 2:47 PM, claudiu ursica wrote: >

Re: [flexcoders] Adding a button in VideoPlayer

2012-02-23 Thread claudiu ursica
Can you show code, I assume you marked the button as skinPart. C From: grimmwerks To: flexcoders@yahoogroups.com Sent: Thursday, February 23, 2012 8:41 PM Subject: [flexcoders] Adding a button in VideoPlayer   Ok I don't know if I'm going absolutely crazy

Re: [flexcoders] Re: Adobe AIR run time Installer

2012-02-23 Thread James Ong
You have to export an AIR on Mac using Mac OS X. You will not be able to export a Mac installer from Windows environment. On Thu, Feb 23, 2012 at 8:47 PM, heman wrote: > ** > > > By using captive run time, the give the file will be with".exe" > extension.But we cannot use .exe in Mac. > > --- In

Re: [flexcoders] Adobe AIR run time Installer

2012-02-23 Thread James Ong
AIR 3.0 runtime for Linux is not supported. You could export a release version with Capitive Runtime that only found on FB 4.6. On Thu, Feb 23, 2012 at 7:02 PM, heman wrote: > ** > > > Hello all, > > I am developing adobe AIR application. I would like to bundle AIR runtime > installer with my ap

Re: [flexcoders] How Can I Rewind/Replay SWF

2012-02-22 Thread Alex Harui
Maybe: transition.content.currentFrame=0 On 2/22/12 4:01 PM, "freewillie0800" wrote: My Flex expert (my brother) is at a Buddhist retreat for 3 months and I need help. I have a Flex application where the intro is a looping SWF file. When someones click on the intro, I start a transitio

Re: [flexcoders] Flex popup module ignores context menu

2012-02-21 Thread Adnan Doric
Thank you! I just remembered the related bug: https://bugs.adobe.com/jira/browse/SDK-25598 Cheers, Adnan On 21/02/2012 07:27, Alex Harui wrote: Set mouseEnabled=true on the TitleWindow On 2/20/12 3:29 AM, "Adnan Doric" wrote: Hi all, I followed the Alex's Popup Dialogs as Mo

Re: [flexcoders] Flex popup module ignores context menu

2012-02-20 Thread Alex Harui
Set mouseEnabled=true on the TitleWindow On 2/20/12 3:29 AM, "Adnan Doric" wrote: Hi all, I followed the Alex's Popup Dialogs as Modules blog entry: http://blogs.adobe.com/aharui/2007/08/popup_dialogs_as_modules.html It works with mx.containers.TitleWindow as intended, the context menu s

Re: [flexcoders] Re: popup on screen certer? [1 Attachment]

2012-02-19 Thread Jeff Gomes
Mark- I don't know what you did to test this, but I was not guessing at my answer. This is something I actually use (FB 4.6, btw, in case that matters). As my gift to you, here is my simple Alert component that extends s:SkinnablePopUpContainer (attached as a ZIP and also pasted into the mes

Re: [flexcoders] Re: Line Chart like Task Manager

2012-02-18 Thread Brendan Meutzner
Geoff, Not literally Zero data, but blank data. I modified the following simple example from StackOverflow to show what you can do... see the link, and then the modified code below. http://stackoverflow.com/questions/3233357/flex-extending-x-axis-on-linechart-for-unknown-future-data http:

Re: [flexcoders] popup on screen certer?

2012-02-17 Thread Jeff Gomes
PopUpManager.centerPopUp(pop); On 2/17/2012 14:36, markflex2007 wrote: > Hi > > I use build a pop component for mobile app > > and use the following code to call the popup > > var pop:PopUpWindows = new PopUpWindows(); > pop.open(this,true); > > > but the popup

Re: [flexcoders] Re: Line Chart like Task Manager

2012-02-15 Thread Brendan Meutzner
Geoff, You can create a large dataset with empty, or 0 values, for your Y Axis. Then when you populate data from your service, add/append those values to the end of your dataset, while removing an equal number of empty values from the beginning of the dataset. If you've created an ArrayCollectio

Re: [flexcoders] Line Chart like Task Manager

2012-02-15 Thread Tandon, Rishi
Geoff, you can  check the Stock chart from amcharts http://flex.amcharts.com/examples/stock_chart_example  Regards, Rishi Tandon From: gtb104 To: flexcoders@yahoogroups.com Sent: Wednesday, February 15, 2012 8:30 PM Subject: [flexcoders] Line Chart like Task

Re: [flexcoders] external debugger

2012-02-14 Thread Wouter Schreuders
thanks! I'll have a look 2012/2/14 Csomák Gábor > ** > > > http://demonsterdebugger.com/ is the wery best. i think you'll be happy > with it. > > > On Thu, Feb 9, 2012 at 12:22 PM, Wouter Schreuders > wrote: > >> >> >> well the kind of functionality I'm looking for is really for the back end >

Re: [flexcoders] external debugger

2012-02-14 Thread Csomák Gábor
http://demonsterdebugger.com/ is the wery best. i think you'll be happy with it. On Thu, Feb 9, 2012 at 12:22 PM, Wouter Schreuders wrote: > > > well the kind of functionality I'm looking for is really for the back end > programmers, occasionally they need to dip into the flex side of things and

Re: [flexcoders] different handling of mouseWheelEvents in internet explorer and firefox/Chrome

2012-02-10 Thread Wouter Schreuders
it's the same version of flash player(11.1.102.55) On 9 February 2012 21:22, Rishi Tandon wrote: > ** > > > Have u checked the version of flash player plugin installed for IE? > > Sent from my iPad > > On 09-Feb-2012, at 5:26 PM, Wouter Schreuders > wrote: > > > > Hi All > > I've been having pr

Re: [flexcoders] Advantages and Disadvantages of skinning

2012-02-10 Thread The Real Napster
In the march 2010 skinning concept was introduced in version Flex 4. Its been almost 2 years, it seems like many people don't have in depth knowledge of skinning. I am struggling a lot to understand skinning properly. I have started looking into it very recently and I think its not much useful unti

Re: [flexcoders] Advantages and Disadvantages of skinning

2012-02-10 Thread Tandon, Rishi
February 9, 2012 10:37 PM Subject: RE: [flexcoders] Advantages and Disadvantages of skinning   I think the skinning allows the components to be lighter.  But it makes everything a lot more complex.   A month ago I started a thread on what the pieces in a skin mean and not one person was able to

Re: [flexcoders] Advantages and Disadvantages of skinning

2012-02-10 Thread Haykel BEN JEMIA
The new skinning architecture in Flex 4 separates business logic and design for a component. The component itself contains only the functionality (the M and C of the MVC pattern) and the skin defines its visual aspect (the V of MVC). If used correctly, you can change the design (skin) of a componen

RE: [flexcoders] Advantages and Disadvantages of skinning

2012-02-09 Thread Davidson, Jerry
I think the skinning allows the components to be lighter. But it makes everything a lot more complex. A month ago I started a thread on what the pieces in a skin mean and not one person was able to respond so there seems to be a learning curve at work. From: flexcoders@yahoogroups.com [mai

Re: [flexcoders] Multiple service calls in Flex Application?

2012-02-09 Thread Tandon, Rishi
Hi Mark, The service calls (I am assuming RMI) are asynchronous and you can make as many as RMI (HTTP, Web Service, Remote Class) in an flex application. You can also use some framework to chain concurrent calls in flex. Try Chaining API of SWIZ (http://swizframework.jira.com/wiki/display/SWIZ/

RE: [flexcoders] Displaying spark scrollbars for mx components wrapped in a scroller

2012-02-09 Thread Philip Smith
. To: flexcoders@yahoogroups.com From: hayke...@gmail.com Date: Thu, 9 Feb 2012 08:19:38 +0100 Subject: Re: [flexcoders] Displaying spark scrollbars for mx components wrapped in a scroller The child of the Scroller (called viewport) must resize freel

Re: [flexcoders] different handling of mouseWheelEvents in internet explorer and firefox/Chrome

2012-02-09 Thread Rishi Tandon
Have u checked the version of flash player plugin installed for IE? Sent from my iPad On 09-Feb-2012, at 5:26 PM, Wouter Schreuders wrote: > Hi All > > > I've been having problems with the amount of scrolling that happens when you > use the mouse-wheel with VScrollBar. I came up with two pos

Re: [flexcoders] external debugger

2012-02-09 Thread Wouter Schreuders
well the kind of functionality I'm looking for is really for the back end programmers, occasionally they need to dip into the flex side of things and they have a lot of difficulty figuring out which class they need to work on(for instance you have your application, then a module, then a component w

Re: [flexcoders] Displaying spark scrollbars for mx components wrapped in a scroller

2012-02-08 Thread Haykel BEN JEMIA
The child of the Scroller (called viewport) must resize freely for scrolling to work. If you set its size to '100%' then it will always have the size of the scroller and scrolling will never be required. Try this (not tested): Haykel Ben Jemia Allmas Web & Mobile Development http://

Re: [flexcoders] Advantages and Disadvantages of skinning

2012-02-08 Thread James Ong
There only 3's advatanages and disadvantages: Pros: Customizable to distingish itself; ex, cancel button is red in color. More personalize for different applications rather than using boring theme style. Unique-ness Cons: Incurred more CPU processing Increase memory consumption for using Bitmap

Re: [flexcoders] external debugger

2012-02-08 Thread Alex Harui
FDB comes with the SDK. It is command-line, but I use it 99% of the time as it is way faster than the GUI debugger in FlashBuilder for most problems I have to solve. On 2/7/12 11:06 PM, "Wouter Schreuders" wrote: Hi All Can anyone recommend a debugger for flex that allows you to inspec

Re: [flexcoders] privacy settings popup

2012-02-08 Thread Csomák Gábor
thanks On Wed, Feb 8, 2012 at 2:52 PM, claudiu ursica wrote: > > You can't, FP does not provide a close event for that panel. There was a > request in Jira but I am not sure what the status of this is You need > to listen for camera events and guess. There is activity and status events. > I

Re: [flexcoders] privacy settings popup

2012-02-08 Thread claudiu ursica
You can't, FP does not provide a close event for that panel. There was a request in Jira but I am not sure what the status of this is  You need to listen for camera events and guess. There is activity and status events. In addition what I do I start a timer and monitor for a couple of second

RE: [flexcoders] Flex 3 -> 4 migration and s:States

2012-02-07 Thread Sells, Fred
m] On Behalf Of Tandon, Rishi Sent: Tuesday, February 07, 2012 4:35 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 3 -> 4 migration and s:States Well I tried your code in flex sdk 4.6 and could not include as it is deprecated. But replacing with

Re: [flexcoders] Flex 3 -> 4 migration and s:States

2012-02-07 Thread The Real Napster
In that example he has mentioned like bellow. WORKS *but not this one* mx inside s ok but s inside mx is not ok. Is it ok!! Thanks. And I don't know why are you so desperate to use spark inside mx, using spark is better t

Re: [flexcoders] Flex 3 -> 4 migration and s:States

2012-02-07 Thread The Real Napster
Set/assign the state( currentState="Oct2010" ) inside creationComplete handling method. Ex. protected function application1_creationCompleteHandler(event:FlexEvent):void { // TODO Auto-generated method stub this.currentState = " Oct2010"; } May be all the states might have not laid-out while execu

Re: [flexcoders] Re: "s:Image" and "s:BitmapImage"?

2012-02-07 Thread Haykel BEN JEMIA
Use Image if you want to display loading states of images, generally when loading external images based on user interaction. Use BitmapImage for skinning purposes. Haykel Ben Jemia Allmas Web & Mobile Development http://www.allmas-tn.com On 7 February 2012 15:38, markflex2007 wrote: > ** >

Re: [flexcoders] Flex 3 -> 4 migration and s:States

2012-02-07 Thread Tandon, Rishi
Well I tried your code in flex sdk 4.6 and could not include as it is deprecated. But replacing with works like a butter. Please refer to the code below: http://ns.adobe.com/mxml/2009"    xmlns:s="library://ns.adobe.com/flex/spark"    xmlns:mx="library://ns.adobe.com/flex/mx"> Fl

Re: [flexcoders] soundchannels for 3+ speakers

2012-02-06 Thread James Ong
*Multichannel audio digital output* (AIR for TV only). Adobe AIR for TV can now play Dolby Digital Plus 5.1 Surround and DTS 5.1 audio streams. The new Capabilities.hasMultiChannelAudio property, the new AudioDecoder class (containing constants representing several different multichannel audio type

Re: [flexcoders] spark scrollbar skinning

2012-02-06 Thread Wouter Schreuders
in Flash Build create a new skin, specify the host component as HScrollBar and FB will generate a generic HScrollBar skin for you, inside of that skin are a couple of buttons which make up the skin. Repeat this procedure for those buttons and you'll have your skin. On 2 February 2012 23:03, method

Re: [flexcoders] soundchannels for 3+ speakers

2012-02-06 Thread Csomák Gábor
yes, but i tought, if adobe wants 3d games, then maybe they'll support 3d sounds. thanks :( On Mon, Feb 6, 2012 at 1:15 PM, James Ong wrote: > > > No, both are not related. Stage3D is for graphic, not audio > > On Feb 6, 2012 8:06 PM, "Csomák Gábor" wrote: > > > > > > > > Hi! > > Since Stage3D

Re: [flexcoders] soundchannels for 3+ speakers

2012-02-06 Thread James Ong
No, both are not related. Stage3D is for graphic, not audio On Feb 6, 2012 8:06 PM, "Csomák Gábor" wrote: > > > > Hi! > Since Stage3D is out, can you play sounds from specific speakers in AIR? Like in a 5.1 system, use the center? > Thanks > >

Re: [flexcoders] Problems creating/updating DB record with selection from DropDownList

2012-02-05 Thread Scott Fanetti
It looks like you are setting the status on the change in the drop down list but not casting it. Is that your issue? The change handler does not seem attached - what is triggering it? When you debug it - what are the contents of the drop down list data provider? Sent from my iPhone On Feb 5

Re: [flexcoders] "s:Image" and "s:BitmapImage"?

2012-02-04 Thread Alex Harui
There are “primitives” and “components” in Spark. Primitives like s:BitmapImage go in a skin for a skinnable component like s:Image On 2/3/12 10:18 AM, "markflex2007" wrote: Hi, what is the different between "s:Image" and "s:BitmapImage"? I am a little confuse.Thanks Mark -- Al

Re: [flexcoders] Security Sandbox Violation for module accessing localhost rest service in dev

2012-02-03 Thread Alex Harui
Use a testing server, don’t run from file:// On 2/2/12 9:45 AM, "Greg Lafrance" wrote: Our app has a "main" module with link button, and clicking each link button loads different modules in the main content area. For only one module, we get a Security Sandbox Violation when we try to do

Re: [flexcoders] Re: Audio codecs?

2012-02-02 Thread Dan M
On 02/01/2012 05:56 PM, Dan M wrote: On 02/01/2012 03:59 PM, Dan M wrote: > I've got my encoder mostly working. I can do live streaming just fine. > However, when the streaming server on the other end archives my > streams I can't play the archived files. Looking through the > documentation for

Re: [flexcoders] spark DataGrid

2012-02-02 Thread Wouter Schreuders
Thanks, I actually decided to just rebuild the entire thing using spark lists. DataGrid seems very problematic. On 2 February 2012 10:19, Tandon, Rishi wrote: > ** > > > http://stackoverflow.com/questions/5900231/flex-4-5-hero-sdatagrid-rowcount > > > -- > *From:* W

Re: [flexcoders] spark DataGrid

2012-02-02 Thread Tandon, Rishi
http://stackoverflow.com/questions/5900231/flex-4-5-hero-sdatagrid-rowcount  From: Wouter Schreuders To: flexcoders@yahoogroups.com Sent: Wednesday, February 1, 2012 6:05 PM Subject: [flexcoders] spark DataGrid   Hi All Does anyone know how I can get the

Re: [flexcoders] TileLayout for DataGrid [1 Attachment]

2012-02-02 Thread Tandon, Rishi
Jeff, What do you mean by toggle b/w vertical & tile layout w.r.t. Data Grid? Spark's datagrid uses spark.components.gridClasses.GridLayout which is a virtual two dimensional layout for the Grid class and is not a general purpose layout, it's only intended to be use with Grid. Anyhow if you want

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.

2012-01-31 Thread Dan M
Thank you, Rishi! That helps a lot. And I was able to import that fxp file and compile with no problems. It looks like I can continue to push ahead with development and maybe learn a little more about the proper use of Flash Builder in the process. On 01/31/2012 12:43 AM, Tandon, Rishi wrote:

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.

2012-01-31 Thread Dan M
Thanks, Srinivas. It's true, I came to Flash Builder in a bit of a hurry and didn't take the time to read as much of the documentation as I should have. I had indeed not understood the FB mechanisms properly. With your explanation I understand a bit better what I need to do. Thanks again! On

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.

2012-01-31 Thread Tandon, Rishi
Never mind Srinivas, the flex development should go on and I always wish more UI developer join the force. :) From: Srinivas Sandur Madhu Murthy To: flexcoders@yahoogroups.com Sent: Tuesday, January 31, 2012 12:47 PM Subject: Re: [flexcoders] Moving my

Re: [flexcoders] Need help dynamically modifying text displayed based on DB return

2012-01-30 Thread Haykel BEN JEMIA
I think the best way is to use states. Define the different states for your component, e.g. You have now to track changes to win.status and set the current state accordingly, e.g. by listening to the property change event on win: protected function win_propertyChangeHandler(even

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.

2012-01-30 Thread Srinivas Sandur Madhu Murthy
; Rishi Tandon > > From: Srinivas Sandur Madhu Murthy > To: flexcoders@yahoogroups.com > Sent: Tuesday, January 31, 2012 10:08 AM > Subject: Re: [flexcoders] Moving my command-line development to > FlashBuilder4.6 - confused. > > > Rishi, > > Please read the

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused. [1 Attachment]

2012-01-30 Thread Tandon, Rishi
flexcoders@yahoogroups.com Sent: Tuesday, January 31, 2012 10:08 AM Subject: Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.   Rishi, Please read the complete email before you ask for something. I understand you like to help, but please read-up completely, understa

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.

2012-01-30 Thread Srinivas Sandur Madhu Murthy
Rishi, Please read the complete email before you ask for something. I understand you like to help, but please read-up completely, understand problem & then ask for things to help more. Dan, Whether you use Command-line or Flex Builder it doesn't matter, you always will try to compile 1 applic

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.

2012-01-30 Thread Dan M
On 01/30/2012 06:11 AM, Tandon, Rishi wrote: Dan, send over your mxml and as file here. There could be many reasons for the exception: 1. Compatible with the sdk. Try to change to flex sdk 3.2 or 3.6 2. Namespace inclusion. In you code, the namespace is pointed to "http://www.adobe.com/2006/mxml"

Re: [flexcoders] Moving my command-line development to FlashBuilder4.6 - confused.

2012-01-30 Thread Tandon, Rishi
Dan, send over your mxml and as file here. There could be many reasons for the exception: 1. Compatible with the sdk. Try to change to flex sdk 3.2 or 3.6 2. Namespace inclusion. In you code, the namespace is pointed to "http://www.adobe.com/2006/mxml"; Whereas, in sdk 4 onwards, we are using three

Re: [flexcoders] Flex icon filed on list

2012-01-30 Thread Isabelle Loyer Perso

RE: [flexcoders] Flex icon filed on list

2012-01-29 Thread Alex Harui
ary 29, 2012 11:04 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex icon filed on list Thanks for this answer. Can you explain to me how to refer to item renderer in AS3. Thanks Le 29/01/12 19:01, Alex Harui a écrit : The default itemrenderer doesn't load external images as

Re: [flexcoders] Flex icon filed on list

2012-01-29 Thread Isabelle Loyer Perso

RE: [flexcoders] Flex icon filed on list

2012-01-29 Thread Alex Harui
The default itemrenderer doesn't load external images as icons. You will need a custom itemRenderer. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of isa

Re: [flexcoders] explicitly setting tabbing order on an itemrenderer in a datagrid

2012-01-28 Thread Wouter Schreuders
Spark Sent from my iPad On 28 Jan 2012, at 8:51 AM, Alex Harui wrote: > Mx or spark DG? > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. > > Blog: http://blogs.adobe.com/aharui > > > > From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On > Behalf O

Re: [flexcoders] explicitly setting tabbing order on an itemrenderer in a datagrid

2012-01-28 Thread Wouter Schreuders
Spark Sent from my iPad On 28 Jan 2012, at 8:51 AM, Alex Harui wrote: > Mx or spark DG? > > > > Alex Harui > > Flex SDK Developer > > Adobe Systems Inc. > > Blog: http://blogs.adobe.com/aharui > > > > From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On > Behalf O

RE: [flexcoders] explicitly setting tabbing order on an itemrenderer in a datagrid

2012-01-27 Thread Alex Harui
Mx or spark DG? Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Wouter Schreuders Sent: Friday, January 27, 2012 1:42 AM To: flexcoders@yahoogroups.com Su

Re: [flexcoders] Re: mobile app need show a web page

2012-01-27 Thread Haykel BEN JEMIA
StageWebView Haykel. Sent from my Android phone. Le 27 janv. 2012 19:53, "markflex2007" a écrit : > ** > > > Hi, > > any way to embed HTML page in mobile application? > > it seem not uicomponent to do this for mobile. Please help. > > Mark > > --- In flexcoders@yahoogroups.com, "markflex2007"

RE: [flexcoders] Exiting from a Flex app

2012-01-26 Thread Gordon Smith
I think you can call flash.net.navigateToURL() to change the browser page. When you change the page, the instance of the Flash Player playing the old page will get terminated. - Gordon Smith, Adobe From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dan M Sent: Th

RE: [flexcoders] Evaluating a Boolean String Expression

2012-01-26 Thread Merrill, Jason
Separate out the (, ), |,not etc. by splitting the string up based on what you find. You could add some logic to split the string into an array from where those characters are found and look to the values to the left if an OR (||) is found, for example. Then put that logic into a function like b

Re: [flexcoders] Calling ViewNavigator from an .as file

2012-01-26 Thread Tandon, Rishi
I didn't got much time to read through it, but this might interest you http://devgirl.org/2011/05/18/flex-4-5-mobile-data-handling/ Regards, Rishi Tandon From: stldvd To: flexcoders@yahoogroups.com Sent: Thursday, January 26, 2012 7:21 AM Subject: [flexcoders

Re: [flexcoders] Passing query string to swf through flashplayerdebugger

2012-01-25 Thread Dan M
I'm developing on Linux, so don't have access to FlashBuilder. I'm just using the Flex SDK tools from the command line. I figured it out, though. I just make sure to move my swf over to my web server docroot and access it with flashplayerdebugger with the appropriate "?" and "&" arguments. N

RE: [flexcoders] Passing query string to swf through flashplayerdebugger

2012-01-25 Thread Alex Harui
Inc.<http://www.adobe.com/> Blog: http://blogs.adobe.com/aharui From: Alex Harui Sent: Wednesday, January 25, 2012 2:55 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Passing query string to swf through flashplayerdebugger If you are using FLashBuilder, you should be able to s

RE: [flexcoders] Passing query string to swf through flashplayerdebugger

2012-01-25 Thread Alex Harui
If you are using FLashBuilder, you should be able to see traces in the console if you use "Debug as" menu option. Usually a SWF is launched with parameters from an HTML wrapper, and FlashBuilder will start up a browser with that HTML wrapper. Alex Harui Flex SDK Developer Adobe Systems Inc.

Re: [flexcoders] I am finally became Boss...

2012-01-24 Thread anas naeem
Another one  From: srikanth reddy To: "anjaneyare...@yahoo.com" ; "bits_vi...@yahoo.co.in" ; "flexcoders@yahoogroups.com" ; "haribabun...@hotmail.com" ; "jagdish...@yahoo.com" ; "jagdish_redd...@rediffmail.com" ; "r_kiran_2...@yahoo.com" ; "kishoremmre...@y

Re: [flexcoders] Native extension for windows

2012-01-24 Thread James Ong
Try not to use NativeProcess, I have a bad experience with pipe data that couldn't read value from Java properly which is why I have implement Java socket to read and sent data over Flash XMLSocket. On Tue, Jan 24, 2012 at 10:22 PM, Tandon, Rishi wrote: > ** > > > Yes you can. Use the window.runt

Re: [flexcoders] Native extension for windows

2012-01-24 Thread Tandon, Rishi
Yes you can. Use the window.runtime.flash.desktop.NativeProcess class Video to check: http://tv.adobe.com/watch/adc-presents/invoke-native-process-in-adobe-air-2/ Regards, Rishi Tandon From: "chiek...@gmail.com" To: flexcoders@yahoogroups.com Sent: Tuesday, Ja

Re: [flexcoders] Native extension for windows

2012-01-24 Thread James Ong
Yes, you could on Windows, Mac or mobile device. On Tue, Jan 24, 2012 at 9:13 PM, chiek...@gmail.com wrote: > ** > > > Hey people! > > I want to write some native app for windows, and sadly enough I have no > experience with C or C++. Though, I can write Java... Is it possible to use > Java as Ai

Re: [flexcoders] VGroup vertical gap cannot be reduced

2012-01-20 Thread Alex Harui
You mean you set gap to 0 and nothing happened? On 1/20/12 3:26 PM, "Patricia Han" wrote: Hi, We just moved from flex 3.5 to 4.5 and found that the gap property cannot be reduced. The default is pretty big. Please let me know if you happen to know the answer. Thanks, Pat -- Alex Har

Re: [flexcoders] send failed

2012-01-20 Thread Michal Szczepanski
Try the firebug you have 99% wrong server url or port so there won't be any serverside logs 2012/1/20 Greg Morphis > > > We have an older flex app written in Flex 2 with ColdFusion as middle > ware. I haven't messed with this app or Flex in well over a year. > The app partially loads up and then

Re: [flexcoders] odd crossdomain.xml problem

2012-01-19 Thread Alex Harui
Are you setting the SecurityDomain parameter in loadStyleDeclarations? On 1/19/12 8:06 PM, "flexwdw" wrote: So, I have a situation where my app swf is separate from my stylesheet swf. I use styleManager.loadStyleDeclartions to do this. In some situations we have, my app swf actually live

Re: [flexcoders] Re: Flex alternatives

2012-01-19 Thread Dave Glasser
I'll use what I've always used. Visual SlickEdit and Apache ant. And from what I've heard, FlashDevelop (http://www.flashdevelop.org), which is mature, robust, free and open source, is also pretty good. From: Ron G To: flexcoders@yahoogroups.com Sent: Saturd

Re: [flexcoders] AIR - Content resize according window

2012-01-19 Thread Isabelle Loyer Perso

Re: [flexcoders] AIR - Content resize according window

2012-01-19 Thread Isabelle Loyer Perso

Re: [flexcoders] Re: How to access IP camera with Adobe air?

2012-01-18 Thread James Ong
You need to convert that into MPEG-4 format before it can be playback on Adobe AIR. Try google for flash video tutorial and NativeProcess to give you some idea how to implement it. The NativeProcess function in AIR is useful to control FFMPEG application in the background which can be convert the

Re: [flexcoders] Checkbox

2012-01-18 Thread Alex Harui
See the itemrenderer posts on my blog On 1/18/12 2:08 AM, "abhinay.dronamraju" wrote: Hi I am new to flex and I am not able to figure out how to stop checkboxes from randomly getting selected in a datagrid. here is the code I have so far. Thanks http://ns.adobe.com/mxml/2009"; xmlns:s="

Re: [flexcoders] Re: Flex alternatives

2012-01-18 Thread Sam Lai
On 18 January 2012 02:05, Merrill, Jason wrote: > > > The problem isn’t even that large companies are in bed with Microsoft > (that is a problem), but it’s that they have many many existing legacy > enterprise apps that only work or have only been tested to work in IE, and > those systems need to

Re: [flexcoders] Announcing Flex User Group 2012 Tour: North America Dates

2012-01-18 Thread ganaraj p r
Just a request. Would be great if you guys could record the sessions and upload on adobe tv or atleast youtube. On Wed, Jan 18, 2012 at 7:08 AM, Tandon, Rishi wrote: > ** > > > Announcing Flex User Group 2012 Tour: North America Dates > by Deepa Subramaniam > As we promised at the end of last yea

Re: [flexcoders] AIR - Content resize according window

2012-01-17 Thread Alex Harui
Set minWidth and minHeight to a small number On 1/17/12 6:28 AM, "Isabelle Loyer Perso" wrote: As I made a mistake in last message, I resend it. Hi, I have a window witch is resizing on creationcomplete phase according user preference. This part woks well. But inside this window

RE: [flexcoders] Flex 4.5: Flex in 5 Days

2012-01-17 Thread Davidson, Jerry
ogroups.com] On Behalf Of Glenn Williams Sent: Thursday, January 12, 2012 2:52 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex 4.5: Flex in 5 Days So did I. I just wanted to try it out. It may have helped that Ive been using flex for years but Im sure I just followe

<    1   2   3   4   5   6   7   8   9   10   >