[flexcoders] Re: Tutorial - creating a vertical tabnavigator

2008-01-24 Thread gers32
Hi, I use Flex Builder 2, but here's how I do it with a TabBar and a ViewStack: my TabBar is in a VBox with other stuff, like a logo .. ..

Re: [flexcoders] Web Hosting

2008-01-24 Thread Richard Rodseth
Bob You probably know that Java hosting is more expensive. I'm looking into the VPS options at www.eapps.com They're about to launch updated plans based on CentOS 5, so I might wait for those. If anyone else knows of good options for Flex/BlazeDS hosting, please chime in. On Jan 24, 2008 7:21

Re: [flexcoders] Re: framework caching is not working

2008-01-24 Thread Sanjit Kumar
Thanx to all for help. Many Many Thanks to Darrell I checked on windows xp it is cacheing the signed rsl in to it. it is working fine. Darrell Loverin wrote: > > Error code #2046 means the signature of the signed RSL is invalid. > Since I know framework_3.0.189825.swz is correctly signed I th

RE: [flexcoders] Re: How to check if value exists in a return API call?

2008-01-24 Thread Gordon Smith
AS3 has an 'in' operator. I think hasOwnProperty() is really only necessary when dealing with prototype inheritance, which Flex doesn't use (except in the style prototype chain). Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PR

[flexcoders] how do i determine the path items in the RandomWalk component

2008-01-24 Thread jovialrandor
for example, If it click through 3 levels, I would like to get the nodes at each level of the path. Thanks

RE: [flexcoders] Re: LCDS Paging error and connection management in DataServices. Advice?

