[flexcoders] Re: Help, Random module load issues.

2008-08-27 Thread mthielman11
we are not using RSLs. I am guessing there is maybe an issue in the menubar its self, though sometimes I do see history manager errors and see datagrid listed. How can history manager through an error when it is disabled in the compiler?

[flexcoders] Help, Random module load issues.

2008-08-26 Thread mthielman11
Hey everyone. We are experiencing a ton of issues with our app with regards to module loading. Our main app at this point has 4 main sub modules. Until now only a couple users tended to switch between them but now it is becoming more common. We have noticed a completely random but troublesome bug.

[flexcoders] RTE for Form Letter content?

2007-10-02 Thread mthielman11
I am looking for a little advice here. We have a large flex app that has a need for form letters. These need to typically show a standard letter body mixed with information from some records like who to address it to, which users signature to use etc. I have currently set up the forms as PDFs

[flexcoders] File Upload I/O error only on Mac

2007-05-03 Thread mthielman11
Hello, we are having a strange problem trying to upload files via flex in out app. Our code works fine from Windows FIrefox. But on the mac we are getting an error: [IOErrorEvent type=ioError bubbles=false cancelable=false eventPhase=2 text=Error #2038: File I/O Error. URL:

[flexcoders] adding additional data to file upload via grid.

2007-04-10 Thread mthielman11
Hello all, We are really stuck with something here. We need to be able to upload files along with some additional data (file description, is document private, document catagory) to our server. The file itslef with reside on a file store and the other data will be stored in the DB. We are

[flexcoders] Help with tricky address entry

2007-04-02 Thread mthielman11
Hello all, I need a little help with something. We are trying to set up a form for entering address information. We want the user to enter the city name into a text input field and then be presented with a list of possible city, state, zip codes to select from. Once the select the row

[flexcoders] Re: Help with tricky address entry

2007-04-02 Thread mthielman11
Have you considered asking for the ZIP code first, then doing the lookup? We have. For this function they will not always have the zip. I actually have managed to figure most of it out. There was a reference to a now deleted state in the code I posted. I was also able to user the

[flexcoders] Re: Apollo isn't loading my modules

2007-03-23 Thread mthielman11
I am having a similar problem, app works fine in flex and works fine from apollo if I build it and run, but when I try exporting and running it will not load the module. I got it to work once or twice initially and that was it. Any ideas? --- In flexcoders@yahoogroups.com, Mark Doberenz

[flexcoders] Re: FDS 2 becomes LDS 2.5 | See labs.adobe.com

2007-03-22 Thread mthielman11
I am wondering if there will be a new pricing model?? We have a dire need for the PDF features of this product but nothing else. Will any PDF building abilities ever be added to flex itself? Will pricing still be the same for LCDS? If only using the PDF generation functions will LCDS express

[flexcoders] Re: How do I get this effect(float panel) like Adobe's Maptacular application?th

2007-03-22 Thread mthielman11
I wanted this too and stumbled apon where the code for that came from. It looks like sliding drawers .6 I downloaded it and now have it running in my app it is great. Would like to see some kind of tab or features or somethign though, that would be really cool! Here is the link.

[flexcoders] autocomplete help

2007-03-14 Thread mthielman11
Hey guys. We continue to have a ton of trouble trying to implement autocomplete with a changing data provider. Our data rpovider will be coming from the db as the user types. So far using the adobe one and also the one here: http://kuwamoto.org/2006/05/11/example-code-updated-for-beta-3/ we

[flexcoders] inserting row into datagrid from popup??

2007-02-20 Thread mthielman11
We are having some trouble with a datagrid. We have a grid with 2 columns. One is string and one is an item renderer of an image. To add a new record (that needs to display in grid) we open a popup window. We then want that new row to appear in the grid. We arte using XML as the data provider

[flexcoders] Re: inserting row into datagrid from popup??

2007-02-20 Thread mthielman11
we are not using E4X. Regular XML. We are able to edit existing records in the popup and have the data show up correctly in the grid. But with adding its REALLY weird. the scroll bar in the grid stops working, no other popups on the screen will work and when you exit the record it

[flexcoders] Re: flex and IE 7 problems.

2007-02-15 Thread mthielman11
all the user names right now are sinble alphanumeric. We are getting the same behavior from all 6 machines we have tried running IE7 from. The login screen is part of a very small logic shell application that then points to different flex modules. The app just passes username and password

[flexcoders] flex and IE 7 problems.

2007-02-14 Thread mthielman11
Has anyone tried their flex apps in ie7. We have recently and are having strange issues. The app comes up but we can not login. On our client it gives an invalid login error, and it sends weird data to the server. We actually saw in the log that it was changing some of the keys entered

[flexcoders] Re: flex and IE 7 problems.

2007-02-14 Thread mthielman11
Yes this is a flex 2 app. Nothing crazy going on at all. A simple HTTP post to do a user login. It sends 2 fields via xml back to the DB. Server side its a resin server sending data to PostgreSQL. When we tracked the logs its as REALLY strange. a user was loggin in, username and was

[flexcoders] Module Loader progress bar

2007-02-02 Thread mthielman11
We have a large app we are building and decided to break it into modules. We have the module loading after a user successfully logins in. After the login it changes states to a box that just contains th moduleLoader. Its all working fine except we get no feedback as to the progress of the

[flexcoders] Re: tracking a user session

2007-02-01 Thread mthielman11
thanks for the feedback. We are thinking of some type of object stored and passed with every HTTP service call. just not quite sure how to do it. I will pass this along to my programmers.

[flexcoders] redundant binding??

2007-02-01 Thread mthielman11
Hey guys. I am just wondering if this is really the proper way to bind and set up a field. He is an example of a field on a popup window we have. When the screen is loaded, it needs to retrieve the data stored in the db and display it on the screen. Obviously later on we need to then save it

[flexcoders] tracking a user session

2007-01-31 Thread mthielman11
I am having a surprisingly very difficult time finding a concrete answer as to how to handle sessions in flex. We need to be able to track a user once they are logged into the system. Security in our app is critical and every post needs to be validated. IN our current web app we simply had a

[flexcoders] Re: using autocomplete component with external data??

2007-01-20 Thread mthielman11
Thanks we will give this a try. I believe what my other programmer said the issues was, is that the data is not present when flex wants to show the drop down, as there is a slight delay, so the drop down list never appears. We will try again, thanks.

[flexcoders] using autocomplete component with external data??

2007-01-17 Thread mthielman11
Hello everyone. Has anyone been able to figure out how to use the autocomplete component from adobe as a search box against data in a DB?? We only seem to be able to use it with existing pre defined data sets. What we would like to do is use it as a real time filtering search box.

[flexcoders] Re: flex 2.0.1 feedback from the trenches

2007-01-10 Thread mthielman11
folder in the workspace. Anyone else have this issue with the eclipse plugin that has found a solution?? --- In flexcoders@yahoogroups.com, creacog [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, mthielman11 mthielman@ wrote: I am getting the same 1023 and 1144 errors. Using

[flexcoders] Re: flex 2.0.1 feedback from the trenches

2007-01-09 Thread mthielman11
I am getting the same 1023 and 1144 errors. Using Flexbuilder plugin for eclipse. Can NOT build ANY of my projects. Not happy right now. This is a HUGE bug and don't see how something like this gets through testing. Any way to fix this yet. I have completely reinstalled eclipse and

[flexcoders] Adding buttons to RTE control area.

2006-09-19 Thread mthielman11
OK so I need to add a Rich Text area to my app. It is going to appear in a popup window. Ideally I would like to make the RTE the popup panel on its own and add in a cancle and save button to the area that has the front controls, is this possible?? -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Posting data with HTTPService....Please help!

2006-09-15 Thread mthielman11
here is our main saving block of code. There are some other things done to o the binding, but this does the post. // prepare the request parameters var request:URLRequest = new URLRequest();

[flexcoders] Re: Panel Windows Title Icon

2006-09-15 Thread mthielman11
One question I have had is, is it possible to put a button bar or something of that nature in the title bar area? It would be nice to use that space for a series of icon buttons or something. --- In flexcoders@yahoogroups.com, jgraham_us [EMAIL PROTECTED] wrote: You can also extend the

[flexcoders] Re: AutoSuggest TextField

2006-09-14 Thread mthielman11
http://weblogs.macromedia.com/sho/archives/2006/02/mxml_text_compl.cfm Have not tried it myself. I will be needing a solution at some point too. We had built one for an html front end utilizing JSP and MySQL that worked great, have not tried one in flex yet. --- In

[flexcoders] Re: Posting data with HTTPService....Please help!

2006-09-14 Thread mthielman11
I don't have the code with me now but i will post it later to help you out. This KILLED us for over a week. The documentation was NOT accurate and I think we sort of got lucky with our solution but it works. I will do my best to post it later tonight. --- In flexcoders@yahoogroups.com,

[flexcoders] pop-up window x and y settings

2006-09-06 Thread mthielman11
Does anyone know how to set the x and way proprties of a popup window? Here is my function. This does not work for some reason. public function displayForm():void { var helpWindow:basics =

[flexcoders] Re: pop-up window x and y settings

2006-09-06 Thread mthielman11
or visible turned off on the basics component? Peace, Mike On 9/6/06, mthielman11 [EMAIL PROTECTED] wrote: Does anyone know how to set the x and way proprties of a popup window? Here is my function. This does not work for some reason. public function displayForm():void { var

[flexcoders] Re: Anyone actually able to save data from flex

2006-09-01 Thread mthielman11
on the url, I do not know if that has changed in 2.0. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mthielman11 Sent: Thursday, August 31, 2006 2:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Anyone

[flexcoders] Re: Don't bindings work both ways??

2006-09-01 Thread mthielman11
from what I can tell the issue continues to come down to the POST and contenttype. Adding these brings a stream error 2032. Any idea why a POST would cause a stream error? The back end is JAVA and there is code in place to recieve the content. -- Flexcoders Mailing List FAQ:

[flexcoders] HTTP Service bug???

2006-09-01 Thread mthielman11
Hello all we have been working on an issue we are having for about a week now. I have another post going on that but it has let us to believe there is a bug with the HTTP service command. We are trying to POST back to a java server with XML results in the body of the POST. We set

[flexcoders] Re: Anyone actually able to save data from flex

2006-08-31 Thread mthielman11
--- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 31 August 2006 01:06, mthielman11 wrote: Help :) You don't say what happens. Well what happens is the post gets logged on the server but the server does not see the XML data. There is no content body

[flexcoders] Re: Anyone actually able to save data from flex

2006-08-31 Thread mthielman11
We can not even get a simple sample like this to work. I can retieve and view data from the server but the posting is not working. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:HTTPService id=reviewCreateRequest

[flexcoders] Re: Anyone actually able to save data from flex

2006-08-31 Thread mthielman11
Here is the http service command. If i add contentType=application/xml and/or add method=POST we get [RPC Fault faultString=HTTP request error faultCode=Server.Error.Request faultDetail=Error: [IOErrorEvent type=ioError bubbles=false cancelable=false eventPhase=2 text=Error #2032: Stream Error.

[flexcoders] Re: Anyone actually able to save data from flex

2006-08-31 Thread mthielman11
Lets try this again. I continue to have trouble posting my coding example. Here is what we have tried now. mx:HTTPService id=srvsave url= useProxy=false method=POST contentType=application/xml mx:request obj{dataModel}/obj /mx:request

[flexcoders] Re: Problems saving XML data

2006-08-30 Thread mthielman11
NO that got cut off too Ugh this site is frustrating me. private function storePhysician_Basics():void { //srvsave.url = parentApplication.dataServerURL+store?a=b; testsave.send(); -- Flexcoders Mailing List FAQ:

[flexcoders] Anyone actually able to save data from flex

2006-08-30 Thread mthielman11
I started another topic on this below, but this is a more general question. We have been pulling our hair out trying to save xml data back to server from flex. We can retrieve and view data from the server fine but can not save. We have tried at least 5-10 different methods and even tried using

[flexcoders] Re: Anyone actually able to save data from flex

2006-08-30 Thread mthielman11
do you mind me asking how. We can not even get this very simple sample to work. ?xml version=1.0 encoding=utf-8? mx:Application pageTitle=Flex 2 Style Explorer xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% mx:HTTPService id=srvsave

[flexcoders] Re: Anyone actually able to save data from flex

2006-08-30 Thread mthielman11
OK we tried this method as well. We have now spent another entire day on this! Does anyone have a simple example of sending an XML file (or XML model) Via aHTTP service Post?? We have tried this many ways and honestly this has become very, very frustrating for everyone involved. If no one

[flexcoders] Problems saving XML data

2006-08-29 Thread mthielman11
Hello All, we are having a heck of a time trying to get any XML data sent back to out server. He have tried several different methods and so far none have worked. We have traced this and at this point out server is not receiving the body or XML data content and we can not figure out why.

[flexcoders] Re: Problems saving XML data

2006-08-29 Thread mthielman11
MY message got cut off. We are including that. Below is part of the code. mx:HTTPService id=srvsave url= method=POST resultFormat=e4x/ mx:XML id=dataModel format=e4x|xml physician testabc/test /physician /mx:XML -- Flexcoders Mailing List FAQ:

[flexcoders] exiting a tabset.

2006-08-14 Thread mthielman11
Hello all I have a problem. I have created a tabnavigator component. I want to set up one of the tabs to exit the tabset and take me back to the main grid results page. The way it is set up is the canvases of the tabs are mxml components that are loaded in to the tabs. The tabset as a

[flexcoders] help with fse command

2006-08-11 Thread mthielman11
I am having a little trouble trying to reference an mxml component file. I have a tabset and would like each of the tab canvases to be their own mxml file. THis is so we can programatically change the canvases based on certain criteria. I have used an example that used the following command

[flexcoders] adding icons to buttons on button bars.

2006-08-07 Thread mthielman11
I am wanting to use icons instead of the default buttons for a buttonbar. I did search here and only found one reference and it looked a little complicated. There apears to be an icon property in the buttonbar component but does not appear to do anything. Is this a bug or am I missing

[flexcoders] Sorting data grid that has paging.

2006-07-28 Thread mthielman11
We have an issue we are trying to resolve. We know that the datagrid by default has the ability to sort. But this only works when all potential results are downloaded into the datagrid from the server. ex. User does a search that returns 425 results. We want to use a paging concept to

[flexcoders] Any field types to past pic?

2006-07-21 Thread mthielman11
I have a quick question. We need a field to store a small 70x70 pixel picture file that will serve as a use icon on our project. Is there any type of field in flex that I can paste a picture into from the UI? Or do I need to upload an image file via flex, have it stored on an HD somewhere

[flexcoders] Re: FDS question

2006-07-12 Thread mthielman11
OK so what everyone is saying then is that FDS is not ideal for our situation and is only used if real time data pushing is needed? So the bigger question is how does sending data back and forth with XML perform? I have consistently heard that XML is inefficient and has a lot of overhead, so

[flexcoders] FDS question

2006-07-07 Thread mthielman11
OK I have been playing with flex for a couple of weeks now and we are planning on building out a rather large application in flex. The application is going to replace several current apps one of wich is web based the rest are not. I am trying to get my head around the whole FDS thing. Our

[flexcoders] togglebar arrangement

2006-06-30 Thread mthielman11
Hello, I am looking to see if it is possible to have a toggle bar contain multiple rows of button. For example I have an accordian that controls navigation to my various modules. Each module I think is going to be its own Flex application. Within each module are different components. I

[flexcoders] Calling one Flex app from another

2006-06-30 Thread mthielman11
OK let me see if I can explain this :) I have a website that i have set up with 2 frames. The left frame contains a flex application that is basically just an accordian for navigating. Each accordian option is considered a different module in our system. So for example I have one called

[flexcoders] Re: Calling one Flex app from another

2006-06-30 Thread mthielman11
--- In flexcoders@yahoogroups.com, Tobias Patton [EMAIL PROTECTED] wrote: You can use the SWFLoader class to load a Flex application from a URL and add it as a child of your application. THanks. I think what I was getting at in my original question was how do I call a certain state that

[flexcoders] Re: togglebar arrangement

2006-06-30 Thread mthielman11
Thanks for the advice it is not goign to work. Looks like I could work something out with the toggle parameter for buttons and some action script. Yahoo! Groups Sponsor ~-- Great things are happening at Yahoo! Groups. See the new email

[flexcoders] Large scale app, how to proceed?

2006-06-28 Thread mthielman11
Hello everyone. I have beeen following flex for quite sometime during the beta process. I am currently beginning work on a large scale web based application. We are basically migrating several different apps, some web based, some java based, to a new platform. We have spent the last

[flexcoders] Arrangement, front back?

2006-06-28 Thread mthielman11
OK this may be a really dumb question. But, if I have two items say a box and then a button and I want the box to be layered behind the button how do i do that? I do not see arrange front/back commands anywhere. Yahoo! Groups Sponsor ~--

[flexcoders] Reusing code blocks

2006-06-28 Thread mthielman11
Ok I have a MXML file that has 3 states. All of them have one coommon canvas in common that holds an accordian. It should look the same in all 3 states. Is there a way to only define the accordian (and canvas) container once and have it appear on all thre states?? Right now in the code

[flexcoders] Re: Large scale app, how to proceed?

2006-06-28 Thread mthielman11
Thanks guys. It is really kind of overwelming. I can do HTML/CSS stuff with my eyes shut, but I am just so lost with even simple things right now in flex. One thing that has concerned me is speed, but the new player seems to be a little faster. I don't understand the cold fusion part. If

[flexcoders] Re: Reusing code blocks

2006-06-28 Thread mthielman11
change the Based On drop down to be the state that contains the Canvas and Accordian. -d mthielman11 wrote: Ok I have a MXML file that has 3 states. All of them have one coommon canvas in common that holds an accordian. It should look the same in all 3 states. Is there a way to only