[flexcoders] Re: Timeline actionscript in embedded MovieClips

2009-07-17 Thread Max Pimm
Thats the answer that i was not hoping for. Still, thanks for the info.

Re: [flexcoders] Re: AIR architectural pointers for a Flex developer

2009-07-17 Thread Erik de Bruin
Hi, We are currently building an on-/offline application with a shared codebase. In (very) short: what you need to do is start 3 (!) projects in Flex Builder: one Flex, one AIR and one library. The library wil contain most of your code (all of the code that can be shared by both platforms), while

Re: [flexcoders] Re: AIR architectural pointers for a Flex developer

2009-07-17 Thread Erik de Bruin
I managed to find a link in my bookmarks that will serve as an excelent starting point: http://www.adobe.com/devnet/air/flex/articles/flex_air_codebase.html EdB On Thu, Jul 16, 2009 at 10:40 PM, simonjpalmersimonjpal...@yahoo.com wrote: Thanks for the link. I have been through most of them -

[flexcoders] Re: AIR architectural pointers for a Flex developer

2009-07-17 Thread simonjpalmer
Thanks Erik, that's *exactly* what I was looking for. It all makes sense now. --- In flexcoders@yahoogroups.com, Erik de Bruin erikdebr...@... wrote: I managed to find a link in my bookmarks that will serve as an excelent starting point:

[flexcoders] PopUp vs other containers

2009-07-17 Thread vladakg85
How to decide do I need PopUp window or Title Window component for example? If I have button in my application and I want to after click new window shows on the screen which I can move, add other components on it bla bla... should I here use PopUpManager or something else. When and why to use

[flexcoders] Re: Timeline actionscript in embedded MovieClips

2009-07-17 Thread Max Pimm
Hi, I have associated an external class that extends movie clip to my symbol in flash and in the contstructor of the associated class i paint some personalized graphics onto my symbol. In flash this works fine and i see the symbol plus the personalized graphics. However if i embed the symbol

Re: [flexcoders] Re: Timeline actionscript in embedded MovieClips

2009-07-17 Thread Rohit Sharma
Hi Max, http://jessewarden.com/2006/08/flash-9-button-in-flex-2.html The above link might help. It has helped me a great deal in embedding flash symbols in flex. It does the same thing by defining an external class for the symbol. Regards, Rohit On Fri, Jul 17, 2009

RE: [flexcoders] PopUp vs other containers

2009-07-17 Thread Tracy Spratt
Just as you say, use a pop up when you need a component that is above the rest of the app, and perhaps needs to be moved. You can do the same this with other components, but PopUps save you a lot of coding. Tracy Spratt, Lariat Services, development services available _ From:

[flexcoders] getting problem in displaying the name of browser title

2009-07-17 Thread Krunal Panchal
Hi All,   I have created the web application in flex. I set the pageTitle property so at the frist time it will display the page title properly. but after doing some navigation it will remove the page tille when the url will be chagned with # value.   i already used the ExternalInterface.call,

[flexcoders] Events and Inheritance

2009-07-17 Thread Jake Churchill
I am still confused about how to make an event come through to an inherited class. For example, in Container.as there is a scroll event. Canvas directly extends Container. When I add canvas inside MXML I can handle the scroll event because it comes through from Container to Canvas.

RE: [flexcoders] Events and Inheritance

2009-07-17 Thread Jake Churchill
You know what, nevermind. I started another example from scratch and it inherited fine. I'm not sure what my problem was but it's working. Thanks! Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com http://www.cfwebtools.com 402-408-3733 x103

[flexcoders] FlexBuilder / eclipse Question

2009-07-17 Thread Libby
Hi FlexBuilders! I was wondering if there is an option or way to automatically return to the development perspective when you shut down the debugger? So if you do terminate (Ctrl-F2) on the app in the debugger, you would immediately swap back over to development perspective the same way you

[flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing?

2009-07-17 Thread todd.bruner
Yes, the trace statements show that the data is returned from the webservice, and that the parsing is occurring as expected. The two panels are drawn, however the titles are not set. The chart draws an X and Y axis but not actual data plotted. Thanks, Todd --- In flexcoders@yahoogroups.com,

[flexcoders] Dumb overview questions -- newbie

2009-07-17 Thread gardnerpomper
Hi, I have been reading web posts (starting with Bruce Eckels a while ago) about Flex and the more I read the more confused I get. Let me summarize what I think I have learned and then maybe the more knowledgeable here can correct me and point me to a write up that makes more sense. It sounds

[flexcoders] Profiling Error on Flash Player 10

2009-07-17 Thread ilikeflex
Hi Team When i start the profiler i get the below error 1.I am using FB 3. and flash player 10. Any pointers are highly appreciated. ReferenceError: Error #1065: Variable ContextMenuClipboardItems is not defined. at flash.ui::ContextMenu/initLinkAndClipboardProperties() at

[flexcoders] Re: AMF, IE, and a non-trusted certificate

2009-07-17 Thread Anthony DeBonis
This is still a problem but we know more now.. It's not the cert or proxy. IF we compile the Flex application with Flex 4 IT WORKS. Tried 3.2, 3.3,3.4 and it does not work - remote object calls still fail when using IE Any ideas? Anthony --- In flexcoders@yahoogroups.com, Tom Chiverton

[flexcoders] ModuleLoader does not really unload ?

2009-07-17 Thread Julien Nicoulaud
Hi everyone. I have an application (a window manager) that loads modules using ModuleLoader. When I unload a module, it seems it is not properly unloaded: if i setup a Timer that shows an Alert every X seconds in the module, the Alert still shows every X seconds after the module is unloaded. Any

[flexcoders] Custom Flex 4 RSL Locations

2009-07-17 Thread rfkrockteekers
Is there any way I can give Flex 4 a different location from which to load the RSLs from? I'd like to put all of my rsls in a subdirectory beneath the main application file. Is this possible?

[flexcoders] Re: Custom Flex 4 RSL Locations

2009-07-17 Thread rfkrockteekers
Got it: edit ${FLEX_HOME}/frameworks/flex-config.xml around line 333. --- In flexcoders@yahoogroups.com, rfkrockteekers rfkroc...@... wrote: Is there any way I can give Flex 4 a different location from which to load the RSLs from? I'd like to put all of my rsls in a subdirectory beneath the

[flexcoders] Re: getting problem in displaying the name of browser title

2009-07-17 Thread valdhor
Look into the BrowserManager (http://livedocs.adobe.com/flex/3/langref/mx/managers/BrowserManager.html) --- In flexcoders@yahoogroups.com, Krunal Panchal panchal_...@... wrote: Hi All,   I have created the web application in flex. I set the pageTitle property so at the frist time it will

[flexcoders] Re: Dumb overview questions -- newbie

2009-07-17 Thread valdhor
Basically (And someone, please correct me if I'm wrong), Flex is just a framework of ActionScript classes to create user interface components. They handle much of the groundwork for you so you don't have to. MXML is a markup language that allows you to write an application using an XML like

[flexcoders] Re: Profiling Error on Flash Player 10

2009-07-17 Thread valdhor
Hard to say but there is probably something wrong in grip.mxml --- In flexcoders@yahoogroups.com, ilikeflex ilikef...@... wrote: Hi Team When i start the profiler i get the below error 1.I am using FB 3. and flash player 10. Any pointers are highly appreciated. ReferenceError:

[flexcoders] Re: AMF, IE, and a non-trusted certificate

2009-07-17 Thread valdhor
Sounds like some sort of security sandbox issue. Are these AMF over HTTP or HTTPS? Is there any other parts of the enclosing HTML page that are using HTTP? Perhaps IE does not like to have both HTTP and HTTPS calls on the same page? Stabbing in the dark here ;-} --- In

[flexcoders] Re: ModuleLoader does not really unload ?

2009-07-17 Thread valdhor
Does the Flex console show that the module has unloaded? If not, you still have something attached to the module or the module has not released all its resources. --- In flexcoders@yahoogroups.com, Julien Nicoulaud primo...@... wrote: Hi everyone. I have an application (a window manager)

[flexcoders] Re: ModuleLoader does not really unload ?

2009-07-17 Thread ag_rcuren
Could it be because you have a Timer with an event listener setup which mean there is a reference to the Module. Wouldn't you have to first remove the event listener so there would be no references to that module? You might be able to use a weak reference on the listener. --- In

[flexcoders] Re: AMF, IE, and a non-trusted certificate

2009-07-17 Thread Anthony DeBonis
No its all HTTPS using SecureAMFChannel to make the call. --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: Sounds like some sort of security sandbox issue. Are these AMF over HTTP or HTTPS? Is there any other parts of the enclosing HTML page that are using HTTP?

[flexcoders] Re: Profiling Error on Flash Player 10

2009-07-17 Thread ilikeflex
Hi I do not think so because i get the same error when i run another file. It does not contain any code it is has only application tag. thanks ilikeflex --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: Hard to say but there is probably something wrong in grip.mxml --- In

Re: [flexcoders] Re: ModuleLoader does not really unload ?

2009-07-17 Thread Julien Nicoulaud
Ok, I had heard of that: objects are not deleted by the garbage collector if there still are event listeners set up without using weakReference... But the fact is that the Timer was only a really simplified example: in the real case, each of my module is composed of a full Cairngorm stack, so I

[flexcoders] Custom datagrid styling

2009-07-17 Thread flexaustin
So I have a custom datagrid named EdgeEditDataGrid, which i am trying to style via my main css file, but it won't style in order to get it to style I have to put the styling in locally such as comps:EdgeEditDataGrid customstyle1:blah customstyle2:blah ... /comps:EdgeEditDataGrid Do I

[flexcoders] Easing ScrollBar ... how hard can it be?

2009-07-17 Thread Jeff Hindman
Group, I've searched high and low for a way to implement this, including a ready-made Flex component ... so far, nothing looks promising. I know I've seen one on several Flex sites ... is it a Flash component that was ported over? Any direction would be greatly appreciated. Thanks, -- Jake

Re: [flexcoders] Who else is here - SharedObjects?

2009-07-17 Thread Bob Wohl
Look at remote shared objects on FMIS. You would store the clients via rso, and anytime some one would enter or leave you'd add the client name or match and remove client on exit, that would update the list on all clients (on change). I'm not sure how you'd do this via LCDS/Blaze sicne I haven't

Re: [flexcoders] Re: Dumb overview questions -- newbie

2009-07-17 Thread Gardner Pomper
Thanks for the reply. It sounds like a bit of a hodgepodge. If you use FlexBuilder, then it probably seems alot like VB, right? If you are building a new app, for data visualization, for example, then you most likely build it like a VB app, and don't use Flash at all, except maybe by

Re: [flexcoders] Re: Dumb overview questions -- newbie

2009-07-17 Thread Julien Nicoulaud
You can separe view from model and logic, if you use programming patterns the right way. For example, I use Cairngorm, and I add a Presentation Model layer to have a total separation between the application layers, especially VIew and Model. You can find lots of documentation and articles about

Re: [flexcoders] Eclipse WTP and FlexBuilder 3

2009-07-17 Thread Gustavo Duenas
Hi julien do you mind to tell me or point me to an article or how to install the wtp on galileo and then working with fb3. Gustavo On Jul 15, 2009, at 4:29 PM, Julien Nicoulaud wrote: We use WTP with Flex Builder 3 for our Flex projects. What kind of issue do you encounter ? 2009/7/15

[flexcoders] LCDS data service error in IE (but not in Firefox)

2009-07-17 Thread postwick
I have a destination set up and in Firefox and IE all creates, updates, and fills work fine. Delete works fine in Firefox but when I do a delete in Internet Explorer I get the following error: [FaultEvent fault=[RPC Fault faultString=Item with id '449F8202-2B8F-C91B-D0B2-8B70B3D940D3' not

[flexcoders] AUTO: Christophe Jolif is out of the office (returning 08/17/2009)

2009-07-17 Thread Christophe Jolif
I am out of the office until 08/17/2009. Note: This is an automated response to your message [flexcoders] LCDS data service error in IE (but not in Firefox) sent on 18/7/09 3:21:08. This is the only notification you will receive while this person is away.

[flexcoders] How to control change focus when editing in datagrid

2009-07-17 Thread j2me_soul
When an item editor opens, the first control can obtain focus for editing, but pressing the Enter key move focus to the next cell. How can I move the focus in the same row horizontally ?

[flexcoders] How to control the focus when editing dataGrid

2009-07-17 Thread j2me_soul
When an item editor opens, the first control can obtain focus for editing, but pressing the Enter key move focus to the next cell. How can I move the focus in the same row horizontally ?

RE: [flexcoders] How to control the focus when editing dataGrid

2009-07-17 Thread Alex Harui
Capture and stopImmediatePropagation on the ENTER key and dispatch a KEY_FOCUS_CHANGE event instead Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

RE: [flexcoders] Re: Need Help understanding ModuleManager or Why isn't the chart drawing?

2009-07-17 Thread Alex Harui
Maybe the Chart cant find the renderers for the data because of applicationDomain issues. You might have to use a ContextualClassFactory Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com