2008-01-24 Thread Seth Hodgson
Oh, and in regard to AMF polling and your connected state, this channel issues poll requests over HTTP on an interval. If your server is unreachable, the next poll request that is sent will fail, triggering the channel to move to a disconnected state. If you enable client logging ( and a debug

Re: [flexcoders] How to turn off camera ?

2008-01-24 Thread YOGESH JADHAV
I don't want to attach my Camera to video, but to netstream. The aim is to detect video presence on netstream. For that i have to do camera on/off Actually I am publishing my camera live on netstream to FMS server. Even if i do my_video.visible = false, the video will keep publishing as long cam

RE: [flexcoders] Re: LCDS Paging error and connection management in DataServices. Advice?

2008-01-24 Thread Seth Hodgson
When a server is restarted, fails or something in the network path goes down the DataService instance will attempt to automatically reconnect, and when it does get reconected it should be resetting/renegotiating its current set of active fills with the new server automatically. When connectivit

[flexcoders] Databinding series of 2nd BarChart not working

2008-01-24 Thread lmurphy
I am experiencing some odd behavior when databinding the series of a BarChart and was wondering if anyone could help me figure out what is going on. I have - chart1.mxml

[flexcoders] Can PrintDataGrid render HTML?

2008-01-24 Thread jesse_bigfix
I have a DataGrid where the contents of one of the columns is html links. Onscreen, I can click the links in the grid and they work no problem. When I create a PrintDataGrid with the same data provider, the printed output treats the HTML as text so I can see the markup, e.g. instead of printi

[flexcoders] Re: internet explorer problem

2008-01-24 Thread bobignacio
Hi there, I see 2 possibilities... First... Take a look at Photoshow.mxml. I don't see where your pictures array is initialized as in "pictures = new Array();" When the swf is loaded into the browser, your pictures array is still null. It is possible that IE just has a problem with that while th

[flexcoders] Re: Move effect

2008-01-24 Thread jovialrandor
Varun, this is exactly what I needed! A few questions. 1. Do you have examples of tweener class for movements? 2. Can I set the speed of the movement in the following example? Thanks! --- In flexcoders@yahoogroups.com, "Varun Shetty" <[EMAIL PROTECTED]> wrote: > > here... try this out.

[flexcoders] Re: Copy an Array collection in AS

2008-01-24 Thread jovialrandor
does the ac1.source.concat represent object property of 'source'? --- In flexcoders@yahoogroups.com, "ezderman" <[EMAIL PROTECTED]> wrote: > > almost. this works for a simple ArrayCollection. It didnt work for > more complex ones > > > > # var ac1:ArrayCollection = new ArrayCollection( [1, 2,

[flexcoders] Insert simple record into PostgreSQL using AMFPHP + Flex

2008-01-24 Thread Harry Saputra
Dear all, I have retrieve a record from PostgreSQL and now try to insert simple record into PostgreSQL using AMFPHP like that : http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="onInit()"> [Bindable]

[flexcoders] Web Hosting

2008-01-24 Thread bobignacio
Hello All, It isn't that easy in deciding which web hosting service to use. What web hosting service are you using for your flex applications? And as for application servers, I use tomcat at work...any thoughts on JBoss, etc? Thanks, Bob I.

[flexcoders] Re: How to check if value exists in a return API call?

2008-01-24 Thread jovialrandor
Thanks Tracy, the hasOwnProperty() method works perfectly. --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Is that not working? > > > > Also, I advise storing your result in an instance variable. In the > result handler, use event.result (not lastResult) to a

[flexcoders] Stop & Wait

2008-01-24 Thread Dale Fraser
Sometimes in an application. You wish to show a busy cursor and wait for a specific event before allowing anything else to occur. How do you do this in a Flex application. Regards Dale Fraser http://learncf.com

RE: [flexcoders] internet explorer problem

2008-01-24 Thread Tracy Spratt
So the problem is not with getting the xml, right, but in displaying the image? So go on and trace into updateCurrentPicture... From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ron Hiner Sent: Thursday, January 24, 2008 9:27 PM To: fl

Re: [flexcoders] internet explorer problem

2008-01-24 Thread Ron Hiner
- Original Message From: Tracy Spratt <[EMAIL PROTECTED]> Is “xmlReceived( )” getting called? Tracy -- yes it is. I added an alert to prove it to myself. Jamie -- what should be happening is the XML file is loaded, then the images are loaded in

[flexcoders] Re: keyboard event function in popup window

2008-01-24 Thread Corey Smaller
oh man, just when I was gonna lose it! for some reason I had updateComplete in the popup window header setFocus to the first button in the popup. so, i guess when tell the popup to remove itself its technically 'updating' soo it goes and tries to set focus to a button that isnt there and t

Re: [flexcoders] keyboard event function in popup window

2008-01-24 Thread Sherif Abdou
I have no idea this works, but i have seen a few examples where you would dispatch sort of a fake event on the button you want to have focus on and it works. so maybe try that - Original Message From: Corey Smaller <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, Janu

[flexcoders] Re: LCDS Paging error and connection management in DataServices. Advice?

2008-01-24 Thread Kevin
Thanks. Do you know if the connected property works in amf-polling as well? As an experiment I tried to disconnect my wireless connection while the app was running and the connected property didn't change. However, using RTMP it works fine. Also, is there a way to distinguish a disconnect from w

Re: [flexcoders] internet explorer problem

2008-01-24 Thread Jamie S
If you are trying to load a bunch of images at once, try spreading out the loading process a bit. I encountered the same problem ( although in my case IE was the only browser that loaded correctly ). My solution was to load them one-by-one from a queue. It made the loading process take longer but i

[flexcoders] keyboard event function in popup window

2008-01-24 Thread Corey Smaller
ok, so my app uses all KeyboardEvent/keyCodes for navigation. It worked wonderfully until I created a popup window which also has keyboard nav between two buttons, one being 'close this popup'. I wanted to set the focus back to the button that called the popup window when you click the close b

[flexcoders] Re: actionscript equivalent to setting labelFunction in PieSeries

2008-01-24 Thread rueter007
do not use the quotes around the function name; series1.labelFunction = displayLabel; - venkat http://www.venkatj.com --- In flexcoders@yahoogroups.com, "Adrian Gillette" <[EMAIL PROTECTED]> wrote: > > I'm looking for a way to use as3 code to set the labelFunction in a > PieSeries instance. I'v

RE: [flexcoders] Custom HeaderRenderer slows down datagrid horizontal scrolling

2008-01-24 Thread Alex Harui
The optimal renderer would subclass UIComponent and not use HBox. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of letterpigeon Sent: Thursday, January 24, 2008 4:40 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Custom HeaderRen

[flexcoders] Custom HeaderRenderer slows down datagrid horizontal scrolling

2008-01-24 Thread letterpigeon
Hi all, I have a custom header renderer being used by every column in my datagrid (about 20-30 columns). With this header renderer being used, scrolling the grid horizontally is slowed down significantly. Below is the relevant code to define the renderer. Any suggestion of how to speed things

[flexcoders] Re: Seriously, what is the 'right' way to do default styles?

2008-01-24 Thread ben.clinkinbeard
But are there any Flex 2 compatible ways to ascertain the dimensions of a graphical skin? I think I could get to it if I use mx_internal but am trying to avoid that. Thanks, Ben --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I believe we're making some last-minute

Re: [flexcoders] AIR Code Signing Certificates Pricing

2008-01-24 Thread Jamie S
I think the only certs AIR accepts are Thawte and VeriSign. So of the two Thawte is cheaper. Jamie On Jan 24, 2008 3:46 PM, Dale Fraser <[EMAIL PROTECTED]> wrote: > > > > > > > > > > Hello, > > > > I see that Thawte do code code signing certs for $299 > > https://www.thawte.com/process/retail/new

RE: [flexcoders] Re: LCDS Paging error and connection management in DataServices. Advice?

2008-01-24 Thread Seth Hodgson
Hi Kevin, DataService exposes a bindable 'connected' property that lets you know whether its underlying channel to the server is up or not. If it's not up, DataService will attempt to reconnect indefinitely. You should watch the 'connected' property and let the user know when they've lost conne

RE: [flexcoders] Use message.clientID to access same session?

2008-01-24 Thread Seth Hodgson
The clientId value identifies a Producer or Consumer instance on the client that is either sending or receiving messages. RPC-related components such as WebService use the core messaging layer under the hood. I'd recommend against using clientId in your scenario. Most session-based web service

[flexcoders] Re: Resize Event Complete

2008-01-24 Thread jmfillman
Perfect, thanks!! --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Try updateComplete after a resize. > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of jmfillman > Sent: Thursday, January 24, 2

RE: [flexcoders] Resize Event Complete

2008-01-24 Thread Alex Harui
Try updateComplete after a resize. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmfillman Sent: Thursday, January 24, 2008 1:49 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Resize Event Complete I need to capture the si

RE: [flexcoders] Re: Failure to access a WSDL file from Flex's WebService class over HTTPS on IE

2008-01-24 Thread Seth Hodgson
Hi Eyal, My direct experience is limited to working with POSTs from IE over HTTPS. POSTs are not idempotent and are not cacheable according to the HTTP spec. See section 9.5: http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html Responses to this method are not cacheable, unless the response i

[flexcoders] Re: copy paste troubles

2008-01-24 Thread jmfillman
One other thing, with the TextArea, try tracing the selection begin and end index, to see if they are valued. JF --- In flexcoders@yahoogroups.com, "jmfillman" <[EMAIL PROTECTED]> wrote: > > Works fine for me in both Web and AIR versions. > > > http://www.adobe.com/2006/mxml"; > layout="absolu

[flexcoders] Re: copy paste troubles

2008-01-24 Thread jmfillman
Works fine for me in both Web and AIR versions. http://www.adobe.com/2006/mxml"; layout="absolute"> Are you setting any other properties in the TextArea? JF --- In flexcoders@yahoogroups.com, "Seth Caldwell" <[EMAIL PROTECTED]> wrote: > > Can you try with ? That's where I'm noticing

[flexcoders] actionscript equivalent to setting labelFunction in PieSeries

2008-01-24 Thread Adrian Gillette
I'm looking for a way to use as3 code to set the labelFunction in a PieSeries instance. I've tried "series1.labelFunction(displayLabel)" and series1.labelFunction = "displayLabel". But no luck. Any recommendations? Adrian

RE: [flexcoders] Webservice, SOAP, SSL and BasicAuthentication

2008-01-24 Thread Seth Hodgson
Hi Christoph, If you take a close look at the error on the client it states: 'Destination 'dataElements' has no channels defined and the application does not define any default channels.' When you compile your swf with a -services flag, a portion of your services-config.xml info is injected

RE: [flexcoders] Re: copy paste troubles

2008-01-24 Thread Seth Caldwell
Can you try with ? That's where I'm noticing the problem. Sorry, I should have specified initially. I'm using Flex 3 Beta 3. Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmfillman Sent: Thursday, January 24, 2008 3:42 PM To: flexcoders@yahoogroups.com Su

RE: [flexcoders] internet explorer problem

2008-01-24 Thread Tracy Spratt
Is "xmlReceived()" getting called? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ron Hiner Sent: Thursday, January 24, 2008 6:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] internet explorer problem I described t

