[flexcoders] I'm really, really frustrated with Flex

2008-02-29 Thread alexander.marktl
I have an app that needs to load multiple images. I do not wanna embed them. But no matter what method I try, nothing works on my server. On localhost everything works fine. The app is almost ready but on my server the images either don't load, push me an security error or what the heck else. I

[flexcoders] Re: E4X and DataGrid

2007-12-18 Thread alexander.marktl
Oh. I made a mistake in the post. This is how the grid looks like and it still doesn't work. mx:DataGrid dataProvider={photoFeed.entry} mx:columns mx:DataGridColumn headerText=Title dataField=title/ /mx:columns /mx:DataGrid

[flexcoders] E4X and DataGrid

2007-12-17 Thread alexander.marktl
Hi! I try to fill a datagrid with a RSS Feed. I wanna use e4x and a httpService and I tried out the tutorial Loading external data with HTTPService on the Adobe Devnet. Here's a link: http://www.adobe.com/devnet/flex/quickstart/httpservice/ Here are the most important parts: !-- Define the

[flexcoders] Re: Flex XML parsing E4X question

2007-06-04 Thread alexander.marktl
, alexander.marktl [EMAIL PROTECTED] wrote: Hi, I wanna parse a XML file like this: contacts contact name href=http://www.example.com;Huber/name ... /contact contacts I have no problem parsing it, except of the href within the name tag. My DataGrid looks like

[flexcoders] Flex XML parsing E4X question

2007-06-03 Thread alexander.marktl
Hi, I wanna parse a XML file like this: contacts contact name href=http://www.example.com;Huber/name ... /contact contacts I have no problem parsing it, except of the href within the name tag. My DataGrid looks like this: mx:DataGrid dataProvider={xmlContacts.contact}

[flexcoders] Re: Regular Expression Problem

2007-03-09 Thread alexander.marktl
constructor rather than the /.../ RegExp literal notation. In other words, do new RegExp(searchString.text, i) instead of /searchString.text/i - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alexander.marktl

[flexcoders] Re: Regular Expression Problem

2007-03-09 Thread alexander.marktl
, Stupid me... What i now have is very cool: a real LiveSearch feature with just a few lines of code. --- In flexcoders@yahoogroups.com, alexander.marktl [EMAIL PROTECTED] wrote: Hey Gordon. Thanks for the answer. I tried your suggestion, but it still won't work. I show once again what

[flexcoders] Regular Expression Problem

2007-03-08 Thread alexander.marktl
Hi there. I'm trying to use regex for a search function. I want case-insensitive search, so I'm using the regex: /ANYTEXT/i This one does work, but I want to insert a searchString.text variable instead of ANYTEXT. /searchString.text/i doesn't work. How can i do this? Here's the code, if it