Re: [Flashcoders] Actionscript Framework

2011-04-14 Thread Vedanayagam G
Hi to all,,

 Any body ill help me for how to get x axis and y axis value in flex
mobile project... need to get axis value for image

Example:
   im having world map if im clicking australia then ill go inside the
next page like australia details

Thanks in advance.
i hope any one ill help me.

On Fri, Apr 15, 2011 at 11:49 AM, sina sadrzadeh wrote:

> Hello to all, i am from Iran and since 6 years ago works with Flash and
> Actionscript in some Multimedia projects...
> now i want to write a framework to be my assets in my projects, for example
> i want to have good musicpanel and whenever i need it i use it from my
> framework, or like a menu or some buttons...
> i write some of these tools but i can't complete the whole framework, i
> don't know where is my path to the end of it, please guide me that what is
> the start point of creating an actionscript framework???
>
> thank you to all
>
> --
> 1368 years until now();
> Me = new Object( );
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 
*Thanks & Regards*
*
*
*G.Vedanayagam*
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] Actionscript Framework

2011-04-14 Thread sina sadrzadeh
Hello to all, i am from Iran and since 6 years ago works with Flash and
Actionscript in some Multimedia projects...
now i want to write a framework to be my assets in my projects, for example
i want to have good musicpanel and whenever i need it i use it from my
framework, or like a menu or some buttons...
i write some of these tools but i can't complete the whole framework, i
don't know where is my path to the end of it, please guide me that what is
the start point of creating an actionscript framework???

thank you to all

-- 
1368 years until now();
Me = new Object( );
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] facebook actionscript graph api - post to "/feed"

2011-04-14 Thread Patrick Matte
I can only suggest you just use the Facebook API directly without using that
AS3 api.

So something like this.

var urlRequest:URLRequest = new URLRequest("https://graph.facebook.com/"; +
userid + "/feed);

var variables:URLVariables = new URLVariables();

variables.access_token = token;

urlRequest.variables = variables;

var urlLoader:URLLoader = new URLLoader();

urlLoader.load(urlRequest);






On Thu, Apr 14, 2011 at 1:14 PM, allandt bik-elliott (thefieldcomic.com) <
alla...@gmail.com> wrote:

> hi guys
>
> i'm having a bit of trouble with the facebook actionscript graph api
>
> While i can get posting to "/feed" to work with Facebook.ui, (does a
> facebook popup), i can't seem to get it to work with Facebook.api
>
> here is my code:
> var values:Object = {
>name:"This is my title",
>link:"http://example.com<
> http://www.google.com/url?sa=D&q=http://example.com>
> ",
>picture:"http://example.com/icon-75x75.gif<
> http://www.google.com/url?sa=D&q=http://example.com/icon-75x75.gif>
> ",
>caption:"this is a caption",
>description:"this is a long description",
>message:"This is a test message. There are many like it but this
> one is mine.",
>actions:
>{
>name:"Crazy extra thing",
>
> link:"http://example.com<
> http://www.google.com/url?sa=D&q=http://example.com>
> "
>}
> };
>
> Facebook.api(_user + "/feed", handleSubmitFeed,
> values, URLRequestMethod.POST);
>
> this is called after Facebook.login() with the
> permissions "read_stream,publish_stream,user_likes" succeeds and the id is
> stored in _user. I get the following error:
>
> [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2
> text="Error #2032: Stream Error. URL:
> https://graph.facebook.com//feed<
> http://www.google.com/url?sa=D&q=https://graph.facebook.com//feed>
> "]
>
> I'm not having any trouble with other calls to update the user's status
> ("/statuses") or retrieving their friends list.
>
> Any ideas as to what the issue might be please?
>
> thanks
> a
> ___
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>

This e-mail is intended only for the named person or entity to which it is 
addressed and contains valuable 
business information that is proprietary, privileged, confidential and/or 
otherwise protected from disclosure.

If you received this e-mail in error, any review, use, dissemination, 
distribution or copying of this e-mail 
is strictly prohibited. Please notify us immediately of the error via e-mail to 
disclai...@tbwachiat.com and 
please delete the e-mail from your system, retaining no copies in any media. We 
appreciate your cooperation.
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[Flashcoders] facebook actionscript graph api - post to "/feed"

2011-04-14 Thread allandt bik-elliott (thefieldcomic.com)
hi guys

i'm having a bit of trouble with the facebook actionscript graph api

While i can get posting to "/feed" to work with Facebook.ui, (does a
facebook popup), i can't seem to get it to work with Facebook.api

here is my code:
var values:Object = {
name:"This is my title",

link:"http://example.com
",

picture:"http://example.com/icon-75x75.gif
",
caption:"this is a caption",
description:"this is a long description",
message:"This is a test message. There are many like it but this
one is mine.",
actions:
{
name:"Crazy extra thing",

link:"http://example.com
"
}
};

Facebook.api(_user + "/feed", handleSubmitFeed,
values, URLRequestMethod.POST);

this is called after Facebook.login() with the
permissions "read_stream,publish_stream,user_likes" succeeds and the id is
stored in _user. I get the following error:

[IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2
text="Error #2032: Stream Error. URL:
https://graph.facebook.com//feed
"]

I'm not having any trouble with other calls to update the user's status
("/statuses") or retrieving their friends list.

Any ideas as to what the issue might be please?

thanks
a
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders