[flexcoders] Re: Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread Amy
have to go through a server ( in most cases a web server - since its one of the simplest way to do it. ) On Wed, Aug 24, 2011 at 6:28 PM, Amy amyblankenship@... wrote: ** Hi, all; I have been searching for a tutorial/example that shows how to get data from a mobile app

[flexcoders] Re: Mobile-Desktop Desktop-Mobile synching

2011-08-25 Thread Amy
the file? and vice versa ofcourse. On Thu, Aug 25, 2011 at 2:57 PM, Amy amyblankenship@... wrote: ** So, make users use their data even though they have a physical cable to the computer? That's crazy. --- In flexcoders@yahoogroups.com, ganaraj p r ganarajpr@ wrote: As far

[flexcoders] Re: Spark Datagrid selectedItem question

2011-08-24 Thread Amy
How would a user edit a row that is not selected? --- In flexcoders@yahoogroups.com, bhaq1972 mbhaque@... wrote: How would I go about making the datagrid.selectedItem the ONLY editable row? A bit like making individual columns editable by setting GridColumn.editable. Thanks BH

[flexcoders] Mobile-Desktop Desktop-Mobile synching

2011-08-24 Thread Amy
between mobile and desktop? TIA; Amy

[flexcoders] Re: Updating mobile profiles

2011-08-18 Thread Amy
resolution, size and platform (android), and it will be on the list On Wed, Aug 17, 2011 at 7:22 PM, Amy amyblankenship@... wrote: Hi, all; I have an HTC Inspire, and it is not on my list of mobile profiles. I assume that new mobile profiles are being added all the time, somewhere

[flexcoders] Updating mobile profiles

2011-08-17 Thread Amy
Hi, all; I have an HTC Inspire, and it is not on my list of mobile profiles. I assume that new mobile profiles are being added all the time, somewhere, but I'm not sure how to get FB to go get them. Can anyone point me in the right direction? TIA; Amy

[flexcoders] Re: Error TooTips in Spark Forms

2011-08-08 Thread Amy
PopupAnchor might work better than going to ToolTipManager. --- In flexcoders@yahoogroups.com, Battershall, Jeff Jeff.Battershall@... wrote: What I'm discovering about Spark Forms is that error messaging is inside the form item container and unless I make the form large enough to

[flexcoders] Re: Using modules and remote objects

2010-09-08 Thread Amy
don't need so much documentation. Once you understand how the EventDispatcher backbone (or Event bus, as they like to call it) works, everything's really intuitive. Check out http://insideria.com/2010/05/pass-the-eventdispatcher-pleas.html. HTH; Amy

[flexcoders] Re: Problem getting compiler to recognize a custom class

2010-08-28 Thread Amy
, the compiler doesn't know about it. Could anyone suggest what I could do to fix this. My head (and wall) can only take so much more of this. Usually, that just means you did not include an import statement to import the class into the class that is using it. HTH; Amy

[flexcoders] Re: FB4: Looping thru itemrenderers

2010-08-25 Thread Amy
with the TileList_withStyle and DataGrid_withStyle on flexdiary.blogspot.com. You may find that one of these fits your needs if you're not commited to spark only. HTH; Amy --- In flexcoders@yahoogroups.com, sdl1326 azsl1326-em...@... wrote: Here's some additional insight into what I am trying to do

[flexcoders] Re: Speeding project compilation

2010-08-24 Thread Amy
embedded files/copy embedded files cycle every time it compiles. This would save a HUGE amount of time. Thanks! Amy

[flexcoders] Re: Speeding project compilation

