Re: Wordpress XMLRPC and AS3

2017-03-18 Thread flex capacitor
...@gmail.com> wrote: > Thanks flex_capacitor! unfortunately I couldn't get it work. Do I need to > compile it as an air app or is it working in just swf? Somehow I couldn't > log in to create new posts. > > 2017-03-10 0:12 GMT+03:00 flex capacitor [via Apache Flex Users] &

Re: Wordpress XMLRPC and AS3

2017-03-09 Thread flex capacitor
I use this on some projects, https://github.com/monkeypunch3/flexcapacitor/blob/master/MainLibrary/src/com/flexcapacitor/services/WPService.as On Mar 3, 2017 1:37 PM, "sencer" wrote: > I'm trying to post a message to wordpress blog in my flex project, to do > that > I

Re: Updating a Program

2017-02-05 Thread flex capacitor
It takes a few hours of setup work and then half an hour to an hour each time you create a new build. I've created a class that helps with the process here . Once you set it up you don't have to change the code. The setup instructions are in the class ASDocs. They may be

ExternalInterface warning

2017-01-28 Thread flex capacitor
Is there any way to turn off the ExternalInterface message: WARNING: For content targeting Flash Player version 14 or higher, ExternalInterface escapes strings using JSON conventions. To maintain compatibility, content published to earlier Flash Player versions continues to use the legacy

Re: Scout - What does this mean?

2016-12-11 Thread flex capacitor
I have a theory it's the data bindings to the data property in the item renderer or the data provider in the list. The data property of an item renderer can be null and so try catch blocks are placed around those assignments and then the errors are ignored. I can't recall if the try catch block

Re: Event Fired When A Transition is Complete?

2016-11-25 Thread flex capacitor
Here's some state change events, http://pastebin.com/Kx4X2MZx. I looked into the Transition class and it's not an event dispatcher. You can see how the transitions work by looking at commitCurrentState() in the UIComponent class. It looks like all the events are dispatched there. The extra event

Re: Event Fired When A Transition is Complete?

2016-11-23 Thread flex capacitor
Look up the elastic racetrack for more explanation. I don't know how many issues were solved by just using callLater :/ but I'm surprised the animation isn't finished. I can look at the sequence code and see if there is something different when they are ruin in a transition. If you can't wait a

Re: Scout - What does this mean?

2016-11-21 Thread flex capacitor
I ran into a similar issue before with effects classes. The first time they ran they were slow but then after that they ran normal. I don't think the effects or transitions are created until first use. Maybe Alex knows how to create them before first use? Before AVM2 we would take everything out