[flexcoders] AIR Code Signing Certificates Pricing

2008-01-24 Thread Dale Fraser
Hello, I see that Thawte do code code signing certs for $299 https://www.thawte.com/process/retail/new_devel_collect_details I think this is expensive, for what it is. And Thawte are just expensive in general. Does anyone know of anyone else who does these certs at a better price.

[flexcoders] Re: copy paste troubles

2008-01-24 Thread jmfillman
Are you using Flex 2 or 3? AIR or Web Bases? I created a really brief AIR app: http://www.adobe.com/2006/mxml"; layout="absolute"> I am not able to duplicate the issue that you reported with AIR, using Flex 3, Beta 3. I also created a Web Based application. Launched in IE7. Unable

Re: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Paul Andrews
Great news! Paul - Original Message - From: Merrill, Jason To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 11:10 PM Subject: RE: [flexcoders] chicken and egg object instatiation Hey Paul, I thought some more about the main atom having no parent, and while

RE: [flexcoders] Re: copy paste troubles

2008-01-24 Thread Seth Caldwell
The difference, is that my question is in relation specifically to a flex component (that may have a bug), while your question was basic array manipulation and not related to anything flex. I have narrowed the bug down. Specifically copy will work if I use the mouse to select text. Paste always

RE: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Merrill, Jason
Thanks Alex, good info as usual. Jason Merrill Bank of America GT&O L&LD Solutions Design & Development eTools & Multimedia Bank of America Flash Platform Developer Community From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Beha

