895 reputation
216
bio website
location
age
visits member for 1 year, 5 months
seen 3 hours ago
stats profile views 113

Sep
20
comment Flex Callout Container List Item Selection Issue - Disable Automatic Pop-Up
I can't really follow to be honest. Could you please post so code? It sounds odd that two callout instances are created from a single click on a CalloutButton. I've never seen such a thing and I've used them quite a lot so far.
Sep
20
comment How to prevent itemRenderers from being replaced with new instances in Flex
That's what I think as well. All the examples regarding this topic I could find so far point to the same result -> properties cannot be replaced on existing renderers. Bummer. That might very well be the right answer for this question then. But I already have a workaround in mind (you've gotta be quite creative sometimes if you want Flex mobile to work properly ;)).
Sep
19
comment I have created a mobile app with Adobe Air 3.2., but its not working on iOS 6 iPad
My first attempt to solve that issue would be to use AIR 3.4 instead.
Sep
19
comment How to prevent itemRenderers from being replaced with new instances in Flex
@AdrianPirvulescu, on second thought, can't use states as the renderer properties are dynamically set by an external component. Renderer properties are for example labels and their sizes, the renderer than has to create labels according to the set properties, much like a table row with dynamic columns.
Sep
19
comment How to prevent itemRenderers from being replaced with new instances in Flex
Alright, tested a little more and turns out that it doesn't give a compile time error any more (set up a different class). However, what this doesn't do is really update the properties in the existing renderer(s), in fact I only get null on my properties. Did you actually use this before and are you sure that this is supposed to work this way? If so I need to debug a little more and maybe do need to come back with some code.
Sep
19
comment AIR iOS application window is tiny
In case you are testing the application yourself, I'd rather debug the app instead of exporting it as a SWF. ADL should give you the correct stage size.
Sep
17
comment Flex - How To Pass Multiple 'Datas' To A View?
... view 3, so if you access both the data object of view 2, plus the variable you set earlier, you end up having both data objects in view 2 on the second push.
Sep
17
comment Flex - How To Pass Multiple 'Datas' To A View?
Just to make this clear, where do you get to view 3? But if I'm not totally mistaken (still a little confused here), the methods from my previous comment do apply here. You can either set the navigators destruction policy to disabled to have your views in cache, or if that isn't an option for you, use a variable that is accessible from your views and not getting destroyed on view switch. Easiest place for that might be the Main class. So push your data to view 2, store the data in that variable, get back and push again. The data object of view 2 will obviously be the one from pushed from
Sep
14
comment IPA file size Flash Builder export
Although the essence of your answer is right, you're confusing a SDK with a runtime here. The SDK is not getting packaged with the app and deployed to the device, the runtime is. Two pairs of shoes really.
Sep
14
comment Adobe air NativeAlert for iOS and Android
Haven't tried it yet, sorry.
Sep
14
comment Adobe air NativeAlert for iOS and Android
Oh wait, I just realised that the native alert isn't the same as a push notification. Although the appearing window is basically the same, the underlying services are completely different. Push notifications are send from a server, whereas alerts are simply local notifications. Sorry, I'm so focussed on push notifications at the moment, I totally messed this up!
Sep
14
comment How to load multiple modules in flex asynchronously
Not sure if it applies for your type of application (too little information here), but you might wanna check out the new Worker class that has been introduced with AIR 3.4.
Sep
14
comment Adobe air NativeAlert for iOS and Android
Just a heads up, AIR 3.4 supports IOS push notifications out of the box, no ANE needed. I'd rather use that than an ANE that might stop working with future AIR updates. You'd still need one for Android, though.
Sep
13
comment Flex - How To Pass Multiple 'Datas' To A View?
I'm not quite sure how such an application would look like cause what you're trying to do sounds a little strange (I select some data on view 1, get pushed to view 2, somehow go to view 3 and select some other data and get pushed to view 2 again). I'm a little puzzled here. Anyway, the navigator has a destruction policy that keeps the views in memory so that you can indeed store the data object in a variable on view 2 and get to your other view, push view 2 again and overwrite the data object, you would then end up having both objects at the same time.
Sep
13
comment Writing an ItemRenderer in Actionscript in Flash Builder
I just stumbled across this question and would to comment on your answer. Although generally right, the creation of elements shouldn't be moved to the constructor. The correct place for that is the createChildren method.
Sep
13
answered Flex - How To Pass Multiple 'Datas' To A View?
Sep
12
comment Why do I need to restart Flash Builder after compiling?
Can't really help here, just wanted to mention that I ocasionally have a very similar problem, I make some code changes and FB still starts the old version without compiling the new one. Usually simply running the application again solves the issue. Not sure how to get rid of this either.
Sep
10
comment Endless process of packaging iOS mobile app in Flash Builder 4.6
Apart from updating Java (which I don't see as the cause for this issue tbh), I'd probably update Robotlegs as well. I understand that you cannot exclude Robotlegs and your assets library from your project, but a simple sample project that utilises both of these libraries should reveal whether they cause the issue you're experiencing.
Sep
10
comment How to prevent itemRenderers from being replaced with new instances in Flex
That should be possible to provide, would take me a few days to set up, though. End of this, or early next week sounds reasonable.
Sep
10
comment How to prevent itemRenderers from being replaced with new instances in Flex
No memory leaks and performance wise I don't see the issue. Where do you see potential flaws with this method of updating the renderer? But you're right, states are probably the more efficient solution, the only issue I'm having with states is the way to change them. I need the renderer to be updated based on a resize of the host component, the data object remains exactly the same though, so it doesn't carry any information about which state the renderer should be in.