Re: [flexcoders] Pop Up Panels, what to use/how to make them?

2006-12-15 Thread Samuel Reuben
Try a TitleWindow popped up. -sam On 11/27/06, {reduxdj} [EMAIL PROTECTED] wrote: How do you make pop up boxes like the alert box? I'd like to make a panel with a textarea component pop up on top of my application in the center, not below it or inside it. I tried to use an alert box and and

Re: [flexcoders] Pop Up Panels, what to use/how to make them?

2006-12-15 Thread {reduxdj}
Samual, thanks, got it. I made a custom component and loaded with a pop up manager. works just fine. Thanks, Patrick Samuel Reuben wrote: Try a TitleWindow popped up. -sam On 11/27/06, *{reduxdj}* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: How do you make pop up boxes like

[flexcoders] Re: how many the classes of flex?

2006-12-15 Thread raju_bb
Hey in all there are 318 classes in Flex :)

Re: [flexcoders] customising preloader

2006-12-15 Thread {reduxdj}
Stephen: I've been messing around with the same thing, it's always nice when other people have the same challenges, which means more help. I've got a lot to learn and the following solution might be considered a bad hack, but sometimes what works, works. Keeping preloader on the screen

RE: [flexcoders] customising preloader

2006-12-15 Thread Giles Roadnight
I managed to do what I wanted in the by basing it on the examples that you list and by looking at the examples on livedocs. This is what I ended up with: The only thing I couldn't get it to do was to make the progress bar move as data is loaded but the file I am loading is very small so it

Re: [flexcoders] SEO Compatibility

2006-12-15 Thread Sebastian Zarzycki
Sterling Ledet wrote: One thing to note is there is a difference between SEO compatible and SEO friendly. While it is certainly possible to use google to search for specific file types, whether they be PDF, SWF, DOC files or others (see advanced search for the drop down), these pages will not

[flexcoders] using coldfusion to return height and width of flex swf

2006-12-15 Thread grae_hall
I've got a SWFTag coldfusion tag I've made that's a handy shortcut for embeding flash 8 or less swfs into a page with syntax that feels similar to an an HTML image tag. Unfortunately, it requires that I know the explicit width and height of the swf, and set them as attributes. SWFTag uses

Re: [flexcoders] Flex data service query!!!!!

2006-12-15 Thread Rich Tretola
There are no changes necessary unless you are referring to the definition in the proxy-config.xml file. What does your mx:WebService tag look like now? Rich On 12/15/06, ravi mishra [EMAIL PROTECTED] wrote: hi group, Anybody please tell me, what changes are to be made and where the

RE: [flexcoders] Image Slide Show(Quick One)

2006-12-15 Thread KP
Hi All, I just want to confirm that can we load all the images directly in the array instead of storing image sources in that. If we can do this then this will really help because then we can load big resolution/sizes images also in the slide show. Thanks Kumar _ From:

Re: [flexcoders] SEO Compatibility

2006-12-15 Thread Tom Chiverton
On Thursday 14 December 2006 19:39, Kevin Newman wrote: For an example, imagine a message board or blog that was completely contained within a Flex app. How would google index that, and link in? Sensible stuff in the HTML wrapper. It's not rocket science ! -- Tom Chiverton Helping to

[flexcoders] Setting dataprovider to itemrenderer in datatagrid.

2006-12-15 Thread Tero Pikala
I'd like to know if following code uses proper way to set dataprovider. It works but should I do things some other way (maybe injecting dataprovider after application has initialized?) Thanks! ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] style property reference

2006-12-15 Thread Tom Chiverton
On Wednesday 06 December 2006 16:39, bitfacepatrick wrote: Hello Can anyone tell me where I can find a reference that lists and defines all the possible style properties. LiveDocs lists the valid ones for each element. -- Tom Chiverton Helping to heterogeneously improve turn-key platforms

Re: [flexcoders] validating a swf origin on URLRequest

2006-12-15 Thread Tom Chiverton
On Monday 11 December 2006 17:22, marumucho wrote: 1. user accesses swf from foo.com 2. swf makes a URLRequest to foo.com/method.php 3. method.php needs to check if the swf making that request was downloaded from foo.com Unless you have a cross domain.xml it can not be any other way. -- Tom

[flexcoders] editable combobox

2006-12-15 Thread Paul Hastings
i can't seem to catch hold of where user input data is going for editable comboboxes. i've tried selectedLabel, selectedItem, cruising the data provider, etc. i guess i'm missing something. do i need an event listener for this? thanks.

[flexcoders] Re: itemRenderer issues

2006-12-15 Thread jnewport
Ok, a night of sleep and your comments cleared things up. I have the else if statement because in the future we might add a third image yellow_dot.jpg if all the other conditions fail. What I did is just put in return statements after each assignment statement and it works perfectly. Thanks for

[flexcoders] NetConnection.Call.BadVersion

2006-12-15 Thread Cameron Ray
I'm getting some troubs from Flex using AMFPHP remoting. I'll try to make this as brief as possible. I'm receiving the dreaded NetConnection.Call.BadVersion. It's a simple login service to check a username password against the mySQL DB. It works fine if I don't try to encrypt the

[flexcoders] Re: Date Fields and Data Binding.

2006-12-15 Thread cardinalflexjeremy
I did and that worked. I knew the problem could not be as hard as it was turning out to be. The problem was I was being asked to help with another co workers problem. He had in one place the value from the model bound to the text attribute, but the selectedDate was bound back to the model

[flexcoders] Re: Database Connectivity - Why so hard?

2006-12-15 Thread Jamie O
Hey, I looked through the pages but did not try the sample. My $0.02 on code generators has always been that once you understand the entirety of the code languages you are working with, they can be a great way to save time and effort. But early in the learning process they tend to cause one more

[flexcoders] Unused tags in properties found?

2006-12-15 Thread Dirk Eismann
I've created a simple Java class which implements flex.messaging.FlexConfigurable. This works nicely and the initialize methid gets invoked as expected. However, if I place additional properties inside the remoting-config.xml for this RemoteObject the instantiation fails and I end up with Flex

[flexcoders] Flex using Actionscript 2.0

2006-12-15 Thread stephen50232
Hi, I'm working with a Flash designer on a project and some of they are using some Actionscript functions which I would like to use in my Flex app. Is it possible to incorporate code written in AS 2 in Flex as code behind files? Stephen

Re: [flexcoders] editable combobox

2006-12-15 Thread Daniel Freiman
text property. This property is read-write in and editable combobox. I think it's read only with non-editable comboboxes. - Dan On 12/15/06, Paul Hastings [EMAIL PROTECTED] wrote: i can't seem to catch hold of where user input data is going for editable comboboxes. i've tried

[flexcoders] Re: Connect to FB2 Debugger from SDK compiled swf

2006-12-15 Thread cluebcke
Thanks Bjorn, To be honest, in my case it turns out I was just being a dunce. What I needed to do was edit my run/debug configuration, under the Main tab in the URL to path to launch. Somehow I saw that a good dozen times before I thought, Hmmm, maybe I should use a URL instead of the default

RE: [flexcoders] Flex using Actionscript 2.0

2006-12-15 Thread Giles Roadnight
No, I don't think so, Flex will only work with AS3 as far as I know. Giles Roadnight _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of stephen50232 Sent: 15 December 2006 14:49 To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex using Actionscript 2.0

[flexcoders] How to embed and play video formats in Flex components?

2006-12-15 Thread kaushikb_ju
Hi, Please let us know how we can embed video formats,ppt(power pont presentation) and pps formats in Filex components. If it is not supported directly then let me know the way I can do that. Any example will be very helpful. Regards, Kaushik

[flexcoders] Setting the titleIcon at runtime, knowing the path of the icon image

2006-12-15 Thread pitziilu
I have this xml for example: item icon=myIcon.gif/ for every item I will add a TitleWindow to the Application, and I need to set the titleIcon property. I tried it this way: var iconSource:String = 'url(' + [EMAIL PROTECTED] + ')'; myTitleWindow.setStyle(titleIcon, iconSource); even if I try to

Re: [flexcoders] Flex and Maven2 managed project

2006-12-15 Thread Oliver Lietz
Am Donnerstag, 14. Dezember 2006 21:11 schrieb Thijs Triemstra: Hi Oliver, I'm very interested in a Maven 2 plugin for Flex, I have played with Maven but don't exactly know what needs to happen for a plugin, is there any scripting involved or is it more a config of xml files thing? Hi Thijs,

[flexcoders] Re: how many the classes of flex?

2006-12-15 Thread ben.clinkinbeard
http://feeds.feedburner.com/~r/mannu/~3/57722428/385834.html --- In flexcoders@yahoogroups.com, songhuanren [EMAIL PROTECTED] wrote: how many the classes of flex? ha.ha.