RE: [flexcoders] Re: Adding children at run-time

2008-01-24 Thread Jim Hayes
I think that unless you set creationpolicy=all on the tab navigator, the (forms in this case) are not actually instanciated until the user clicks on the tab (or you set the tabindex or similar) in any case. So it may not be necessary to do exactly what you ask, perhaps you can just define those

RE: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Merrill, Jason
Hey Paul, I thought some more about the main atom having no parent, and while I did make the decision to set it's parent id to 0 when all other IDs started at 1 to account for the null situation, that WAS the issue - the method that searched for a parent and returned an instance was not accounting

RE: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Alex Harui
The debugger reads every getter function in an object that is in scope. This can cause getters to fire early before other things are set. It doesn't happen to me often, but when I run into that, I just add null tests and return null. From: flexcoders@yahoogrou

[flexcoders] internet explorer problem

2008-01-24 Thread Ron Hiner
I described this a couple days ago, but did get any response.. anyone? I created my very first Flex app the other day, and it works perfectly in firefox... It's pretty trivial really: it reads an XML file for a list of image files, then loads them into an mx:image -- I love it! (code is deri

RE: [flexcoders] Rounded corners on selections?

2008-01-24 Thread Alex Harui
You can swap in a List that has a drawHighlightIndicator override that draws round rects. See dropdownFactory From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of thirtyfivemph Sent: Thursday, January 24, 2008 1:28 PM To: flexcoders@yahoogro

Re: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Paul Andrews
- Original Message - From: Merrill, Jason To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 10:52 PM Subject: RE: [flexcoders] chicken and egg object instatiation Yeah, thanks, but what you've said is all the stuff I'm already doing... Well, it's about all I

[flexcoders] Re: copy paste troubles

2008-01-24 Thread jmfillman
What's equally annoying is when you pick on me for asking a simple question, and then post your own question as a follow-up to my post. But we all have our own strengths and weaknesses. --- In flexcoders@yahoogroups.com, "Seth Caldwell" <[EMAIL PROTECTED]> wrote: > > For some reason, I (usually)

RE: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Merrill, Jason
Yeah, thanks, but what you've said is all the stuff I'm already doing... Jason Merrill Bank of America GT&O L&LD Solutions Design & Development eTools & Multimedia Bank of America Flash Platform Developer Community From: flexcoders@yahoogrou

Re: [flexcoders] chicken and egg object instatiation

2008-01-24 Thread Paul Andrews
Jason, Presumably you're simplifying things. In a network diagram, there may be several other connected atoms, so you'd need an array of parentAtoms and it wouldn't be a parent relationship. If you're really talking about a tree, then the first atom won't have a parent and will be null. When

[flexcoders] copy paste troubles

2008-01-24 Thread Seth Caldwell
For some reason, I (usually) cannot use the keyboard to copy and paste from text fields in flex. I have to right click with the mouse and choose copy. Paste often works. Anyone know the cause for this? I definitely have the text field selected, shift highlighted text with the keyboard. Quite anno

[flexcoders] DataServices DMS / Hibernate Help!

2008-01-24 Thread Kevin
I am in desperate need of some debugging help with my data services stuff. Things seem to be breaking left and right and I am not sure what is wrong. I am getting a lot of errors recently, but they are not totally consistent as to when they happen. It seems that after a certain number of users s

[flexcoders] chicken and egg object instatiation

2008-01-24 Thread Merrill, Jason
I have some AS3 code in Flex that creates a series of objects (class instances) based on some data. It's a network diagram being drawn dynamically. Each class instance object (I call them "atoms") extends Sprite, has an id number property set in it's constructor. Each atom instance has to refere

[flexcoders] ViewStack the change event is not dispatched on removeChild

2008-01-24 Thread Guillaume Malartre
Hi, I wanted a second opinion before believing this is an issue. I'm using a ViewStack in my Chat to navigate between different rooms. When I set focus on a room I change the selectedIndex and the event "change" is dispatched correctly but if I remove the selected room I would expect to get a "cha

[flexcoders] Resize Event Complete

2008-01-24 Thread jmfillman
I need to capture the size of a canvas after the Resize Event completes. Triggering a trace on the canvas size at the Resize Event captures the size of the window at the start of the Resize Event, not once it has completed. How do I get the value once it has completed?

[flexcoders] Rounded corners on selections?

2008-01-24 Thread thirtyfivemph
While Halo is a pretty nice, general purpose skin that's pretty flexible with all of its programmatic skins, there are a few aspects of it that just annoy the heck out of me. Perhaps you guys can help me resolve one of them... If I create a listbox (or if I'm styling the drop-down list of a combo

[flexcoders] Dynamically changing the size of a chart

2008-01-24 Thread Bob Jones
Hi all, I'm trying to make a bar or column chart, but sometimes I have too many column or bar series and each series becomes too small because its trying to fit inside the component. Is there any suggestion how to make the chart component dynamically change it's size? Thanks.

RE: [flexcoders] Restrict dragging for some datagrid columns

2008-01-24 Thread Alex Harui
Subclass, override mouseDownHandler, call stopImmediatePropagation if one of those headers got clicked. That will block sorting on that column though. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daman Dogra Sent: Thursday, January 2

RE: [flexcoders] Re: Seriously, what is the 'right' way to do default styles?

2008-01-24 Thread Alex Harui
I believe we're making some last-minute tweaks to how Flex 3 works with graphical skins. I believe we examine the scale9 rectangle. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, January 24, 2008 10:35

[flexcoders] Restrict dragging for some datagrid columns

2008-01-24 Thread Daman Dogra
Hi All, I understand that in Flex 3.0 the DataGridColumn class has a property called "draggable" which controls the drag behaviour of that column. How can I do the same in Flex 2.0.1 ? ...ie restrict certain columns from being draggable. Looks like in Flex 2.0 the draggable property is only av

[flexcoders] Re: mxml loader

2008-01-24 Thread iilsley
There is the Flex Module for Apache and IIS on Adobe Labs that may do the trick .. http://labs.adobe.com/wiki/index.php/Flex_Module_for_Apache_and_IIS [quote] The Flex module for Apache and Microsoft IIS provides web-tier compilation of MXML and ActionScript files on Apache and IIS web server