2010-08-24 Thread Amy
-embedded files checkbox. Then execute that script when you need to (assuming your XML doesn't change every time) or add the script as another builder on the project. Sincerely Mark R. Jonkman http://bitsbytesandsawdust.blogspot.com - Original Message - From: Amy amyblankens

[flexcoders] Re: Speeding project compilation

2010-08-24 Thread Amy
something doesn't copy and you waste hours tracking it down to having spaces in your file path. In the end you waste more time than you save. It's a rabbit hole. It's an mirage. And its being slung around more than $hit in a monkey cage /rant Amy, can you embed your XML files? It's something

[flexcoders] Re: FB4: Looping thru itemrenderers

2010-08-24 Thread Amy
You should never do this. What is the end goal? --- In flexcoders@yahoogroups.com, sdl1326 azsl1326-em...@... wrote: I have a scrollable SkinnableDataContainer which contains thumbnail images (in an itemrenderer). While there can be several hundred thumbnail images, only 10 itemrenderers

[flexcoders] Speeding project compilation

2010-08-23 Thread Amy
behavior orr, but I haven't found it. Does anyone know? TIA; Amy

[flexcoders] Re: Null object error on test for null

2010-08-18 Thread Amy
it may be null. Have you tried just if (filterCombo) { //stuff } I wouldn't normally suggest this, but it may avoid the error. HTH; Amy

[flexcoders] Re: What's wrong in using itemRenderer ?

2010-08-17 Thread Amy
An XML node can never be equal to a string. --- In flexcoders@yahoogroups.com, RishiShahi rishi.s...@... wrote: I'm trying to add itemRenderer like, but it doesn't work. However if I remove the check it's adding the itemRenderer. for each (var column:XML in columns) { var

[flexcoders] Re: Flex 4 data management - how do I approach this?

2010-08-14 Thread Amy
might have worked when the user changes her mind and alters the amount many times on the products(?) You may want to look at AMFPHP or WebOrb to allow you to skip the step where you iterate through the data to convert it to an ArrayCollection. HTH; Amy

[flexcoders] Re: Bookmark no longer valid when moving items in AdvancedDataGrid

2010-08-01 Thread Amy
Don't move the visual representation of the dat. Instead, move the data, and let the ADG move the visual representation. HTH; Amy --- In flexcoders@yahoogroups.com, Matthew mracc...@... wrote: I am trying to implement code to move items up and down in an AdvancedDataGrid. When I repeat

[flexcoders] Re: Strange problem with Item Renderer in Flash Play 10

2010-08-01 Thread Amy
--- In flexcoders@yahoogroups.com, Paul paulfische...@... wrote: Hi Amy! Thank you very much for your reply. I recognize your name from InsideRia. I tried your suggestions, but the renderers are still blank. I tried making a very simple item renderer based on the Text component which

[flexcoders] Re: Strange problem with Item Renderer in Flash Play 10

2010-07-29 Thread Amy
in the debugger if you set a break point, even if the variables are not exposed (I think you may need to turn something on from the menu of the variables window to enable this). HTH; Amy

[flexcoders] Re: Refresh list with itemRenderer/ComboBox

2010-07-29 Thread Amy
(assuming the part you need to fix isn't private, of course). -Amy

[flexcoders] Re: Value Object --- Object Proxy --- huh???

2010-07-27 Thread Amy
about data binding and VO's yesterday, and your comment prompted me to do some more digging around and experimenting in a way that tied several seemingly unrelated thoughts together: http://insideria.com/2010/07/getting-control-of-flex-data-b.html -Amy

[flexcoders] Re: PopUpButton with TileList and custom renderer works, but 2 annoyances

2010-07-27 Thread Amy
. Then use label in the labelField property. That way you can accomplish this without having to worry about the component lifestyle and you can avoid the extra weight of an itemRenderer based on Canvas. HTH; Amy

[flexcoders] Re: Grouping Data for AdvancedDataGrid Tree View

2010-07-27 Thread Amy
You can use a custom grouping function, which may give you what you want. Look at the calendar example on flexdiary.blogspot.com for an example of a groupingFunction in action. --- In flexcoders@yahoogroups.com, Cub235 ja...@... wrote: I have an ArrayCollection filled with flat data from a

[flexcoders] Re: Issue with item renderer in Flex 3

2010-07-24 Thread Amy
for it. What it will save you in learning curve will be well worth it. HTH; Amy --- In flexcoders@yahoogroups.com, shameer.forflex shameer.forf...@... wrote: Hi All, I am facing a problem in using item renderers. I have a checkbox as an item renderer in a datagrid. When I check/uncheck

[flexcoders] Broken CSS Editor window in Flex Builder 3

2010-07-21 Thread Amy
, with scrollbars. I can see about 3 lines vertically, and maybe 4 characters horizontally at one time. Does anyone know what might have caused this issue, and what I can do to fix it? The software that is installed on this computer is extremely limited, so I don't have an alternate CSS editor. Thanks! Amy

[flexcoders] Re: Broken CSS Editor window in Flex Builder 3

2010-07-21 Thread Amy
Never mind. It just fixed itself, for no reason I can tell. Thanks anyway... --- In flexcoders@yahoogroups.com, Amy amyblankens...@... wrote: I'm running Flex Builder 3.0.2.214193, and last night we started a new branch of the source code. So, this morning, I deleted my existing projects

[flexcoders] Re: How to retrieve name property of file object in ArrayCollection

2010-07-20 Thread Amy
That's why God invented ObjectProxy. Google it... --- In flexcoders@yahoogroups.com, mark.embrey mark.c.emb...@... wrote: I'm wanting to retrieve the name property of a file object that is in an ArrayCollection that is acting as my data provider . I'm trying to write a function to do this,

[flexcoders] Re: TabNavigator styles not being applied (flex4)

2010-07-08 Thread Amy
It looks like you're not using the mx namespace you've declared in your stylesheet. --- In flexcoders@yahoogroups.com, bhaq1972 mbha...@... wrote: Anyone know why styling is not being applied to this Flex4 example (a modified example from livedocs)? thanks s:Application

[flexcoders] Manually installing Flex SDK's to Flex Builder 3

2010-07-06 Thread Amy
to add a new SDK? Thanks; Amy

[flexcoders] Re: How to remove duplicate objects from an array of objects

2010-07-01 Thread Amy
Both Array (which is the source of the AC) and ArrayCollection have methods that allow you to filter based on characteristics. HTH; Amy --- In flexcoders@yahoogroups.com, Warren warrenony...@... wrote: nope -- problem is that indexOf, contains, etc is not matching the object itself. seems

[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-26 Thread Amy
--- In flexcoders@yahoogroups.com, Dave Glasser dglas...@... wrote: --- On Fri, 6/25/10, Amy amyblankens...@... wrote: What is your itemRenderer code? I'm just using the RadioButton, out of the box. I'm setting the itemRenderer property on the DataGridColumn to new ClassFactory

[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-25 Thread Amy
--- In flexcoders@yahoogroups.com, Dave Glasser dglas...@... wrote: --- On Thu, 6/24/10, Amy amyblankens...@... wrote: What logic are you using to transfer the value of the RadioButtonGroup to the appropriate properties? None, actually. I would expect the DataGrid to handle

[flexcoders] Re: Can DataGrids multiply columns

2010-06-25 Thread Amy
--- In flexcoders@yahoogroups.com, Stephen sd_br...@... wrote: I have a dataGrid as bellow and need to have the total of each row be calculated as the quantity and price are typed in. mx:DataGrid editable=true mx:DataGridColumn headerText=Quantity/ mx:DataGridColumn

[flexcoders] Re: Yahoo TimeInput component as Item Editor

2010-06-24 Thread Amy
--- In flexcoders@yahoogroups.com, Matthew fume...@... wrote: After more testing, I have an update: I have fixed it and created a new problem. I removed a keyUp event handler, which formats the text value of the TimeInput and sets my editorDataField correctly. Now I only listen for

[flexcoders] Re: RadioButton as DataGrid item editor

2010-06-24 Thread Amy
missing something? What logic are you using to transfer the value of the RadioButtonGroup to the appropriate properties? Amy

[flexcoders] Re: how to access action script variable data type in mxml

2010-06-16 Thread Amy
(). On the latter, you will have to do some parsing to pare it down to _just_ the class name. HTH; Amy

[flexcoders] Re: Binding checkbox item renderer with XMLList item

2010-06-03 Thread Amy
In answer to question 3, check out the comments here http://livedocs.adobe.com/flex/3/html/help.html?content=celleditor_4.html to see how to fix CheckBox so it works properly as a DropInListItemRenderer. --- In flexcoders@yahoogroups.com, Asif Nawaz aasif...@... wrote: Let we have following

[flexcoders] Re: Dynamic DropDownList Default Setting Problem

2010-06-02 Thread Amy
--- In flexcoders@yahoogroups.com, Stephen sd_br...@... wrote: This is a Flex 4 problem. I have dynamically filled a drop down box using PHP Data/Services and wish to set the initial display to the current Engineer. What I have is the value of the EngineerId. I have tried to access

[flexcoders] Re: How to show a hand cursor when mouse over a s:Label control ?

2010-05-26 Thread Amy
try mouseChildren=false. --- In flexcoders@yahoogroups.com, itaid1 ita...@... wrote: Hi I'm using this inside a spark skin class, but the mouse does not change when hovering over the control. Tnx -Itai s:Label id=labelDisplay left=5 fontSize=16

[flexcoders] Re: Security sandbox violation

2010-05-25 Thread Amy
of where to get one to use as a starting point. Good luck! Amy

[flexcoders] Re: Module help in flash builder

2010-05-25 Thread Amy
Since you are using mx components (ModuleLoaders) inside an mx component (ViewStack), just use Canvas or one of the mx containers. If the architecture worked under Flex 3, it should work under Flex 4. --- In flexcoders@yahoogroups.com, Raymond Brown silenttr...@... wrote: Does anyone know

[flexcoders] Re: ItemRenderer factories, on the fly resetting

2010-05-25 Thread Amy
Check out TileList_withStyle. http://flexdiary.blogspot.com/2008/08/tilelist-with-stylefunction.html. I think this will do what you want--you'll just need to shift your approach a bit and move the things that you would normally set in the factory into being styles. HTH; Amy

[flexcoders] Re: Adding nr of items to the label in a treeView

2010-05-18 Thread Amy
. Thanks in advance Try something like item..file.length(); HTH; Amy

[flexcoders] Re: adding transparent images to a canvas

2010-05-17 Thread Amy
with transparent pixels from your image--it will only draw the pixels that have some level of opacity. HTH; Amy

[flexcoders] Re: Strange Behavior When Loading Sub Application

2010-05-14 Thread Amy
/embedded fonts, which could explain what's going on with your chart labels. See http://www.magnoliamultimedia.com/flex_examples/Amys_Flex_FAQ.pdf Q 8 for more details. HTH; Amy

[flexcoders] AIR and dll (was: Re: Take that Mr Jobs!)

2010-05-14 Thread Amy
platform components like dlls, but I'm not sure of the exact mechanism. When I was on the RIAdventure cruise, this is something Ryan Steward said in session. HTH; Amy

[flexcoders] Re: Folder-style dragOver highlight on tree

2010-05-13 Thread Amy
to do, but I have found when trying to customize ListBase components that often the large methods will have smaller, protected, methods that you can find and hook into if you're willing to dig through the class structure to find them. -Amy

[flexcoders] Re: Updating Static vars

2010-05-11 Thread Amy
calling a constructor... Oh, that just gave me an idea. I'm pretty sure you can have static setters and getters (in your case you need to look at the getter). HTH; Amy

[flexcoders] Re: SWFLoader.scaleContent FAIL...

2010-05-09 Thread Amy
the Timeline with OOP AS3. HTH; Amy

[flexcoders] Re: mvc pattern for flex

2010-05-07 Thread Amy
used only in MXML, there should be no need for a script tag), but it's still an aggravation. -Amy

[flexcoders] Re: using TextArea as ItemRenderer for DataGridColumn

2010-05-06 Thread Amy
itemRenderers rather than height. If you override explicitHeight to also set height and/or call invalidateSize(), you might find that the problem is resolved. You may also need to call invaldateDisplayList(). HTH; Amy

[flexcoders] Re: mvc pattern for flex

2010-05-06 Thread Amy
--- In flexcoders@yahoogroups.com, Wally Kolcz wko...@... wrote: I love and am a big advocate for Mate. Simple to learn, lots of good built in tools, not MVC code in your views or business logic so if you want to change down the road, just pop it out and handle the events. My limited

[flexcoders] Re: Bindable metadata tag event name

2010-05-02 Thread Amy
. http://tv.adobe.com/watch/360flex-conference/diving-in-the-data-binding-waters-by-michael-labriola/ HTH; Amy

[flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-05-01 Thread Amy
--- In flexcoders@yahoogroups.com, Guy Morton g...@... wrote: On 01/05/2010, at 1:54 PM, Amy wrote: It may be low, but there's a certain amount of logic to it, considering when Steve Jobs was out, he was given a liver transplant. In ancient times, the liver was considered

[flexcoders] Re: MS - The future of the web is HTML 5

2010-05-01 Thread Amy
swine flu, which is given way much more attention than it's worth IMO. That's a very good point. Most of the time, when I am using Flex, it's to be used in environments _other_ than the browser. If the Flash Player were not an ActiveX control, I couldn't do that. -Amy

[flexcoders] Re: Binding and square brackets

2010-04-30 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: I'm interested in getting rid of Data binding will not be able to detect changes when using square bracket operator without introducing an ArrayCollection. The view displays data for the seven days of the week. Not using

[flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-04-30 Thread Amy
, the iPhone and iTampon won't support it. -Amy

[flexcoders] Re: Thoughts on Flash by Steve Jobs

2010-04-30 Thread Amy
--- In flexcoders@yahoogroups.com, Guy Morton g...@... wrote: Oh dude, come on, that's low. Either agree or disagree with what he says (I agree with most of it - HTML5 et al can replace the need for a lot of what Flash often does, and it's support is growing and standards are good for

[flexcoders] Re: Explicitly setting the height of a row in a DataGrid

2010-04-27 Thread Amy
--- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: I would do that by having a renderer that draws outside its given bounds, and other renderers to the right that set alpha=0 so they don't show up. On 4/26/10 11:01 AM, Jay Proulx jason.pro...@... wrote: Because

[flexcoders] Re: Recalculating SummaryRow in a filtered AdvancedDataGrid

2010-04-24 Thread Amy
the docs for the classes involved. HTH; Amy

[flexcoders] Re: TitleWindow.title won't update from a setter

2010-04-23 Thread Amy
--- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Thanks Amy... I'm now doing that and silly me forgot to use super.commitProperties() after the .title in commitProperties(). That took a while to work out :) Yes, panel does all that stuff in commitProperties, so you

[flexcoders] Re: TitleWindow.title won't update from a setter

2010-04-22 Thread Amy
. I'm now initialising it to null and it's working fine... It might be _slightly_ better practice to call invalidateProperties() in the setter, rather than calling validateNow() from outside the component. HTH; Amy

[flexcoders] Re: DataGrid | ItemRenderers | Validation

2010-04-22 Thread Amy
{ if (_validationCallback) { _isValid = _validationCallback(_data); } } n stuff. HTH; Amy

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-21 Thread Amy
. This allows you to save data to the local machine (Kind of like cookies but you have 100K of space you can use) and is very useful to hold these kinds of preferences. I would disagree that AMFPHP is deprecated... They just released a new version in February. -Amy

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-21 Thread Amy
--- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: Hi Amy. Sorry I missed your post yesterday. e4x does seem good but I was just a little bit worried about implementing it. As a flex beginner I tend to stick to the traditional most widely used methods of doing things

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-20 Thread Amy
in the habit as LinksService.lastResult will cause some pain in the future if you decide to change it's name for some reason. Amy suggested using e4x which is probably the correct answer as e4x grants you consistency ( you do not have the arrayCollection returned sometimes and ObjectProxy

[flexcoders] Re: GroupingCollection.getParent() doesn't exist?

2010-04-20 Thread Amy
--- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: ok - thanks Amy! :) So if were to extend GroupingCollection and create MyGroupingCollection, I could then have a public function on MyGroupingCollection that in turn calls the getParent() protected function

[flexcoders] Re: Find tree node in groupingcollection?

2010-04-19 Thread Amy
HierarchicalCollectionView has methods for getting the parent node. Just cast your GroupingCollection to HierarchicalCollectionView. http://flexdiary.blogspot.com/search/label/AdvancedDataGrid HTH; Amy --- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Hi, Does anyone

[flexcoders] Re: GroupingCollection.getParent() doesn't exist?

2010-04-19 Thread Amy
Check a reference on Actionscript 3 for the definition of protected. HTH; Amy --- In flexcoders@yahoogroups.com, Nick Middleweek n...@... wrote: Hi, Does anyone know why the getParent() command listed in the docs doesn't seem to exist? http://livedocs.adobe.com/flex/3/langref/mx

[flexcoders] Re: Problems With my XML Created Array Collection

2010-04-19 Thread Amy
--- In flexcoders@yahoogroups.com, James garymoorcroft_...@... wrote: The thing is my xml is retrieved from a mysql database table which sometimes will have no records or 1 record which will mean the xml will have only 1 or no nodes which in turn causes the problem whereas sometimes it has

[flexcoders] Re: Actionscript Project Flex Project How does the display list change?

2010-04-18 Thread Amy
://guyinthechair.com/?p=164 http://jacwright.com/blog/320/introducing-reflex/ HTH; Amy instead of treating you like you dont know what actionscript 3.0 is and concentrating on MXML only? I cannot find the relationship or common functionality between the 2 different approaches. If i go with MXML im stuck

[flexcoders] Re: MXML Component Call Event in Parent

2010-04-16 Thread Amy
believe if you click on the HBox itself you won't get this, since I _think_ Containers have a Label property for use with Accordions n such). HTH; Amy

[flexcoders] Re: Reuse a LabelFunction

2010-04-16 Thread Amy
--- In flexcoders@yahoogroups.com, Angelo Anolin angelo_ano...@... wrote: Hi Amy, But as you can see in the function, I am specifying the Datafieldname from the object which was passed. How can I make it more generic so that I can re-use it in other datagrid columns?  I hope you

[flexcoders] Re: Wierd error in instanting an mxml component in actionscript in Flex 4

2010-04-13 Thread Amy
{ _spendingAccount.moneyAccount.dataProvider = new ArrayCollection(); _spendingAccount.creditAccount.dataProvider = new ArrayCollection(); } Or, you could just properly encapsulate AccountView and let it set properties on its own children in commitProperties(). HTH; Amy

[flexcoders] Re: artchitectural suggestion for making any uicomponent draggable?

2010-04-13 Thread Amy
http://www.slideshare.net/ThomasBurleson/flex-behavior-injection --- In flexcoders@yahoogroups.com, Baz li...@... wrote: Hello, I have an application where any uicomponent is draggable relative to the stage. The code is the same for each one. Does anyone have a suggestion on a clean way of

[flexcoders] Re: Photo Viewer Sample App

2010-03-20 Thread Amy
dependent on binding, so it isn't able to swallow up errors related to being passed in junk values via binding. If you want to just work around it, then you can just listen for COLLECTION_CHANGE on photoService.galleries, and switch the ViewStack pane once the result is received. HTH; Amy

[flexcoders] Re: Reuse a LabelFunction

2010-03-19 Thread Amy
I be able to specify the datafield if I am going to reuse the same with other datagrid columns? That is what the DataGridColumn parameter is for. Look at its dataField property. HTH; Amy

[flexcoders] Re: What book in Flex would you guys recommend for a newbie ?

2010-03-19 Thread Amy
. Thanks. Try Flex 3: Training from the Source. HTH; Amy

[flexcoders] Re: Bindings within a dynamically created container fail.

2010-03-02 Thread Amy
that function contain anything that populates listItems (which I don't see a declaration for)? If not, maybe you should try binding to _queryVariables, which is the only ListCollectionView I see getting populated here. HTH; Amy

[flexcoders] Re: Searching through an ArrayCollection of Objects

2010-03-02 Thread Amy
--- In flexcoders@yahoogroups.com, Krunal Panchal panchal_...@... wrote: Hi, You have to create the copy of ArrayCollection using the Utility.Copy command which we help you to keep the copy of original one and create the copy of existing one. Apply the filter condition on newly

[flexcoders] Re: Best way to implement WebService Resend functionality?

2010-03-02 Thread Amy
--- In flexcoders@yahoogroups.com, handitan handi@... wrote: @Amy: I sort of found out why I was having issue in assigning the token. For some reasons that I still don't know, the ws resend is always failing due to Parameter-fault message, which is weird because I put all the same

[flexcoders] Re: Using Flex Builder 3 With PHP and MYSQL

2010-03-01 Thread Amy
you to display both images stored on a server and data held within mysql tables in flex in a tilelist via php? I'm struggling to find any good examples/tutorials on this. http://flexdiary.blogspot.com/2009/01/example-of-casting-contets-of-swfloader.html HTH; Amy

[flexcoders] Re: Using Flex Builder 3 With PHP and MYSQL

2010-03-01 Thread Amy
:) -Amy

[flexcoders] Re: Dynamically naming classes

2010-02-22 Thread Amy
at Object or Dictionary. However, you may also want to consider just adding the date as a property of your Class that lives in the ArrayCollection, then just use a Filter or a Cursor to locate the appropriate item. HTH; Amy

[flexcoders] Re: Best way to implement WebService Resend functionality?

2010-02-19 Thread Amy
, resending the service call by doing op.send(args). I don't know yet on how-to copy over all saved infos from the previous service-call's token into this new one. The token should have the Responder still attached. I think you can probably just grab it and put it into the new token. HTH; Amy

[flexcoders] Re: Any Adobe folks on here?

2010-02-18 Thread Amy
-iis-and-microso-1.html HTH; Amy

[flexcoders] Re: Why most Flex Developer job ads ask now for Knowledge in Java??

2010-02-17 Thread Amy
body that probably doesn't really see that either? JMO; Amy

Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-13 Thread Amy
when they do something stupid and YOUR logic errors out. In short, you have to work together with your other team members one way or another to make this work. Why not just shortcut to the most performant method? -Amy

[flexcoders] Re: AdvancedDataGrid Grouping with XML

2010-02-13 Thread Amy
there are some XML folks out there that can offer some advice . I think you'll need to use a groupingFunction to group on .attribute('name').child('text').text()=='Category' (Sorry, for some reason my blog doesn't email me these days when I get a comment.) HTH; Amy

Re: [SPAM] [flexcoders] Obtaining rendered text from a DataGrid

2010-02-12 Thread Amy
dataGridColumn. HTH; Amy

[flexcoders] Re: Security Sandbox Error Help

2010-02-10 Thread Amy
--- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: What I do is go to http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html and add the bin-debug folder to the list. I haven't personally tried this, but this may work as well.

[flexcoders] Re: Will there be any changes in the current 3.x SDK to measure text correctly

2010-02-10 Thread Amy
they are, which makes text sizes wonky inside renderers. For a rundown on how this works, check out http://www.insideria.com/2009/12/handling-delayed-instantiation-1.html -Amy

[flexcoders] Re: AddCallBack method of Flash's External Interface not Working

2010-02-07 Thread Amy
loaded. Then, in the JS function that gets called from there, I will make my initialization type calls. HTH; Amy

[flexcoders] Re: Bitmap with Scale9 in custom border

2010-02-04 Thread Amy
for the Bitmap, I assume. Set the scale9 grid on the graphic asset so it does what it was (i.e. set the top or bottom grid piece to be all the way at the top or bottom). HTH; Amy

[flexcoders] Re: newbie q: transition from flash to flex (long-ish)

2010-01-28 Thread Amy
to be data driven. HTH; Amy

[flexcoders] Re: newbie q: transition from flash to flex (long-ish)

2010-01-28 Thread Amy
generate the question answered/question skipped events. You shouldn't really need next/previous events, because the next and previous navigation elements (buttons) would generate events that would both change the state of the quiz and populate your QuestionView. HTH; Amy

[flexcoders] Re: Public Arrays

2010-01-22 Thread Amy
-by-michael-labriola/ HTH; Amy

[flexcoders] Re: Custom ComboBox Class issue

2010-01-22 Thread Amy
other defaults I'm missing because I can't extend the ComboBox. Anyone have a suggestion? I think it's called globals.css. HTH; Amy

  1   2   3   4   5   6   7   8   9   10   >