Help with soft like skype

Does blackbeery have a program/software like skype. I really need a soft to call to others computers from my blackberry 8310. Just sign session and call a contact who stay in his computer. Thanks for all. Alberto from argentina.

There is no Skype or skype-like application yet.
1. If any post helps you please click the below the post(s) that helped you.
2. Please resolve your thread by marking the post "Solution?" which solved it for you!
3. Install free BlackBerry Protect today for backups of contacts and data.
4. Guide to Unlocking your BlackBerry & Unlock Codes
Join our BBM Channels (Beta)
BlackBerry Support Forums Channel
PIN: C0001B7B4   Display/Scan Bar Code
Knowledge Base Updates
PIN: C0005A9AA   Display/Scan Bar Code

Similar Messages

  • Help with simple LIKE query...

    I have a person table, the person table has a field which has their interests... In a form they choose which interests they have i.e. swimming, tennis through checkboxes. What i don't get IS how do i create a query based on this? (for example one person likes swimming and the other tennis:
    SELECT * from Person WHERE interests LIKE '%Swimming%Tennis%';
    the above gives me 0 results any ideas?

    You can avoid difficult application issues by enabling a more appropriate schema.
    Here is a very basic schema that may or may not work for you, but I hope it will give you some ideas. I did not create any unique indexes in this sample, but both PERSON and INTEREST table would have a unique index created on them. The PERSON_INTEREST table would have a non-unique index created for it. I also included a query that shows how to correctly query against this schema. This is in Oracle syntax, but the DDL should be similar to whatever DBMS you are using, and the SQL should be the same.
    I'll be honest, this might be overkill for what you are attempting, but if you plan on extending your project / assignment in anyway, you would be better off with a more complete schema. I hope it helps. Good luck on your project / assignment.
    CREATE TABLE PERSON          (PERSON_ID NUMBER,   NAME_LAST VARCHAR2(20), NAME_FIRST VARCHAR2(20), EMAIL VARCHAR2(30));
    CREATE TABLE INTEREST        (INTEREST_ID NUMBER, INTEREST_DESC VARCHAR2(20));
    CREATE TABLE PERSON_INTEREST (PERSON_ID NUMBER,   INTEREST_ID NUMBER);
    INSERT INTO PERSON VALUES(1, 'SMITH','JOHN','[email protected]');
    INSERT INTO PERSON VALUES(2, 'JONES','FRED','[email protected]');
    INSERT INTO PERSON VALUES(3, 'ANDERSON','TOM','[email protected]');
    INSERT INTO PERSON VALUES(4, 'JACOBSEN','SAM','[email protected]');
    INSERT INTO PERSON VALUES(5, 'PUCKETT','KIRBY','[email protected]');
    INSERT INTO INTEREST VALUES (1,'TENNIS');
    INSERT INTO INTEREST VALUES (2,'SWIMMING');
    INSERT INTO INTEREST VALUES (3,'BOWLING');
    INSERT INTO INTEREST VALUES (4,'TABLE TENNIS');
    INSERT INTO INTEREST VALUES (5,'FISHING');
    INSERT INTO PERSON_INTEREST VALUES (1,1);
    INSERT INTO PERSON_INTEREST VALUES (1,3);
    INSERT INTO PERSON_INTEREST VALUES (1,5);
    INSERT INTO PERSON_INTEREST VALUES (2,2);
    INSERT INTO PERSON_INTEREST VALUES (2,3);
    INSERT INTO PERSON_INTEREST VALUES (3,1);
    INSERT INTO PERSON_INTEREST VALUES (3,2);
    INSERT INTO PERSON_INTEREST VALUES (4,2);
    INSERT INTO PERSON_INTEREST VALUES (4,3);
    INSERT INTO PERSON_INTEREST VALUES (5,4);
    INSERT INTO PERSON_INTEREST VALUES (5,5);
    // Find all the Interests for a Person
    SELECT
       A.NAME_LAST,
       A.NAME_FIRST,
       B.INTEREST_DESC
    FROM
       PERSON A,
       INTEREST B,
       PERSON_INTEREST C
    WHERE
       A.NAME_LAST = 'SMITH'
       AND A.NAME_FIRST = 'JOHN'
       AND A.PERSON_ID = C.PERSON_ID
       AND B.INTEREST_ID = C.INTEREST_ID  
    ORDER BY 3
    NAME_LAST            NAME_FIRST           INTEREST_DESC
    SMITH                JOHN                 BOWLING
    SMITH                JOHN                 FISHING
    SMITH                JOHN                 TENNIS
    // Find all people who likes to swim and bowl
    SELECT
       A.NAME_LAST,
       A.NAME_FIRST
    FROM
       PERSON A,
       INTEREST B,
       PERSON_INTEREST C
    WHERE
       B.INTEREST_DESC IN ('SWIMMING', 'BOWLING')
       AND B.INTEREST_ID = C.INTEREST_ID  
       AND A.PERSON_ID = C.PERSON_ID
    GROUP BY
       A.NAME_LAST,
       A.NAME_FIRST
    ORDER BY 1,2
    NAME_LAST            NAME_FIRST
    ANDERSON             TOM
    JACOBSEN             SAM
    JONES                FRED
    SMITH                JOHN
      

  • Help with pong like game

    Hi all profesionals.
    I am trying to create a pong like game, called PinPong (As it is a mix of pinball and pong)
    However, i am not happy with how the ball behaves in the game.
    Does anyone have some insigt on how to go about improving this behaviour?
    Thanx!
    You can download the fla here ... www.netfun.no/files/PinPong.fla (301 056 bytes)

    First of all, thx for trying to help!
    well.. its a different kind of snake game: the starting point of the snake always stays the same. this means, that the snake grows longer and longer, without the butt moving behind the snake, but staying in the same position.
    so, if i'd try to put all those lines into an array (every line of the snake is very small, it is been added every 30 millisecs another line) this array would explode, and this would not be a very fast or elegant solution. so i think it must be possible to read the Color of a single pixel, the pixel, where the snake moves next... so that if the color would be other than the background color, it should stop, because the snake must have been crashed into something.
    so.. i posted this into an earlier thread and somebody said the class BufferedImage and its method getRGB() should help. im currently trying to do so, but it doesnt work.
    i cant seem to get the data from the JPanel (where i am drawing the snakes (i think thats the problem)) into the bufferedimage.. anyone could help, please?
    here is some code from the game:
    CODE
    BufferedImage bi = new BufferedImage(505,505,BufferedImage.TYPE_INT_RGB);
    CurrentBackgroundRGB = bi.getRGB((int)(Worm1.xStart+Worm1.x),(int)(Worm1.yStart+Worm1.y));
    if(HintergrundRGB != BackgroundCol.getRGB())this.interrupt();
    end CODE
    "this" is the current thread of the animation
    I think the problem is obvious: how can i get the Buffered image to check the data from my JPanel?

  • Help with Facebook like

    Why is my Facebook LIKE shows 0, although we have 175 likes. It was keeping up with current number until i republished my site yesterday.
    I removed original button and added new like , but is still shows 0.
    Is this another bug with new update?
    Thanks,
    Arm.

    Hi Armen,
    Looking at the source code of the page, the Facebook url is incorrect. It reads: http://https//www.facebook.com/ArmenyCustom, which is one too many http://s! I'm guessing you pasted in the whole url into the widget's options, try it just by adding it from www onwards.
    David

  • Plz help with snake-like game..

    hi.
    i am new to java and want to programm a kind of worm-game where there are multiple worms, each different color and when your worm (you can choose your direction by pressing left and right button) crashes in something, that isnt the clear background (worms or the border rectangle) then it should stop. so my problem is:
    how can I get the program to know, that the worm has crashed into something?
    i think the easiest solution would be, if I could determine the Color of a specific Pixel on the canvas (i am using a canvas for the playfield).
    or another solution could be that if i could determine, wheter the Pixel is an element of the worm or the rectangle (dont think this is possible).
    somebody wrote in an earlier question that i should use the buffered image class. im currently trying to do so.
    another big problem is, that it has to be very fast. its a problem that i have to, in order to show the animation, repaint the canvas every 30 milisecs or so (im using a thread). is there a possibility to only redraw the worms? (im using g2d lines as "worms", that are beeing added every animation another line)
    THX VERY MUCH FOR HELPING!!

    First of all, thx for trying to help!
    well.. its a different kind of snake game: the starting point of the snake always stays the same. this means, that the snake grows longer and longer, without the butt moving behind the snake, but staying in the same position.
    so, if i'd try to put all those lines into an array (every line of the snake is very small, it is been added every 30 millisecs another line) this array would explode, and this would not be a very fast or elegant solution. so i think it must be possible to read the Color of a single pixel, the pixel, where the snake moves next... so that if the color would be other than the background color, it should stop, because the snake must have been crashed into something.
    so.. i posted this into an earlier thread and somebody said the class BufferedImage and its method getRGB() should help. im currently trying to do so, but it doesnt work.
    i cant seem to get the data from the JPanel (where i am drawing the snakes (i think thats the problem)) into the bufferedimage.. anyone could help, please?
    here is some code from the game:
    CODE
    BufferedImage bi = new BufferedImage(505,505,BufferedImage.TYPE_INT_RGB);
    CurrentBackgroundRGB = bi.getRGB((int)(Worm1.xStart+Worm1.x),(int)(Worm1.yStart+Worm1.y));
    if(HintergrundRGB != BackgroundCol.getRGB())this.interrupt();
    end CODE
    "this" is the current thread of the animation
    I think the problem is obvious: how can i get the Buffered image to check the data from my JPanel?

  • Help with Account Removal from Skype Directory

    To whom it may concern,
    I need help with removing my Skype account from the Skype Directory.  According to this webpage: https://support.skype.com/en/faq/FA142/can-i-delete-my-skype-account, only someone from Skype Customer Service can remove my account from the directory. Can someone assist me in removing my account from the directory? Thanks.
    Sincerely,
    Andrea

    I am not eligible for email or live chat service with a skype representative... I decided to post in this forum. Thanks anyway.
    afaik, all users can use the email support option.  But as you said you can not use that facility, send an email to their generic email address instead - [email protected]
    CONTACT SKYPE CUSTOMER SERVICE   |  HOW TO RECORD SKYPE VIDEO CALLS  | HOW TO HANDLE SUPICIOUS CALLS AND MESSAGES   |  WINDOWS PROBLEMS TROUBLESHOOTING   |  SKYPE DOWNLOAD LINKS  
    MORE TIPS, TRICKS AND UPDATES AT
    skypefordummies.blogspot.com

  • Hi, I need help with scrolling

    Hello I am Kevin Jin, I am working a huge project acually not that big, but I need help with five things, i mihgt have more things in my mind but here it is
    1. I need help with scrolling like where you have buttons for example or press on a navigation bar tab, then it goes to that specific pace of the page, for a one page website, for example some sites you press on contacts and gose down to the bottom of the page where the contacts place is located, not opening a new link.
    2.Second also I need help with navigation bar, where it fallows the scroll as it gose down, like for example when it is html the object is fixed to the top, and when you scroll down it will fallow it it,
    3.I need Parallex scrolling where you can have the timeline or animations run while you scroll in the meantime and have animation running all the time, for example the infographic site where the bees are fluying but still have seperate animations while you scroll
    4.I am so sorry i have two more to go, i appreciate your help, I would also like to ask if like looping each animations sperately, not looping the whole timeline, can it be possible to loop an animation while you have all the interactivity witht he site like looping seperately all the time, without interfeering with all the other animation
    5.I also are wondering if you can create multiple pages on one animate project, like multiple pages with html
    I just moved on to edge animate from html, and html was also beirf learn for me and mostly i was doing design work, and i thought getting out of graphic river and moving on the theme forest would be a better idea for me, thank you guys so much of the help and add me on skype : kevin2019170 or add me on facebook ; [email protected] or graphicriver, www.graphicriver.net/user/phantomore I would appriciate if you just would like contact me through SNS since I have that in hany 24 hours long, but the thred will also do, thank you doo much foryour help,
    P.S, I want also all the five things to work on one aimate project not interfeering with other ideas liek all five questions i had should run on one site,
    THANK YOU SO MUCH FOR YOUR HELP AND I APPRICIATE YOUR HELP!

    1.
    write this code in your button Click
    $('html,body').animate({scrollTop: sym.$("Your Symbole Name Here").offset().top}, "slow"); // scroll to the top of that symbol name
    Or :
    $('html,body').animate({"scrollTop":"600px"}, 750); // Higher value means slower , scroll to top page
    1 and 2 see this post http://forums.adobe.com/message/5531344#5531344
    3 use edge commons plugin http://www.edgedocks.com/edgecommons
    4.just put the animations behind eachother so when 1 is done, start with the animating the other symbol/div
    5. i thin its best just to make for every page a new project or make the site in muse.

  • Where to find help with SQL Developer installation?

    Hi,
    I just want to try out SQL Developer and compare its capabilities to TOAD's. Unfortunately, I am not PC software savvy and now am stuck with a SQL Developer (sqldeveloper-1.2.2998) installation problem. When I clicked on the .exe file, I got a blank SQL Developer screen - there is nothing in the screen except a heading that reads 'Oracle SQL Developer'...
    Does anyone know of a blog or a site that I can get some help with problems like mine?
    Any help is much appreciated!

    Hi,
    SQL Developer forum link:
    "http://forums.oracle.com/forums/forum.jspa?forumID=260"
    There are 2 versions of SQL Developer, with/without JRE.
    Try out the full install version with JRE.
    HTH
    Zack

  • Living in Japan and I'm an American who just signed up with Soft Bank the phone service here and spent a TON of money on an iPhone. I can't figure out how to connect my bank account at home to my app account so I can Skype my family. Please help!!!!

    Living in Japan and I'm an American who just signed up with Soft Bank the phone service here and spent a TON of money on an iPhone. I can't figure out how to connect my bank account at home to my app account so I can Skype my family. Please help!!!! I don't have a credit card nor do they gove debit cards to foreigners here, or at least it's really hard so I'm using my bank at home and still have a debit there. My phone number is 8 numbers plus the country code which is strange! Another thing is I was given a phone email that I was told to use for texting but I'm not sure how that works!! It's so frustrating too because no one speaks English here and I'm not very tech savvy. God bless you if you can help :)

    whichever app store you are connecting to, hyou need a credit card with an address in that country. Also, itunes gift cards must be in local currency too.
    If you are in japan, you need to use the japan app store

  • I can't download/install apps (like skype) in my iphone 5 from apple store....it shows error code-1009.... can anybody help me...?

    i can't download/install apps (like skype) in my iphone 5 from apple store....it shows error code-1009.... can anybody help me...?

    The error 1009 error is normally associated with a blocked country. There are a list of countries that Apple is not allowed to sell their software to due to US restrictions

  • HELP with the new version of skype

    Hi thank you for looking at this and spending you time please exuse my spelling and grammer I need help with my skype about the new verson i downloaded it today then boom when it said done downloading my skype was on a loading thing for my online status then i said "oh let me try to unlog then relog then it keeps giveing me this error message "Skype cant connect!" my internet works fine and no my proixy and crap like that is not messed up i have been searching the fourm for abunch of answers none of them worked please help!

    ruwim wrote:
    What Firewall and Antivirus applications are installed on your computer? Be aware that even expired applications may still block Skype.
    I disabled my firewall and i have a Antivirus that didnt bug it before after i updated it then it stoped working

  • I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    I need help with color pallette in iPhoto 11. I have created a book and would like to use a different color background than those given in "background." I have found the color palettes but can't seem to incorporate them into my backgrounds palette.

    That is not a feature of iPhoto - suggest to Apple - iPhoto Menu ==> provide iPhoto feedback.
    Additionally I have no idea what you are saying here
    I have found the color palettes but can't seem to incorporate them into my backgrounds palette.
    And it always helps for you to dientify the version of iPhoto that you are using
    LN

  • How do I create an app to interact with my Web ? like skype or msn ?

    I need to create a downloadable interface like Skype or Msn which will interact with my website that is created on PHP and MySQL...
    What will be the best practices for this ? thanks in advance...

    You might take a look at Adobe's AIR platform which can use HTML, JavaScript, and Flash to develop applications that work on the desktop like a regular app but can also connect/interact with a web service. But that question is more in line with the Dreamweaver Application Development forum.

  • Hello, I need help with my macbook pro. It looks like I cannot install anything anymore. Everytime I try to install a new software, use the migration assistant or click the lock to make changes, it simply does not react.

    Hello, I need help with my macbook pro.
    It looks like I cannot install anything anymore. Everytime I try to install a new software, I simply get stuck during the installation type process. I put in my password, it does accept it, but it does not go any further.
    I tried to reset the password, put no password, repair the permissions, the disk but nothing will do. I nearly got stuck with the log in screen but finally succeeded in disabling it.
    So I thought I might try to create a new account but I cannot click the lock to make changes. It simply refuses to react.
    I am now thinking about using the migration assistant to save all my settings, data and so fourth, but again I get stuck when I have to type in my password. It accepts it but nothing happens...
    I guess it has something to do with the authorization process, but can't find anything on the internet about it... Can you help me out?
    I am running Lion 10.7.3.
    Regards,
    Nicolas.
    (I apologize if any grammatical/structural mistakes were to be found, english is not my mother-tongue. )

    You probably won't like this suggestion, but I suggest you reinstall Lion.
    First, backup your system. Next, reboot your system, press/hold the COMMAND-R keys to boot into the Recovery HD. Select 'Reinstall Mac OS X'. If you purchased Lion as an upgrade to Snow Leopard, the reinstall process will install Lion 10.7.3. If your system came preinstalled with Lion, you might still get Lion 10.7.2. Both installs are a total install of the OS. None of your apps or data will be impacted. Just the OS.

  • Hello, I would like to download my contacts from icloud to a flash drive in order to print out.  Can anyone help with this?  Many thanks

    Hello, I would like to download my contacts from icloud to a flash drive in order to have them printed out as I have over 4,000 contacts.  Could anyone help with this?  Thank you

    This  this discussion >  https://discussions.apple.com/message/24150181#24150181

Maybe you are looking for

  • `Join` button not active in pw screen

    My new iPod recognizes my home network, and when I choose it, the screen appears to enter my passord. However, as soon as I enter the 1st character of the passord, the blue button in the bottom right of the screen marked `Join`becomes inactive, so th

  • Screen res issues

    hi all i desgined some pages (using the same template cause im lazy!!!!) in 1280 x 1024 screen res if veiwed in this res its fine but if viewed in a lower res it all goes out of place so to speak any simple ways of resolving this??? effected sites: w

  • Help! Why is my 12" White iBook screen Black?

    Help! When I turned on my iBook, the White apple appeared center screen, then the screen became whitish gray. Thinking the operating system was lost, I erroneously tried a Pismo trick. I turned it off, then rebooted while holding down the X key. It h

  • Macbook pro not saving any work when on shutdown or restart.

    Macbook Pro 13'' early 2011. i5, 4GB and 320 GB OS: Mac OS X 10.7.3 System Pref version: 11.0 Everytime I shutdown or restart it does not save any of the system prefernecs and not any work done in terms of text, coding in Eclipse I mean nothing. No m

  • Windows 7 to 8 upgrade - two recommended actions prior to upgrading

    I've just updated my T410s to Windows 8 pro from Windows 7 Ultimate. There were two issues during the first, failed, upgrade attempt. During the first attempt the upgrade failed without a clear indication of what went wrong. After a few tests and a l