RE: [flexcoders] mxml loader

2008-01-24 Thread Mike Krotscheck
This is possible two different ways: 1- With the livecycle server, which will compile your mxml on the fly and then send the resulting swf to your application. This costs a lot of money. 2- By using some kind of object encoding (coreLib.JSON might be able to do this), converting the string to a UIC

[flexcoders] OLAPCube problems with definition

2008-01-24 Thread Marcio Napoli
Hi, I cant show OLAPDataGrid only measures. I need show only the total, so i dont have dimensions. My datapacket already totalized. Example where all fields are measures: Grid: FEMALE | MALE | UNDEFINED | TOTAL 8777 | 10113| 291 | 19181 Thanks, M

[flexcoders] Deep linking with beta 3, ie6 problems

2008-01-24 Thread craig081785
I'm using the deep linking capabilites of flex, with Flex 3, beta 3. It seems to work fine on most browsers, however, in IE6, it will go to the deep link, then when I reset the url, it reloads the page, is there a way to stop it from refreshing the entire page? Is this a bug with flex, or is a

[flexcoders] Re: Adding children at run-time

2008-01-24 Thread rueter007
mxml is eventually converted to actionscript. So, you can instantiate this component using 'new' just like you do with an AS class. - venkat http://www.venkatj.com --- In flexcoders@yahoogroups.com, "markgoldin_2000" <[EMAIL PROTECTED]> wrote: > > But how do I load mxml component at the run time?

Re: [flexcoders] mxml loader

2008-01-24 Thread Derrick Anderson
i've done something similar i think- why not have the web service send you a form definition in XML, then have your main flex app parse thru the XML and build the form components? d. On Jan 24, 2008 2:36 PM, Maciek <[EMAIL PROTECTED]> wrote: > I don't think this is possible, since MXML is act

Re: [flexcoders] mxml loader

2008-01-24 Thread Paul Andrews
- Original Message - From: "Ricardo Kirkner" <[EMAIL PROTECTED]> To: Sent: Thursday, January 24, 2008 7:17 PM Subject: [flexcoders] mxml loader > Hi there, > > I am new to flex. I am trying to find out if there is a way to render > mxml code dynamically at runtime. > > What I want to ac

Re: [flexcoders] mxml loader

2008-01-24 Thread Maciek
I don't think this is possible, since MXML is actually compiled down to ActionScript. I believe the closest you can come to this is have a web service that will invoke the compiler and build mini-swfs (same mxml that you were thinking of sending around, plus just enough skeleton code to get it to c

[flexcoders] Re: Flex3 and DataGridHeader hanging error

2008-01-24 Thread rueter007
I logged this issue with adobe a few weeks back and was eventually marked as fixed. I had the same problem whenever the cursor changes in a deeply nested component (happens on DG headers, divided box boundaries etc). More often than not, if you have such a deeply nested component, there might be ce

[flexcoders] mxml loader

2008-01-24 Thread Ricardo Kirkner
Hi there, I am new to flex. I am trying to find out if there is a way to render mxml code dynamically at runtime. What I want to achieve is to have a main mxml file that will fetch a mxml form definition (in the form of a string, for example) through a web service, and will then render the mxml c

[flexcoders] Re: Possible Data Service - Hibernate Assembler bug

2008-01-24 Thread Kevin
did you ever find a solution to this? I think I may be having the same problem. - Kevin --- In flexcoders@yahoogroups.com, "foobone9" <[EMAIL PROTECTED]> wrote: > > I have two different apps A & B. On startup both use the same DS fill > method (and same fill parameters) to login and authenticate

[flexcoders] Re: Adding children at run-time

2008-01-24 Thread markgoldin_2000
But how do I load mxml component at the run time? --- In flexcoders@yahoogroups.com, Sherif Abdou <[EMAIL PROTECTED]> wrote: > > addChild() and just figure out the tabIndex that the user is on and load the appropriate form. > get the Index or label of the container and just add them > > > >

Re: [flexcoders] Adding children at run-time

