Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

flexcoders · RIA Development with Adobe Flex

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 12330
  • Category: Development
  • Founded: Mar 17, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 16173 - 16202 of 165743   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
16173 Roger Gonzalez
rgonzalez@... Send Email
Jun 1, 2005
5:08 pm
... Yes. ... You should be all set then. Implementation left as an exercise to the reader. :-) Ok, some details: in order to avoid pulling in the Flex...
16174 Rick Bullotta
RBullotta Send Email
Jun 1, 2005
5:38 pm
Any insights as to whether or not Maelstrom/Flash Player 8 will support PNG (or ideally SVG) images natively/remotely (as opposed to embedded)? Rick Bullotta ...
16175 Tarik Ahmed
tarik_ahmed Send Email
Jun 1, 2005
5:44 pm
Hi Jamie. - Love Flex. Has enabled us non flash developers to build very productive and intuitive applications; and in some cases applications that weren't...
16176 jrene_7 Send Email Jun 1, 2005
5:53 pm
Hello, I am implementing an application with Struts, handling MVC, nevertheless want to modify the Vista of the client, a JSP, to change by a file MXML of...
16177 Dave
csgexec Send Email
Jun 1, 2005
5:57 pm
Any thoughts on an easy way to determine another date in time based on today's date? I want to query a web service using yesterday's date and I'm looking for a...
16178 Tracy Spratt
nts333rd Send Email
Jun 1, 2005
6:13 pm
This is simpler than it sounds. "Subclass"; means the same as "extend." The easiest way is to create a custom mxml component. For example the below subclasses...
16179 JesterXL
jesterxl@... Send Email
Jun 1, 2005
6:16 pm
function getYesterday():Date { var today:Date = new Date(); var yesterday:Date = today; yesterday.setHours(today.getHours() - 24); return yesterday; } ...
16180 temporal_illusion
temporal_ill... Send Email
Jun 1, 2005
6:17 pm
You could create a new Date, subtract the # of milliseconds that represents one day, and create another new Date based on that #. var yesterday : Date = new...
16181 Rick Bullotta
RBullotta Send Email
Jun 1, 2005
6:18 pm
Attempts to use the load() method of an Image component with a URL that creates a server-side generated image (JPEG) do not seem to display properly in the...
16182 Abdul Qabiz
abdulqabiz3 Send Email
Jun 1, 2005
6:34 pm
Hi, Make sure server-side is generating non-progressive JPEG image... Macromedia Flash Player can load non-progressive JPEG images only. -abdul ...
16183 Kristopher Schultz
krxtopher Send Email
Jun 1, 2005
6:37 pm
Rick, I recently ran into a problem like that when using a Scene7 image server. The solution I found was very odd but seems to work. Scene7 uses special URL...
16184 JesterXL
jesterxl@... Send Email
Jun 1, 2005
6:44 pm
Are the JPEG's being created progressive? Flash Player only supports non-progressive JPEG's to be loaded at runtime. ... From: Rick Bullotta To:...
16185 Manish Jethani
manish_jethani Send Email
Jun 1, 2005
7:55 pm
... Can you confirm that the media actually plays for a second by checking the value of the 'playheadTime&#39; property? It's odd. One workaround is to set the...
16186 dave buhler
pedalspeed1 Send Email
Jun 1, 2005
8:25 pm
Hi Manish, I've seen Krzysztof's issue in our Flex-Flashcomm apps. The FLV plays before pausing when it's first loaded, even if the command is: contentPath or...
16187 dave buhler
pedalspeed1 Send Email
Jun 1, 2005
8:29 pm
Baseline = the same term as non-progressive. Some of the image converters allow you to batch-convert images to baseline....
16188 Rick Bullotta
RBullotta Send Email
Jun 1, 2005
9:18 pm
Not sure we have the ability to change the JPG rendering type...of course, everything else on the planet supports this JPEG format - why not Flash Player? :-)....
16189 sbyrne_dorado Send Email Jun 2, 2005
12:05 am
I am wondering if I've stumbled on a limitation of Flex, or if it's a limitation of my knowledge (probably the latter). Here's the situation: I would like to...
16190 dave buhler
pedalspeed1 Send Email
Jun 2, 2005
12:58 am
So the player doesn't have to support a decompressor that would bloat the size. Same reason it doesn't support RegEx. ... So the player doesn't have to support...
16191 Tracy Spratt
nts333rd Send Email
Jun 2, 2005
3:30 am
It's a Java question, so a bit off-topic, but.. I need to encode an html string using Java in a JSP so I can put it in xml and HTTPService it to Flex where I...
16192 Matt Chotin
m_chotin Send Email
Jun 2, 2005
3:45 am
java.net.URLEncoder.encode(strToEncode, "UTF-8"); Matt ________________________________ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On...
16193 Matt Chotin
m_chotin Send Email
Jun 2, 2005
3:57 am
What urls are being generated by the server here, named services? If the urls need to be portable can you use relative urls? I can understand that you want a...
16194 dave buhler
pedalspeed1 Send Email
Jun 2, 2005
4:10 am
Hi Peter and Steven, First, thanks for the assistance and for Pete, the very eloquent response. 2. A Flex-specific RemoteObject envelope is being sent to a CFC...
16195 dave buhler
pedalspeed1 Send Email
Jun 2, 2005
5:56 am
ooops.. Meant to post this WORKING code with the source inline. Works Services.mxml <mx:RemoteObject id="loginService" ...
16196 Krzysztof Szlapinski
thx1140_2 Send Email
Jun 2, 2005
6:12 am
... yes that's right - it's about a second and the playhead is not at zero position when I start the video later in may app. So the movie doesn't start from...
16197 Jeff Steiner
jeff@... Send Email
Jun 2, 2005
6:48 am
Jamie, ... From: "Tarik Ahmed" <tariq@...> To: <flexcoders@yahoogroups.com> Sent: Wednesday, June 01, 2005 10:41 AM Subject: Re: [flexcoders] Flex - the...
16198 Mika Kiljunen
mkiljune Send Email
Jun 2, 2005
6:52 am
Hi, I stumbled into a problem when using keyboard to navigate on a flex UI. I have a tabnavigator tab which contains a form with plenty of different type of...
16199 Jeff Steiner
jeff@... Send Email
Jun 2, 2005
6:57 am
Jamie, I was introduced to Flex roughly 9 months ago and I have been loving it ever since. Like Tarik, I am not a Flash developer, but have gotton nothing but...
16200 Matt Chotin
m_chotin Send Email
Jun 2, 2005
7:16 am
You could put focusIn handlers on your TextInputs which would run some form of "ensureVisible" check. function ensureVisible(component, container) : Void { var...
16201 Mika Kiljunen
mkiljune Send Email
Jun 2, 2005
7:29 am
I’d say this functionality should be part of the flex environment rather than a user implemented behaviour…? -Mika _____ From: flexcoders@yahoogroups.com...
16202 Matt Chotin
m_chotin Send Email
Jun 2, 2005
7:35 am
http://www.macromedia.com/go/wish :-) ________________________________ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mika...
Messages 16173 - 16202 of 165743   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help