[Flashcoders] blip.tv api?

2009-06-18 Thread Fabio Pinatti
Dear Coders, I'm wondering if exists some api similar to youtube, to get blip.tv ( http://blip.tv/) videos.. Some advice? Thank you -- Fabio Pinatti :: web.developer www.pinatti.com.br :: 19. 9184.3745 / 3342.1130 ___ Flashcoders mailing

[Flashcoders] mathematics of an elipse

2009-06-18 Thread allandt bik-elliott (thefieldcomic.com)
hey guys I have have a maths problem that i'm having trouble solving, despite repeated attempts on Google. If i have an angle and a distance (n), plus one of the axis lengths (say the minor, y), how would i find out what the remaining axis length (x) was please? I've drawn it out here (let me

[Flashcoders] swfaddress help needed

2009-06-18 Thread Gustavo Duenas LRS
Hi Friends. I have seen the tutorial for the swfaddress in gotoandlearn.com, but I want to use it on a project I have which is a quite different situation, 1. the website is dynamic the parts of it are me on runtime, are not present on the stage at the moment, are just called and assembly

[Flashcoders] SecurityPanel events?

2009-06-18 Thread Andrew Murphy
Hello. :) Is there any way to detect when the user has finished using the Settings Manager to change their security settings? - user right-clicks on the Flash - selects Settings to open the Settings Manager - changes their settings - clicks Close to close the Settings Manager I want to be

Re: [Flashcoders] mathematics of an elipse

2009-06-18 Thread Charles Parcell
Hmmm Likely not, now that I am looking through it. I could have sworn it had a demo on angles and areas Charles P. On Thu, Jun 18, 2009 at 1:35 PM, Charles Parcell pokemonkil...@gmail.comwrote: Does this help at all? Check the demo. http://code.google.com/p/bezier/ Charles P.

Re: [Flashcoders] mathematics of an elipse

2009-06-18 Thread Charles Parcell
Does this help at all? Check the demo. http://code.google.com/p/bezier/ Charles P. On Thu, Jun 18, 2009 at 10:59 AM, allandt bik-elliott (thefieldcomic.com) alla...@gmail.com wrote: hey guys I have have a maths problem that i'm having trouble solving, despite repeated attempts on

[Flashcoders] legal: Flash player ActiveX usage on Windows

2009-06-18 Thread Pavel Repkin
Hey! I want to embed Flash ActiveX control inside my C++ application. Does Adobe allow to embed Flash control inside Windows application? Do you know what are the license requirements should I comply with if any? ___ Flashcoders mailing list

Re: [Flashcoders] Re: Fast color-transformation over MovieClip with cacheAsBitmap

2009-06-18 Thread Pavel Repkin
Primary because it's hard to track cumulative scale changes from the containers up the tree. It seems I have to workaround this problem and write my own bitmap-caching based on BitmapData. Thanks! On Tue, Jun 9, 2009 at 6:15 PM, Ruy Adorno r...@lesite.ca wrote: Why don't you create a BitmapData

Re: [Flashcoders] mathematics of an elipse

2009-06-18 Thread Ivan Dembicki
Hello Charles, You can build many ellipses through your points. More data needed for ellipse unique define. Also you can see old bezier classes http://bezier.googlecode.com/files/ru.bezier.zip Ellipse class especially. good luck! -- iv http://www.bezier.ru http://bezier.googlecode.com

Re: [Flashcoders] swfaddress help needed

2009-06-18 Thread Kenneth Kawamoto
You should not create your NewWindow in the newClick function. Do so on SWFAddressEvent.CHANGE event instead. Kenneth Kawamoto http://www.materiaprima.co.uk/ Gustavo Duenas LRS wrote: Hi Friends. I have seen the tutorial for the swfaddress in gotoandlearn.com, but I want to use it on a

Re: [Flashcoders] swfaddress help needed

2009-06-18 Thread Glen Pike
Hi, Like Kenneth said - you need to pass all your navigation from Flash through SWFAddress and don't directly create windows when someone clicks a button in Flash, but you listen for the changes to the SWFAddress value and open windows based on the value. That way, when someone clicks

[Flashcoders] assigning variable to a movie clip and a MOUSE_DOWN event

2009-06-18 Thread Kurt Dommermuth
Hi All, New to AS3. I'm enjoying it, but occasionally I run into issue where I don't know even what to search for to learn more. The short of it is this: //The first line is using an object o to store the loader info. //This was need because I had loaded an external swf and am loading //assets

Re: [Flashcoders] assigning variable to a movie clip and a MOUSE_DOWN event

2009-06-18 Thread Glen Pike
e.target will change depending on what was clicked inside the thing you are listening to events from... If you want to know the thing sending the event - the thing you are listening to, use e.currentTarget This explains it a bit more:

Re: [Flashcoders] swfaddress help needed

2009-06-18 Thread Gustavo Duenas LRS
Thanks Man, I will try that tomorrow, let you you know if that was it. Regards, Gus On Jun 18, 2009, at 5:02 PM, Glen Pike wrote: Hi, Like Kenneth said - you need to pass all your navigation from Flash through SWFAddress and don't directly create windows when someone clicks a button

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
Did you try... http://www.google.com/search?q=blip.tv+api First one on there. On Thu, Jun 18, 2009 at 5:33 AM, Fabio Pinattifpina...@gmail.com wrote: Dear Coders, I'm wondering if exists some api similar to youtube, to get blip.tv ( http://blip.tv/) videos.. Some advice? Thank you --

[Flashcoders] Query String + Loader odd issue

2009-06-18 Thread Steve Mathews
Using Flash CS3 pro, trying to load a Flex based swf into a non-Flex swf and pass a query string to the Flex application. Simple enough in theory, using a Loader just point at the file and load. Add the loader to the stage and all is good. Now for the query string. Add it to the path .. var

[Flashcoders] AS 2.0 FileReference issue I/O error thrown

2009-06-18 Thread TS
My uploader works on every other platform except for Mac. The file uploader never completes and throws an ioError? Latest Player installed on FF. Using PHP as the file handler on the backend. Anyone else have this issue or know a workaround? Thanks, T

Re: [Flashcoders] AS 2.0 FileReference issue I/O error thrown

2009-06-18 Thread Karl DeSaulniers
Hey T, If you want to send me your code offline or here, I am on a MAC and work primarily in AS2 and can test for you. Which uploader are you using? I have this error check listener in mine and it works fine. imagePane is a component in my file that displays the uploaded file once

[Flashcoders] ReferenceError: Error #1065 issue

2009-06-18 Thread Robert Leisle
Hi list, This should be simple, but for some reason refuses to cooperate. I'm working in AS3, CS3. I've got a super class (HsSegment) and a subclass (HsSegment_qtd1), both are public. In the super class are the definitions for many methods, including this definition: protected function

RE: [Flashcoders] assigning variable to a movie clip and a MOUSE_DOWN event

2009-06-18 Thread Kurt Dommermuth
man. THANK YOU! Kurt -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Glen Pike Sent: Thursday, June 18, 2009 5:38 PM To: Flash Coders List Subject: Re: [Flashcoders] assigning variable to a movie clip and

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
From developer wiki that I referenced in my previous post... You may be particularly interested in the main blip.tv API, which is built on the back of open standards like RSS and JSON. Blip.tv has a RESTful JSON API which you can call from Flash. To do this you would setup a URLRequest and

Re: [Flashcoders] blip.tv api?

2009-06-18 Thread Nate Beck
To try and make this a little more clear. You're basically requesting the information from their webservers using a customized url. A RESTful service you can actually use from a web browser, for example... on Twitter Search you can get your results in JSON by doing this.