2008-01-24 Thread Sherif Abdou
addChild() and just figure out the tabIndex that the user is on and load the appropriate form. get the Index or label of the container and just add them - Original Message From: markgoldin_2000 <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 12:

[flexcoders] Re: framework caching is not working

2008-01-24 Thread Darrell Loverin
Error code #2046 means the signature of the signed RSL is invalid. Since I know framework_3.0.189825.swz is correctly signed I think the problem your running into is the player does not currently support 64-bit Suse. It may be support in Player 10. -Darrell --- In flexcoders@yahoogroups.com, S

Re: [flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Maciek
Best to get it straight from the source: http://livedocs.adobe.com/flex/2/langref/flash/external/ExternalInterface.html On Thu, 2008-01-24 at 12:53 -0500, Gustavo Duenas wrote: > would you please explain me this external interface more in detail? > > > > Regards > > > > > Gustavo > On Jan

[flexcoders] How do I keep an error message visible until its fixed?

2008-01-24 Thread anthony_morsey
I would like to validate a textinput field and have the red boxed error message stay resident on the screen next to the field until the data is fixed. Currently, once you move the mouse out of the field the message goes away. I want it to stay on the screen. Thanks Tony

[flexcoders] Re: Seriously, what is the 'right' way to do default styles?

2008-01-24 Thread ben.clinkinbeard
OK, I am soo close. I think the only remaining compatibility issue is that Flex 3 seems to auto-size a Button to match the dimensions of its skin (very handy) but Flex 2 doesn't. I would like to avoid setting the sizes of my default buttons because that will make things much harder to restyle a

Re: [flexcoders] Flex3 and DataGridHeader hanging error

2008-01-24 Thread Mark Bradley
Ok. Not the answer I was hoping for, as I'll have to move back to Flex 2 for now. At least I was on Flex 3 for one day! Thanks, -Mark On Jan 24, 2008, at 12:18 PM, Alex Harui wrote: Known issue for deeply nested DG’s. Will be fixed in the final. If you can move your DG up so it doesn

RE: [flexcoders] ModuleLoader vs ModuleManager

2008-01-24 Thread Alex Harui
ModuleManager is lower-level and therefore a bit more work. The most common thing people do with modules (generate some UI when switching to a viewstack page) is encapsulated in ModuleLoader. Everything else (Popup, class loading) probably requires using ModuleManager directly. __

[flexcoders] Adding children at run-time

2008-01-24 Thread markgoldin_2000
I have a tab navigator as a main application container. I have designed mxml components (form based) for each tab. I want to load these forms when a user clicks on a tab. How can I do that? Thanks

RE: [flexcoders] Flex3 and DataGridHeader hanging error

2008-01-24 Thread Alex Harui
Known issue for deeply nested DG's. Will be fixed in the final. If you can move your DG up so it doesn't have so many parents you can get around this for now. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Bradley Sent: Thursday,

Re: [flexcoders] Flex3 and DataGridHeader hanging error

2008-01-24 Thread Mark Bradley
No, no code that is mine (just the flex framework code). I am not listening for any mouse over events. I am listening for these events though on the DataGrid: IndexChangedEvent.HEADER_SHIFT DataGridEvent.HEADER_RELEASE ListEvent.ITEM_CLICK Thanks, -Mark On Jan 24, 2008, at 12:00 PM, Sher

Re: [flexcoders] Flex3 and DataGridHeader hanging error

2008-01-24 Thread Sherif Abdou
what exactly are you trying to do, when u mouseOver is there any code that gets executed? - Original Message From: Mark Bradley <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 11:55:08 AM Subject: [flexcoders] Flex3 and DataGridHeader hanging error H

[flexcoders] Flex3 and DataGridHeader hanging error

2008-01-24 Thread Mark Bradley
Hi, I upgraded from Flex2 to Flex3 and now I am seeing this error on my DataGrid controls when I mouse over between columns: Error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds. at mx.core::UIComponent/get cursorManager()[E:\dev\flex_3_beta3\s

Re: [flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Gustavo Duenas
would you please explain me this external interface more in detail? Regards Gustavo On Jan 24, 2008, at 12:44 PM, Sherif Abdou wrote: can't he just use ExternalInteface and use javaScript, there are those popups that you can never resize or do anything with. - Original Message F

Re: [flexcoders] Re: Webservice, SOAP, SSL and BasicAuthentication

2008-01-24 Thread Christoph Guse
Hi, thanks for your replies. eipref1.kingmedia.de is a non-public server running in a virtual machine for developing purposes only. The WSDL file is accessible. I did some more investigation and the solution is at the moment the Flex SOAP webservice functionality is not useable. The DataServ

Re: [flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Sherif Abdou
can't he just use ExternalInteface and use javaScript, there are those popups that you can never resize or do anything with. - Original Message From: Paul Andrews <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 11:36:33 AM Subject: Re: [flexcoders] re

Re: [flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Paul Andrews
- Original Message - From: Gustavo Duenas To: flexcoders@yahoogroups.com Sent: Thursday, January 24, 2008 5:19 PM Subject: [flexcoders] resizing the whole movie or just the browser window in flex Hi I have a flex app/website and its whole size doesn't get or adapt to my scr

Re: [flexcoders] Conflict Management using Flex/CF references?

2008-01-24 Thread João Fernandes
yes, that's available in 7.0.2 but be prepared to change some code since there are specific requirements. If you're looking for locking data for specific to specific users, that's not implemented, you have to handle it yourself. -- João Fernandes http://www.onflexwithcf.org http://www.riap

[flexcoders] Conflict Management using Flex/CF references?

2008-01-24 Thread nasawebguy
Any suggestions on getting started with the conflict management (concurrent/simultaneous users hitting same record) features of Flex 3? I have a Flex 3/ColdFusion app that I'd like to expand beyond just remoteObject/Remoting to prevent users from stomping on each others data. What can I do with t

[flexcoders] resizing the whole movie or just the browser window in flex

2008-01-24 Thread Gustavo Duenas
Hi I have a flex app/website and its whole size doesn't get or adapt to my screen size. So I've just resize it in the main application and the problem is when it is loaded looks ok, but sometimes , it opens with a bigger size and instead of being resized to that, appears a blank space outside

[flexcoders] Re: LCDS Paging error and connection management in DataServices. Advice?

2008-01-24 Thread Kevin
I'll add to this post, how do you check the connected status if you are using amf-polling?? If I turn off my internet connection while working, I get tons of errors when trying to navigate the app since things are all of a sudden not loading in via paging... I am not sure the best way to handle t

[flexcoders] Re: Switching easing function at runtime

2008-01-24 Thread ddanone2
Watch this link, you can view the source code: http://blog.diaztorres.com/2007/06/customeasingfunctionexplorer/customeasingexplorer.html# Cheers Raul --- In flexcoders@yahoogroups.com, "Amy" <[EMAIL PROTECTED]> wrote: > > I'm trying to build an easing explorer, so I can easily compare the > di

[flexcoders] LCDS Paging error and connection management in DataServices. Advice?

2008-01-24 Thread Kevin
I am trying to handle a situation where my user are getting temporarily disconnected from my web app and then proceeding to continue enter info thinking that it is being saved simply because it is still working in actionscript. (of course nothing is getting persisted to the database at this point).

Re: [flexcoders] RichTextEditor - format preservation

2008-01-24 Thread Richard Rodseth
Since I don't yet have a workaround for this issue, I wrote up a bug, in case something can be done: http://bugs.adobe.com/jira/browse/SDK-14438 On Jan 9, 2008 12:27 AM, YOGESH JADHAV <[EMAIL PROTECTED]> wrote: > I have posted same issue few weeks ago. > If anybody knows the solution please rep

Re: [flexcoders] First flex app

2008-01-24 Thread Paul Andrews
- Original Message - From: "Tom Chiverton" <[EMAIL PROTECTED]> To: Sent: Thursday, January 24, 2008 4:05 PM Subject: Re: [flexcoders] First flex app > On Thursday 24 Jan 2008, Paul Andrews wrote: >> > The GUI also doesn't resize itself to my browser. >> LOL, it's not compulsory! > > Who

  1   2   >