Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7796053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:15:10+00:00 2026-06-01T23:15:10+00:00

I can’t add name and image from Facebook contacts to SqLite, becouse adding is

  • 0

I can’t add name and image from Facebook contacts to SqLite, becouse adding is inside in loop and loader start when Event is Complete. Fllowing code adds data to the database, but in the name of the object is the last person out of the loop. Any thoughts? Thanks!

        private var person:PersonVO;

    protected function handleFriendsLoad(response:Object, fail:Object):void 
    {
        if (fail) { return }

        var friends:Array = response as Array;
        var l:uint=friends.length;

        for (var i:uint=0;i<l;i++) {
            var friend:Object = friends[i];

            FacebookDesktop.api('/'+friend.id, loadData);
        } 
    }

    private function loadData(object:Object, fail:Object):void
    {
        if (fail) { return; }

        var loader:Loader = new Loader();
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageToByteArray);
        loader.load(new URLRequest(FacebookDesktop.getImageUrl(object.id, 'large')));

        person = new PersonVO()

        person.name = object.first_name;
    }

    private function imageToByteArray(event:Event):void
    {
        var wczytaj:Loader = (event.target as LoaderInfo).loader;
        var image:Bitmap = Bitmap(wczytaj.content);
        var encoderJpeg:JPEGEncoder = new JPEGEncoder();
        var byteArray:ByteArray = encoderJpeg.encode(image.bitmapData);

        person.image= byteArray;

        insert(person);
    } 

    private function insert(person:PersonVO):void
    {
        dbStatement.text = "INSERT INTO person (name,image) values(:name,:jpeg)";
        dbStatement.parameters[":name"] = person.name; 
        dbStatement.parameters[":jpeg"] = person.image; 
        dbStatement.execute();
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T23:15:12+00:00Added an answer on June 1, 2026 at 11:15 pm

    Extend Loader class functionality:

     dynamic class DynamicLoader extends Loader{}
    

    Then store whatever you want in instances of DynamicLoader:

    private function loadData(object:Object, fail:Object):void
    {
        if (fail) { return; }
    
        var person:PersonVO = new PersonVO();
        person.name = object.first_name;
    
        var loader:DynamicLoader = new DynamicLoader();
        loader.person = person;
        loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageToByteArray);
        loader.load(new URLRequest(FacebookDesktop.getImageUrl(object.id, 'large')));
    }
    
    private function imageToByteArray(event:Event):void
    {
        var wczytaj:DynamicLoader = (event.target as LoaderInfo).loader as DynamicLoader;
        var image:Bitmap = Bitmap(wczytaj.content);
        var encoderJpeg:JPEGEncoder = new JPEGEncoder();
        var byteArray:ByteArray = encoderJpeg.encode(image.bitmapData);
    
        var person:PersonVO = wczytaj.person;
        person.image= byteArray;
    
        insert(person);
    } 
    

    I have not used private var person:PersonVO;. So if you are not using it in the other methods of your class, you could remove it completely.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can we add custom language for RecognizerIntent? I have search many SO Question like
Does anyone know how can I replace this 2 symbol below from the string
Can you cast a List<int> to List<string> somehow? I know I could loop through
Can the Application Name passed to SQL Server (via the ADO Connection string) be
can anyone help me in trying to check whether JavaScript is enabled in client
Can 2 or more equations defining a function in Haskell share the same where
can I make my own headers in HTTP request ? e.g. This is normal
Can this be done? It seems like this should be possible. In general, I
Can anyone tell me whether Helvetica is a browser base font? If so, it
Can anyone recommend a good cheat sheet for gbd? I'm experienced with windbg commands,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.