[Flashcoders] Flex + Crystal Reports

2010-03-16 Thread poste9
Some one has experiencie with flex + crystal reports to give me some links or tutorials about how to implement this feature on my projects? Ty! -- Rafael Lúcio http://www.hangarnet.com.br ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] Linux performance

2010-03-16 Thread Glen Pike
Hi, I am doing some rough testing with our interface app on various boxes and seem to be encountering speed issues running on a Linux ATOM based PC. We use a touchscree with slider control having a draggable thumb. On the Linux Atom (CPU 330 @ 1.60GHz) the slider thumb running in the

[Flashcoders] Tabbing in SWF Vanished! Bug?

2010-03-16 Thread Jer Brand
I have some streaming .flv videos online using the default FLVPlayer skins that have been up for months -- long enough for me to forget about the projects. This week I pulled one up to show someone on the team and noticed I could not tab to the controls in the swf, nor activate the swf itself via

Re: [Flashcoders] AS3 - Objective-C

2010-03-16 Thread Steven Loe
I've dabbled with iPhone development, and in a month or so, you can get familiar with the development process and the language. But to be really good, you'll probably need something like this: http://stevenloe.com/iphone/learn_iphone_development_in_5_easy_steps.jpg -Steven Loe Right, but

[Flashcoders] Bezier curve arrows

2010-03-16 Thread p...@ipauland.com
I was recently asked if I could add some arrowheads to some actionscript generated curves. I initially thought Triangle pointing to end point, and that would be a great solution. I can place a MC at the end of the curve, but how can I get the right angle to point it to?   Paul

Re: [Flashcoders] Bezier curve arrows

2010-03-16 Thread Pedro Kostelec
Calculate the derivative (the gradient, slope) at the end of the curve. But i have no idea how to do it is as3. Can we even calculate derivatives in AS3? ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] Bezier curve arrows

2010-03-16 Thread John McCormack
What is the equation of the curve? John Pedro Kostelec wrote: Calculate the derivative (the gradient, slope) at the end of the curve. But i have no idea how to do it is as3. Can we even calculate derivatives in AS3? ___ Flashcoders mailing list

Re: [Flashcoders] Bezier curve arrows

2010-03-16 Thread Mark Winterhalder
Actionscript generated curves are quadratic beziers. The angle is easy to get at the end points -- the (quadratic) bezier is defined by three points, one where you start and two that you pass to the curveTo method. By definition, the line defined by those two points is the tangent at the end

Re: [Flashcoders] Bezier curve arrows

2010-03-16 Thread Glen Pike
p...@ipauland.com wrote: I was recently asked if I could add some arrowheads to some actionscript generated curves. I initially thought Triangle pointing to end point, and that would be a great solution. I can place a MC at the end of the curve, but how can I get the right angle to point it to?

Re: [Flashcoders] AS3 - Objective-C

2010-03-16 Thread Mark Winterhalder
For those interested, iTunes-U has a Standford course for iPhone development. http://itunes.stanford.edu/ On Tue, Mar 16, 2010 at 4:57 PM, Steven Loe stevenloe5...@yahoo.com wrote: I've dabbled with iPhone development, and in a month or so, you can get familiar with the development process

Re: [Flashcoders] AS3 - Objective-C

2010-03-16 Thread allandt bik-elliott (thefieldcomic.com)
hey guys i picked up several books (because you never know which one will prove to be the best to use and 4 of them are from a set) and have been flicking through them and doing some of the tutorials. From my (very) limited experience with cocoa touch i got some amazing insights into the mvc

Re: [Flashcoders] AS3 - Objective-C

2010-03-16 Thread .matt
So is it a fools errand to try to dive into iPhone dev without knowing C going in? Can one bypass C and dive directly into O-C? .m ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

Re: [Flashcoders] AS3 - Objective-C

2010-03-16 Thread Eric E. Dolecki
I have heard that one should know C before diving into Obj-C. I did not do that as I wanted to dive in quicker. Once you get your head around memory management and how to manipulate NSString, etc. you'll be well on your way. The whole .h .m thing is strange, etc. I'm not sure if it would have made

[Flashcoders] Recurisve Functions

2010-03-16 Thread Lehr, Theodore
Any good tuts on recursive functions in as3? I am basically making an org chatr and would love to have one function to run through some xml to build the org chart (import a pic and name) and place them in the right position based on the xml. My xml would look something like: person pid='5'

Re: [Flashcoders] AS3 - Objective-C

2010-03-16 Thread allandt bik-elliott
I think of the .h files as interfaces - it makes sense after that Sent from my iPhone On 16 Mar 2010, at 18:59, Eric E. Dolecki edole...@gmail.com wrote: I have heard that one should know C before diving into Obj-C. I did not do that as I wanted to dive in quicker. Once you get your head

Re: [Flashcoders] Bezier curve arrows

2010-03-16 Thread Paul Andrews
On 16/03/2010 17:24, Glen Pike wrote: p...@ipauland.com wrote: I was recently asked if I could add some arrowheads to some actionscript generated curves. I initially thought Triangle pointing to end point, and that would be a great solution. I can place a MC at the end of the curve, but how

Re: [Flashcoders] Recurisve Functions

2010-03-16 Thread Paul Andrews
On 16/03/2010 20:19, Lehr, Theodore wrote: Any good tuts on recursive functions in as3? I am basically making an org chatr and would love to have one function to run through some xml to build the org chart (import a pic and name) and place them in the right position based on the xml. My xml

[Flashcoders] Calculator

2010-03-16 Thread Karl DeSaulniers
Hello, I have been asked to see if I can set up an online calculator. I was wondering if anyone had some pointers on where I can lear/find a script that calculates percentages. The regular math part I think I can figure out. Its not a complicated calc, just basic math and percentages calc, a

Re: [Flashcoders] Calculator

2010-03-16 Thread jonathan howe
What are you looking for beyond regular math i.e. sum/total * 100 = percentage? On Tue, Mar 16, 2010 at 9:07 PM, Karl DeSaulniers k...@designdrumm.comwrote: Hello, I have been asked to see if I can set up an online calculator. I was wondering if anyone had some pointers on where I can

Re: [Flashcoders] Calculator

2010-03-16 Thread Karl DeSaulniers
Right. Regular math. **Silly of me** Thank you, that I believe is what I was after. Karl On Mar 16, 2010, at 11:31 PM, jonathan howe wrote: What are you looking for beyond regular math i.e. sum/total * 100 = percentage? On Tue, Mar 16, 2010 at 9:07 PM, Karl DeSaulniers

Re: [Flashcoders] Calculator

2010-03-16 Thread Karl DeSaulniers
Actually this is more of what I was looking for. Thanks for the input though. http://www.gummy-stuff.org/a_calculator.htm Karl On Mar 16, 2010, at 11:37 PM, Karl DeSaulniers wrote: Right. Regular math. **Silly of me** Thank you, that I believe is what I was after. Karl On Mar 16, 2010, at