Re: [flexcoders] Re: Decoding output of Flex Base64encoder in C++

2010-07-07 Thread Oleg Sivokon
Hey... HaXe compiles to CPP... all you need is just to compile it to flash and CPP, that's it... well, almost, flash memory uses big endians, so you may want to remove the flipping of the first and third bytes in decode function, and, of course, don't use Memory.select() when compiling to CPP (that

[flexcoders] Re: Decoding output of Flex Base64encoder in C++

2010-07-07 Thread cupofjoe1744
Turns out that modpbase64 doesn't like the line breaks (not sure yet if it is a configuration issue). Anyhow, I can disable line breaks with the encoder and be good to go. --- In flexcoders@yahoogroups.com, Oleg Sivokon wrote: > > Adobe encoder can conditionally ad linebreaks, that is all the

[flexcoders] Re: Decoding output of Flex Base64encoder in C++

2010-07-07 Thread cupofjoe1744
I must have slept through that class. So, if it is really simple, can you provide some assistance with an example that works with Flex Base64encoder (in C/C++)? I've tried a number of libraries (including modpbase64 -- used by Google Chrome and Google Gears), and can only get decoding of text

[flexcoders] Custom Tree Renderer with Advanced Data Grid

2010-07-07 Thread mregert
I have a custom tree renderer I've created. I'd like to use it inside of the Advanced Data Grid, but cannot seem to find a way to use it. I've tried setting the ADG item renderer, also tried just setting the column item renderer but neither seem to work. Is it possible to do this? I'm using

[flexcoders] Re: Decoding output of Flex Base64encoder in C++

2010-07-07 Thread cupofjoe1744
Would it not be better if you kept your snide comments to yourself? Seriously, get over yourself. I only posted to flexcoders after extensive trial and error. If it was the simple (for me), I'd have done it already. --- In flexcoders@yahoogroups.com, Tom Chiverton wrote: > > On Tuesday 06 Ju

Re: [flexcoders] User Interface Design Groups

2010-07-07 Thread dorkie dork from dorktown
nick, i know the perfect group, its called flexcoders. ...or flashcoders. most flash platform developers come from a design background and have a passion for the best UI experience. so post it here!! :) design and UI xp IS part of the flash platform... On Wed, Jul 7, 2010 at 1:27 PM, Nick Middl

[flexcoders] Data Binding different data types?

2010-07-07 Thread Roy Pardi
Hi - I was working through this tutorial on data binding but the code won't compile due to a data type conflict http://www.artima.com/articles/two_way_binding.html The 2-way binding on the text field throws the error since it is trying to bind the text property (String) to a value of Number (the

[flexcoders] User Interface Design Groups

2010-07-07 Thread Nick Middleweek
Hi, I've been working on a little composite search UI component but it needs polishing off and I wondered if there were any groups out there that could help with this sort of thing? Does anyone know of any? Cheers, Nick

[flexcoders] Loading animation between LCDS page fetched

2010-07-07 Thread Aasim
Hi, I need to show a loading animation while scrolling in a LCDS paging enabled datagrid. Is there a way to know when a new page is requested in flex while scrolling? and when data is returned back? Regards, Aasim

[flexcoders] Integrating Flex app in cfm page

2010-07-07 Thread Goutham
Hi, I have a flex application in a cfm wrapper. The coldfusion page has the header and footer and the swf is wrapped in between. Everything works fine, but the scope of the swf is just inside of the header and footer as it is embedded. The problem is, when there is a popup on the swf, the scope

Re: [flexcoders] HTTP Session is lost in IE8 when SWF is opened in J2EE Web Application...

2010-07-07 Thread Jitesh Shah
Thanx everyone. Was able to resolve the issue by explicing specify the secure channel to be used. Once the issue was not using amf-secure channelset and other time the issue ws point to amf instead of amsecure. In config file it was correct but since we switch dynamically for our product implementa

Re: [flexcoders] Decoding output of Flex Base64encoder in C++

2010-07-07 Thread Oleg Sivokon
Adobe encoder can conditionally ad linebreaks, that is all the difference between all RFCs basically. But, honestly, Base64 is a very simple algorithm, if you are not concerned about performance, let's say and you had started writing it at the time you've posted you would have a dozen of different

[flexcoders] TabNavigator styles not being applied (flex4)

2010-07-07 Thread bhaq1972
Anyone know why styling is not being applied to this Flex4 example (a modified example from livedocs)? thanks http://ns.adobe.com/mxml/2009"; xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx"> @namespace s "library://ns.adobe.co

[flexcoders] RichEditableText scrolling problem

2010-07-07 Thread Kevin Bowers
Hi All, I'm having a bit of an issue when using the RichEditableText component in Flex 4.  Using the following code I'm populating the textFlow with 3 lines of data.  However, when I try scrolling the text only the first and last lines are actually displayed, the middle line seems to vanish c

Re: [flexcoders] HTTP Session is lost in IE8 when SWF is opened in J2EE Web Application...

2010-07-07 Thread Wesley Acheson
Is your application running in a frame / iframe. When you say it only happens in IE8, how many different browsers have you tested on. Is the privacy level set to high? If it is you will lose session cookies. Are you sure your flex application is being loaded from exactly the same domain and the sam

Re: [flexcoders] Decoding output of Flex Base64encoder in C++

2010-07-07 Thread Tom Chiverton
On Tuesday 06 Jul 2010 16:00:08 you wrote: > point me to a C++ library or implementation of base64 decode that works > with Adobe Flex Base64encoder? What RFC does the Flex encode/decode > implement? Would it not be fairly easy to figure this out by sending through files that are just a few byte

[flexcoders] Re: Decoding output of Flex Base64encoder in C++

2010-07-07 Thread cupofjoe1744
I'm not concerned so much with the speed of encoding on the client side as much as correctness. So, unless the SDK Base64encoder is faulty, I'd like to stick with it. My real concern is how to properly decode the base64 string it produces on the server. I've tried a number of C/C++ libraries

Re: [flexcoders] Input formatter?

2010-07-07 Thread Nick Middleweek
Ok, cool... Thanks Scott... I was hoping there'd be a built in way that I can apply to different objects, I'm using it on the DateField object... I'll check that link out and have a hunt around... Nick On 7 July 2010 04:23, Scott wrote: > > > Sorry, my bad. I missunderstood. You’ll ne