[flexcoders] Re: Setting dataprovider to itemrenderer in datatagrid.

2006-12-15 Thread ben.clinkinbeard
mx:ComboBox dataProvider={selectData} --- In flexcoders@yahoogroups.com, Tero Pikala [EMAIL PROTECTED] wrote: I'd like to know if following code uses proper way to set dataprovider. It works but should I do things some other way (maybe injecting dataprovider after application has

[flexcoders] Re: using coldfusion to return height and width of flex swf

2006-12-15 Thread Derrick Grigg
You can try the FlashInspector created by Doug Hughes. Here's some info and a download for it. a href=http://www.dgrigg.com/post/Read-SWF-height-and-width-with-Coldfusion;http://www.dgrigg.com/post/Read-SWF-height-and-width-with-Coldfusion/a Derrick Grigg -- www.dgrigg.com

Re: [flexcoders] Setting the titleIcon at runtime, knowing the path of the icon image

2006-12-15 Thread Michael Schmalle
Hi, One, titleIcon is not a style, it's a property. Two, It's of type Class, so this means you have to embed the icon. Three, You cannot in this incarnation of Flex dynamically load an icon into the titleIcon slot. Peace, Mike The only workaround I see is create an assets class that

Re: [flexcoders] How to embed and play video formats in Flex components?

2006-12-15 Thread greg h
ADMINISTRATOR: SPAM ALERT Kaushik, if you are real, please name which FLEX component(s) you need support with. Please provide more detail regarding what you know about FLEX and what you are trying to do with the file formats you listed. And in case you are real, yes video is supported

Re: [flexcoders] Re: Disable Application Blur in Popup window

2006-12-15 Thread John Kirby
That worked! Also if you add modalTransparencyBlur = 0 you get an unblured background. Perfect... thank you! .j camlinaeizerous said the following: it works perfectly is you do it on the mxml page of the title window. mx:TitleWindow modalTransparencyBlur=0 ... --- In

RE: [flexcoders] remoting with public access modifier in cfc

2006-12-15 Thread Brian Holmes
Check out your CFusionMX7\wwwroot\WEB-INF\flex\services-config.xml It defines end points for your remote objects in flex. Chances are you have a method-access-levelremote/method-access-level In your ColdFusion destination. Brian.. -Original Message- From:

Re: [flexcoders] NetConnection.Call.BadVersion

2006-12-15 Thread Tom Chiverton
On Friday 15 December 2006 09:28, Cameron Ray wrote: NetConnection.Call.BadVersion. I've only ever seen this when trying to talking to an endpoint URI that either didn't exist or has a HTTP / HTTPS mixup - is this possible ? -- Tom Chiverton Helping to preemptively improve real-time niches

Re: [flexcoders] To Remote Call or Not To Remote Call in Cairngorm

2006-12-15 Thread Tom Chiverton
On Wednesday 06 December 2006 17:06, Brian Holmes wrote: So I was wondering where and how other people are managing this kind of logic. Use a creationComplete event on each sub-view to fetch data for that view. creationComplete only gets fired on the first show of a component. -- Tom

Re: [flexcoders] NetConnection.Call.BadVersion

2006-12-15 Thread Tom Chiverton
On Friday 15 December 2006 09:28, Cameron Ray wrote: NetConnection.Call.BadVersion. I've only ever seen this when trying to talking to an endpoint URI that either didn't exist or has a HTTP / HTTPS mixup - is this possible ? -- Tom Chiverton Helping to preemptively improve real-time niches

Re: [flexcoders] How to embed and play video formats in Flex components?

2006-12-15 Thread Tom Chiverton
On Friday 15 December 2006 16:17, greg h wrote: ADMINISTRATOR: SPAM ALERT Because why ? -- Tom Chiverton Helping to widespreadedly lead interactive designs This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a

RE: [flexcoders] Column Chart with multiple axis

2006-12-15 Thread Ely Greenfield
Hi Dennis. The trick is to use ColumnSets and CoulmnSeries together. Give us a detailed description of what you're going for...i.e., how many series, how should they be clustered, how should they be stacked ,etc...and we can probably give you more specific suggestions. Ely.

Re: [flexcoders] How to embed and play video formats in Flex components?

2006-12-15 Thread greg h
Hi Tom, Because why? First, if you can make sense out of the post please don't be bothered by me. Rather, please do assist Kaushik. And if Flex components do have direct support for embedding PPT and PPS I would love to learn about it. Same if others here have a PPT/PPS embedding solution

RE: [flexcoders] To Remote Call or Not To Remote Call in Cairngorm

2006-12-15 Thread Brian Holmes
Yeah, I understand the creation complete event, and it doesn't always work for what I'm trying to accomplish. For data that's fairly static, such as a list of departments that's used in a lot of different views, I want to get the data once. I could do it at the top level, mx:Application tag, but

RE: [flexcoders] Re: Flex DataService example

2006-12-15 Thread Matt Chotin
Hi Devis, Did you check out the FlexCab example? It uses many of those functions in a variety of ways. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of devisbalsemin Sent: Thursday, December 14, 2006 11:23 PM To:

[flexcoders] Re: FDS - class cast exception - lazy loading relationship

2006-12-15 Thread thunderstumpgesatwork
Jeff, I did find one bi-directional that was lazy=false on both sides. This was not the relationship that caused the error however. Looking over the lazy attributes on all my destinations however, I did find one typo on a lazy=true relationship that was pointing to the wrong destination, and

Re: [flexcoders] Re: Flex DataService example

2006-12-15 Thread greg h
Matt (or anyone), Could you please clarify what is the FlexCab example? I am not familiar with it, can find no references for FlexCab in the docs and googling FlexCab turns up only the following forum thread also referencing FlexCab:

[flexcoders] Re: FDS - class cast exception - lazy loading relationship

2006-12-15 Thread thunderstumpgesatwork
Nevermind... I spoke too soon. Both of the issues I mentioned are corrected and I still get the exception. I swore it came up twice with no issues, but I am getting that same exception still. Thunder --- In flexcoders@yahoogroups.com, Jeff Vroom [EMAIL PROTECTED] wrote: I'm going to keep

RE: [flexcoders] Re: Flex DataService example

2006-12-15 Thread Matt Chotin
Sorry, it comes in the FDS samples.war. We've been working on getting these samples online but unfortunately there have been some bottlenecks in our process. So for now you would need to install FDS express and run the samples to see it. Matt From:

Re: [flexcoders] editable combobox

2006-12-15 Thread Amol Pandhare
Hey Paul, Are you talking about, how to get the value entered in the editable combobox. If yes, the use the combobox instance's value property. Amol. - Original Message From: Daniel Freiman [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, December 15, 2006 8:20:17 PM

Re: [flexcoders] Flex using Actionscript 2.0

2006-12-15 Thread Tom Chiverton
On Friday 15 December 2006 15:01, Giles Roadnight wrote: No, I don't think so, Flex will only work with AS3 as far as I know. Flex *2* will only work with AS3. Flex 1 or 1.5 will be fine with AS2, but costs a bomb. -- Tom Chiverton Helping to globally repurpose 24/365 CEOs

[flexcoders] AS Help

2006-12-15 Thread Matt Maher
I have a hard question to ask as I don't know the terms to use for it. Basically, I want to use a string variable to set what member variable to pull from another object How can I make something like the following work: function fun(inString:String):String { return

Re: [flexcoders] Re: Flex DataService example

2006-12-15 Thread greg h
fyi ... Flexcab is a sample application in the samples.war. Look in \samples\dataservice\flexcab (The above info was provided by JRun Randy Nielsen of Adobe on a thread I had cross posted to on the forums:

[flexcoders] Re: AS Help

2006-12-15 Thread Oscar
what about something like : function fun(inString:String):String { return preExistingObject[inString]; } --- In flexcoders@yahoogroups.com, Matt Maher [EMAIL PROTECTED] wrote: I have a hard question to ask as I don't know the terms to use for it. Basically, I

[flexcoders] Re: AS Help

2006-12-15 Thread Doug Lowder
That would be equivalent to return preExistingObject[inString]; For the current object, use this[inString]. --- In flexcoders@yahoogroups.com, Matt Maher [EMAIL PROTECTED] wrote: I have a hard question to ask as I don't know the terms to use for it. Basically, I want to use a string

Re: [flexcoders] editable combobox

2006-12-15 Thread Paul Hastings
On 12/15/06, Amol Pandhare [EMAIL PROTECTED] wrote: Are you talking about, how to get the value entered in the editable combobox. If yes, the use the combobox instance's value property. yes, getting the data. the text property seems to work, is value preferred? thanks.

Re: [flexcoders] editable combobox

2006-12-15 Thread Paul Hastings
On 12/15/06, Daniel Freiman [EMAIL PROTECTED] wrote: text property. This property is read-write in and editable combobox. I think it's read only with non-editable comboboxes. yup that did the trick. thanks daniel. btw is this documented someplace i missed?

Re: [flexcoders] SEO Compatibility

2006-12-15 Thread Kevin Newman
Tom Chiverton wrote: On Thursday 14 December 2006 19:39, Kevin Newman wrote: For an example, imagine a message board or blog that was completely contained within a Flex app. How would google index that, and link in? Sensible stuff in the HTML wrapper. It's not rocket science !

[flexcoders] More control on datagrid

2006-12-15 Thread Sandeep Malik
Hi Guys, Is there a way to get more control on a datagrid? We need to paint certain cells with different color and do some other similar stuff. I am not able to find any method which gives me a control on a cell of a datagrid. I know since DataGrid extends from a ListBase, there might just

Re: [flexcoders] NetConnection.Call.BadVersion

2006-12-15 Thread Patrick Mineault
That's because you're getting a fatal error from PHP, and therefore the output from php is not valid amf. You can either point to debuggateway.php instead (if you're using amfphp 1.2), or you can install Charles debugging proxy or ServiceCapture to read the error, or you can call your service

Re: [flexcoders]Adding blur or drop shadow filter effects to sub components

2006-12-15 Thread dorkie dork from dorktown
*Solved* I could or I could do this ;) This function is called on Application initialize: public function setStyleAcc():void { var navHeader1:AccordionHeader = AccordionHeader( navigationMenu.getHeaderAt(0)); var navHeader2:AccordionHeader = AccordionHeader(

[flexcoders] Merge two XML documents

2006-12-15 Thread Collin Peters
Is there a simple (and efficient) way to merge to XML objects? I do not see a function call to do this in the docs http://livedocs.macromedia.com/flex/2/langref/XML.html Ways of doing it I suppose would be manual with a foreach, or doing a toString on both and constructing a new document.

[flexcoders] sum of vertical column of datagrid

2006-12-15 Thread bhousel28
Hello all, I have seen many examples of taking items within a single row in a datagrid and performing calculations on those items to then create a new column to display the result total (ex: Item1 + Item2 - Item3 * Qty = Result in new column). I was wondering if someone might be able to post

[flexcoders] Re: AS Help

2006-12-15 Thread Matt Maher
So, what I'm hearing is every member of an object is also added to an associative array in that object by name? That's great news. I didn't expect that level of DOM-type support from AS... I am learning every day that these AS guys got a LOT right! Thanks! --- In flexcoders@yahoogroups.com,

Re: [flexcoders] is there a sample to update/delete records in a database server through webservice?

2006-12-15 Thread greg h
Steven, I know you had first posted on this 10 days ago, but it just came to my attention that Flex with .NET and Web Services is covered in the following online training: Flex 2 Beyond the Basics with: David Gassner http://movielibrary.lynda.com/html/modPage.asp?ID=290 11. Working with .NET

Re: [flexcoders] Re: SEO Compatibility

2006-12-15 Thread John Dowdell
dougmccune wrote: While I know Adobe employees don't like to admit this, the answer is very simple: It is often impossible, and if not impossible then at least extremely difficult, to get your Flex content indexed by search engines. That's the straight answer. No more no less. A particular

Re: [flexcoders] Re: SEO Compatibility

2006-12-15 Thread hank williams
On 12/15/06, John Dowdell [EMAIL PROTECTED] wrote: dougmccune wrote: While I know Adobe employees don't like to admit this, the answer is very simple: It is often impossible, and if not impossible then at least extremely difficult, to get your Flex content indexed by search engines. That's

Re: [flexcoders] editable combobox

2006-12-15 Thread Daniel Freiman
It's a member of ComboBase so if you looked in the API and weren't showing inherited properties then you would have missed it. - Dan On 12/15/06, Paul Hastings [EMAIL PROTECTED] wrote: On 12/15/06, Daniel Freiman [EMAIL PROTECTED] FreimanCQ%40gmail.com wrote: text property. This property

RE: [flexcoders] Merge two XML documents

2006-12-15 Thread Gordon Smith
What do you mean by merge? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Collin Peters Sent: Friday, December 15, 2006 12:22 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Merge two XML documents Is there a

Re: [flexcoders] Flex using Actionscript 2.0

2006-12-15 Thread Patrick Mineault
You can convert AS2 to AS3 (gets it about halfway there) using my converter here: http://www.5etdemi.com/blog/archives/2006/11/as2-to-as3-converter-createtextfield-geturl-handling/ Patrick Tom Chiverton a écrit : On Friday 15 December 2006 15:01, Giles Roadnight wrote: No, I don't think

Re: [flexcoders] Re: SEO Compatibility

2006-12-15 Thread Doug McCune
How about this one as an example: the Adobe Restaurant Finder sample app, with the Recent Reviews page in particular. The app is here: http://examples.adobe.com/flex2/inproduct/sdk/restaurant/recentReviews.html If you look at that app you can see user submitted reviews of restaurants. For

[flexcoders] Repeater issue: only one control generated

2006-12-15 Thread koldfuzun
I am using a repeater to loop over an array of array collections. The array outputs fine when I dump it to HTML, containing 4 array elements, and each element contains a valid recordsset. When I use the repeater in Flex only one datagrid is generated, the very first. I get no errors, nothing.

[flexcoders] Spell Checker

2006-12-15 Thread jmfillman
I've seen the Component on the Flex Exchange, and it's not going to meet my needs, primarily because my app won't always have an internet connection to use the Google API. Also, I need the custom dictionary to be in my DB so users have access to it regardless of what PC they are using. So,

Re: [flexcoders] Re: SEO Compatibility

2006-12-15 Thread John Dowdell
I'm out of this conversation, sorry... if I say start with the search terms you're trying to be found on and don't get acknowledgment, I'll just bow out now. (That restaurant sample applet, I have no idea if it's data-fed text or internal text, and don't see mentions of E Coli myself, and

Re: [flexcoders] Repeater issue: only one control generated

2006-12-15 Thread Ralf Bokelberg
The following code works fine for. Maybe your grids are layered on top of each other? - snip ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] Apollo

2006-12-15 Thread Mike Chambers
Apollo Wish Requests can go to: [EMAIL PROTECTED] -- The number #1 wish for me is this: create flash applications that run from CD (like a Flash Projector) WITHOUT the need to install anything (like Flash Projector, but with more rights and more access to the system). -- You will be able

Re: [flexcoders] Re: SEO Compatibility

2006-12-15 Thread Patrick Mineault
Saying you shouldn't use Flex for content-focused website is going a little bit over the edge IMHO. I think we all definitely agree that for 100% content-focused sites, you should use HTML, and for 100% data-focused sites, you should use Flex. However in between those extremes, you can still

Re: [flexcoders] Spell Checker

2006-12-15 Thread Patrick Mineault
As far as the PHP side of things goes, there are functions already built-in for that. You can read about it here: http://www.zend.com/zend/spotlight/spellchecking.php You could call php to do the spell check every so and so seconds or after every space or with a button... Really depends on

[flexcoders] OT:Flex 2 adoption rates so far?

2006-12-15 Thread pk_wasp
Has anyone got info on this? The lastest investor webcast didn't mention much about Flex 2 disappointly: http://www.adobe.com/aboutadobe/invrelations/06q4analyst/ (every bit of press helps convince that skeptical client :) )

Re: [flexcoders] Re: SEO Compatibility

2006-12-15 Thread Doug McCune
OK, right, we were talking about two different things. Sorry if this has caused confusion. I was talking about dynamic data being indexable by search engines. You were talking about search engine optimization for static content (sorry again if I'm still misunderstanding). I guess I never

[flexcoders] want to load multiple XML files to populate various controls

2006-12-15 Thread danj520
can you have multiple instances of httpService? Here is my code: mx:HTTPService id=adapSrv url=data/adapters.xml/ mx:HTTPService id=attenSrv url=data/attenuators.xml/ mx:HTTPService id=btSrv url=data/biastees.xml/ mx:HTTPService id=combSrv url=data/combiners.xml/

Re: [flexcoders] Error In Service Browser

2006-12-15 Thread Lachlan Cotter
The error means that the object you are assuming to be of type ErrorMessage was in fact just a plain object. You cannot cast an Object to an ErroMessage because it is missing all the methods and properties that an ErrorMessage is supposed to have. Cheers, Lach On 15/12/2006, at 3:22 AM,

[flexcoders] how to use the swf to aspx?

2006-12-15 Thread sky.zhao
i create charts to swf from flex. how can i insert it to my aspx page. i already try to copy it to my page .but it can't to use . help me. thank you . sky zhao.

RE: [flexcoders] how to use the swf to aspx?

2006-12-15 Thread KP
You just need to embed the complete swf file on to html object tag in any aspx page. Kumar _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sky.zhao Sent: Saturday, December 16, 2006 8:26 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to use