Please Help Me Swipeing

Hello every one. iam new to flash as developing. i develop one scrooll thumb xml image gallery.
now iam try to convert Touch application .
in this i have one problam Regarding swipeing .
please any body help me.
Here is XML data ("Images.xml")
<?xml version="1.0" encoding="utf-8"?>
<PLAYLIST THUMB_WIDTH="125" THUMB_HEIGHT="70" THUMBS_X="10" THUMBS_Y="295" VIDEO_X="10" VIDEO_Y="10" >
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb1.jpg" big_img="big_imgs/11.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb2.jpg" big_img="big_imgs/22.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb3.jpg" big_img="big_imgs/33.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb4.jpg" big_img="big_imgs/44.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb5.jpg" big_img="big_imgs/55.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb1.jpg" big_img="big_imgs/11.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb2.jpg" big_img="big_imgs/22.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb3.jpg" big_img="big_imgs/33.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb4.jpg" big_img="big_imgs/44.jpg"/>
<VIDEO TITLE="Lincoln Memorial Concert" THUMB="thumbs/thumb5.jpg" big_img="big_imgs/55.jpg"/>
</PLAYLIST>
Here is My script :
import fl.video.*;
import flash.ui.Mouse;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.events.Event;
import flash.text.*
import  flash.events.*;
import flash.events.TouchEvent;
import flash.ui.Multitouch;
import flash.ui.MultitouchInputMode;
import flash.events.TransformGestureEvent;
Multitouch.inputMode=MultitouchInputMode.GESTURE;
Multitouch.inputMode=MultitouchInputMode.TOUCH_POINT;
var speed:Number;
var padding:Number = 5;
var thumb_width:Number;
var thumb_height:Number;
var thumbs_x:Number;
var thumbs_y:Number;
var video_x:Number;
var video_y:Number;
var my_videos:XMLList;
var my_total:Number;
var spl_height:Number;
var spl_width:Number;
var main_container:MovieClip;
var thumbs:Sprite;
var titles:Sprite;
var my_player:FLVPlayback;
var normal:MovieClip;
var title_txt:TextField = new TextField();
var thumb_title
var mc:MovieClip;
var images_loader = new Loader();
var myXMLLoader:URLLoader = new URLLoader();
myXMLLoader.load(new URLRequest("Images.xml"));
myXMLLoader.addEventListener(Event.COMPLETE, processXML);
function processXML(e:Event):void {
    var myXML:XML = new XML(e.target.data);
    thumb_width = myXML.@THUMB_WIDTH;
    thumb_height = myXML.@THUMB_HEIGHT;
    thumbs_x = myXML.@THUMBS_X;
    thumbs_y = myXML.@THUMBS_Y;
    video_x = myXML.@VIDEO_X;
    video_y = myXML.@VIDEO_Y;
    my_videos = myXML.VIDEO;
    my_total = my_videos.length();
    makeContainers();
    callThumbs();
    callimages();
mmc5.alpha=0;
function makeContainers():void {
main_container = new MovieClip();
addChild(main_container);
thumbs = new Sprite();
thumbs.addEventListener(TouchEvent.TOUCH_BEGIN, playVideo);
thumbs.addEventListener(TouchEvent.TOUCH_ROLL_OVER, onOver);
thumbs.addEventListener(TouchEvent.TOUCH_ROLL_OUT, onOut);
thumbs.x = thumbs_x;
thumbs.y = thumbs_y;
thumbs.buttonMode = true;
main_container.addChild(thumbs);
    titles = new Sprite();
    titles.x = thumbs_x;
    titles.y = thumbs_y;
    main_container.addChild(titles);
function callThumbs():void {
    for (var i:Number = 0; i < my_total; i++) {
        var thumb_url = my_videos[i].@THUMB;
        var thumb_loader = new Loader();
        thumb_loader.name = i;
        thumb_loader.load(new URLRequest(thumb_url));
        thumb_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);
        thumb_loader.x = (thumb_height+35)*i;
function callimages():void {
    var images_url = my_videos[0].@big_img;
    images_loader.load(new URLRequest(images_url));
    images_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imagesLoaded);
    function imagesLoaded(e:Event):void {
        addChild(images_loader);
        images_loader.x=10;
        images_loader.y=-10;
        spl_width=images_loader.width
        spl_height=images_loader.height
function thumbLoaded(e:Event):void {
    var my_thumb:Loader = Loader(e.target.loader);
    thumbs.addChild(my_thumb);
    thumbs.y =330.85;
    thumbs.x = padding;
    thumbs.mask=box_mc;
    thumbs.addEventListener(Event.ENTER_FRAME, moveScrollerThumbs);
    thumbs.addEventListener(TransformGestureEvent.GESTURE_SWIPE, moveScrollerThumbs)
function moveScrollerThumbs(e:TransformGestureEvent):void {
    if ( e.offsetX > thumbs.y && e.offsetY < thumbs.y + thumbs.height) {//vertically over thumbs
        if (e.offsetX < stage.stageWidth/2 - padding*2 && e.offsetX > 0) {//left of stage explicitly
            speed = -(e.offsetX - (stage.stageWidth/2 - padding*2)) / 10;
        } else if (e.offsetX > stage.stageWidth/2 + padding*2 && e.offsetX < stage.stageWidth) {//right of stage explicitly
            speed = -(e.offsetX - (stage.stageWidth/2 + padding*2)) / 10;
        } else {
            speed = 0;
        thumbs.x += speed;
        //thumbs limits
        if (thumbs.x < -thumbs.width + stage.stageWidth - padding) {//if scrolled too far left
            thumbs.x = -thumbs.width + stage.stageWidth - padding;
        } else if (thumbs.x > padding) {//if scrolled to far right
            thumbs.x = padding;
function playVideo(e:TouchEvent):void {
    var images_url=my_videos[e.target.name].@big_img;
    images_loader.load(new URLRequest(images_url));
function onOver(e:TouchEvent):void {
    var my_thumb:Loader = Loader(e.target);
    my_thumb.alpha = 0.5;
function onOut(e:TouchEvent):void {
    var my_thumb:Loader = Loader (e.target);
    my_thumb.alpha = 1;
btn_full.addEventListener(TouchEvent.TOUCH_BEGIN, stageResize);
images_loader.addEventListener(TouchEvent.TOUCH_BEGIN, stageResize1);
function stageResize(e:TouchEvent):void
            var ev:Event=new Event("clicks",true);
            mmc5.addEventListener(MouseEvent.CLICK, stageResize1);
            this.addChild(mmc5);
            mmc5.alpha=1;
            mmc5.x=btn_full.x+285;
            mmc5.y=btn_full.y+195
            this.dispatchEvent(ev);
    function ext(){
        stage.displayState = StageDisplayState.NORMAL;
        images_loader.height=spl_height
        images_loader.width=spl_width
            this.StageAlign=StageAlign.TOP_LEFT;
            stage.scaleMode=StageScaleMode.EXACT_FIT;
            images_loader.scaleX = images_loader.scaleY = 1;           
            if( stage.displayState == StageDisplayState.NORMAL ){               
                stage.displayState = StageDisplayState.FULL_SCREEN;
            } else {               
            if ((stage.stageHeight / stage.stageWidth) <images_loader.height / images_loader.width) {
                images_loader.width = stage.stageWidth;
                images_loader.scaleY = images_loader.scaleX;
            } else {
                images_loader.height = stage.stageHeight;               
                images_loader.scaleX =images_loader.scaleY;
            images_loader.x = stage.stageWidth / 2 - images_loader.width / 2;
            images_loader.y = stage.stageHeight / 2 - images_loader.height / 2;       
        function stageResize2(e:TouchEvent):void
        mmc5.alpha=0;
        images_loader.height=1000
        images_loader.width=600
function stageResize1(e:TouchEvent):void
            stage.displayState = StageDisplayState.NORMAL;
        var ev:Event=new Event("clicks1",true);
        this.dispatchEvent(ev);
        images_loader.height=spl_height
        images_loader.width=spl_width
        images_loader.x=10;
        images_loader.y=-10;
        mmc5.x=btn_full.x-30
        mmc5.alpha=0
Anybody Please give some suggusation.
Thank you.

Hi Chris W. Griffith,
great it was helpful to me, a new problem raised now....
everything is working fine now
1.Multitouch.inputMode=MultitouchInputMode.GESTURE;
2.Multitouch.inputMode=MultitouchInputMode.TOUCH_POINT;
when i comment line 2 swipe is working and when i comment line 1 touch is working, i need both to work simultaniously... Thanks in advance and thanks for your time.
Regards
Nagaraju!

Similar Messages

  • I have updated to maverick from mountain lion.initially my mac book pro was snow leopard.the multitrack touch pad swapping the page is not happening in finder,it is only working in safari.please help me how to get that swiping gesture in  finder

    i have updated to maverick from mountain lion.initially my mac book pro was snow leopard.the multitrack touch pad swapping the page to get back to previous page is not happening in finder,it is only working in safari.please help me how to get that swiping gesture in  finder

    Hi..
    I repled to you here >  https://discussions.apple.com/message/25598596#25598596
    Please do not start duplicate topics. It makes it that much harder to assist you.

  • My Iphone 4s Will not delete the songs I want it to. I've tried Turning off "Show All Music" and then swiping left on the song to delete it, but it wont give me the option to delete the songs. Please help. (this is iOS.7 btw)

    I've tried Turning off "Show All Music" and then swiping left on the song to delete it, but it wont give me the option to delete the songs. Please help. (this is iOS.7 btw) It only does this for some of the songs, but the rest of them I can delete. This is really annoying, please help me ASAP. Thank yall for your time

    I've tried Turning off "Show All Music" and then swiping left on the song to delete it, but it wont give me the option to delete the songs. Please help. (this is iOS.7 btw) It only does this for some of the songs, but the rest of them I can delete. This is really annoying, please help me ASAP. Thank yall for your time

  • TO CEO @ VERIZON OR TO SOMEONE WHO CARES*** PLEASE HELP ME *** BEFORE I GO CRAZY

    I have a vortex by LG. I got it in feb.2011. I have had trouble with it since that day. Turning off all the time , screen locking up,  sending txt to someone different ,SD card not working ,which I have handled all these problems myself  by resetting/swiping it clean often (which is a pain) taking the battery out ,  turning it off for a few hours , blah blah blah ,you know all the stuff you do to have a phone on the go. I asked around & most other people who had this phone was pleased.  I only know off 3 other people who have this phone.  then about a 3wks ago the SD card wouldn't mount or just wouldn't read @ all. I tried everything I knew to do . I go to the Verizon store waited my entire lunch break ( 1 hour) finally someone tried to help me I told him my problem he said well your going have to buy a new SD card which was about 60$ . I felt I waited for nothing. I spent over an hour for him too hold my phone & tell me pay more money. he still couldn't tell me why it did this or how to fix it . Just pay more money . Well I had a extra SD card from my camera it worked then few day later starts the same thing , good thing I didn't buy one cause looks like I would have had to spend it again anyways ,  but I could @ least call out & get calls. Finally a few days later my screened locked up completely I tried all the blah blah blah stuff again. This time it was no fixing it . I go to a different Verizon store hoping to get better/faster help I walk in & tell the lady my problem again on my lunch break she picks up the phone dials customer service & hands me the phone. I think really I could have did this myself why are you people even here! So the guy on the phone says your still under warranty we will send you a new phone or u can upgrade & get a new phone I asked for what kind of price he said the price of the phone , I said no thanks I just paid 200$ for this phone & haven't even got to enjoy it , just send me a new phone he said it could take up to 5 days!!! What I said can , u get it here any faster he replied yes for 13$ I can ship it overnight but it would take 2 days uh, just thought he said overnight!!! I guess over night doesn't mean what it says but I said I don't feel I should pay it since I really didn't break my phone he said there was nothing he could do but it probably wouldn't take the full 5 days they just have to say that  ... Wow OK so 5 days goes by without any phone to use . I finally get the phone but it take the full 5 days,plus the 2 days I tried to fix it to avoid the stores I follow the instruction to activate it thought it was fine but then the next morning  I get a call @ work from my babysitter stating my phone still didn't work!! After work I go back to the 1st Verizon store (which I dreaded so much I would have rather shot myself in the foot , but I'm a nurse who needs my foot & phone) since I had no help from either stores guess it didn't matter which one I went too. After waiting a good 45 MINUTES for help they finally look @ my phone they were stumped on what was wrong cause it said it was activated but not working they finally call someone & the guy finally tell me its is activated under someone else's # ! OK so what do I do ?? The guy hands me the phone says they needs to  verify my address ( which I thought to make sure I account  holder )  I gave the phone back to the guy @ the store they talk for a few more MINUTES. & he said OK , I was like OK what ! Oh he didn't tell you we are going have to send you  NEW phone again!!! Really I have to go another 6 days without a phone!! He offered if I brought an old phone  back in(which I live 20 MINUTES away) he could activate that one till I get the new phone in... 1st off I don't keep old phones I recycle them ( thought that was a good thing)& even if I did have one it wouldn't be a smartphone & that's what I pay dearly for...  ( a phone store who can't lend you a phone while they are fixing your phone that you didn't break even thou you are still paying them for a phone)  MESSED UP RIGHT! He said it shouldn't be that long they are going to overnight it for free but it was Saturday So he said I should get it TUESDAY.**lol overnight what !! Do I not know what overnight means***  I was like yeah yeah YOU ALL say that ! I left the store in tears I depend on my phone I have a 1 yr old child & my job depends on my phone as well . I go home from work Tuesday no phone image that , Wednesday I get a letter from fedx stating I was not home to sign for this device ! Really cause the last one was just put in my mailbox , didn't have to sigh anything the 1st time. I finally get the phone on THURSDAY. It was late so I waited till Friday to activate since I have already been without a phone for 12 days now. Today is Saturday. Guess what??? My phone is saying to mount the SD card again ! OK really I just been thru 3 phone in 13 days!! I DON'T FEEL I HAVE DONE ANYTHING WRONG TO MY PHONE . I KNOW NEW TECHNOLOGY IS GOING  TO HAVE ITS MISTAKES SOMETIMES !! BUT NOT @ MY COST!!! I DON'T THINK I OR ANYONE DESERVES THIS! I DON'T KNOW WHAT TO DO????? I CAN'T AFFORD TO GO BY A SD CARD VERY FEW DAYS!! I CAN'T AFFORD TO PAY *****DEARLY****  FOR SOMETHING THAT I DON'T GET TO EVEN USE & NO ONE EVER OFFERED TO PRO-RATE BILL!!!!  I PAY A 175 $ A MONTH I FEEL THAT SHOULD BE CUT IN HALF SINCE I HAVE HAD NO PHONE FOR ALMOST 2 WEEKS!!!! I DON'T WANT TO GO BACK TO TO STORES & THEM DO NOTHING BUT WASTE MINE & THEIR TIME ! I CAN'T AFFORD 200$ TO GET OUT OF CONTRACT WHEN I HAVE DONE NOTHING WRONG !!! IF I DROPPED THE PHONE IN WATER OR BROKE THE SCREEN I WOULD PAY . I HAVE NO PROBLEM TO PAY TO FIX SOMETHING I DID  OR BROKE !!! I FELL VERIZON IS DOING THIS TO MAKE A LITTLE EXTRA MONEY @ MY EXPENSE. I'M A GOOD HARDWORKING PERSON WHO PAYS FOR EVERYTHING !! NOW I EVEN PAY FOR THING THAT HAS NOTHING TO DO WITH ME !! I'M SO FREAKING FRUSTRATED I CAN'T THINK!!! CAN VERIZON WHO MAKES BILLIONS PAY FOR BETTER HELP OR WHAT HAPPEN TO MAKING THE CUSTOMERS HAPPY!!! I JUST WANT A PHONE THAT WORKS !! IF THE VORTEX IS JUST A PIECE OF S**T LET ME PAY THE DIFFERENCE TO GET A DIFFERENT PHONE !! WHY SHOULD HAVE TO PAY FULL PRICE FOR A NEW PHONE!!! WHAT IF I DO PAY FULL PRICE FOR A NEW PHONE & ITS DOES THIS AGAIN !!! DO I JUST KEEP BUYING NEW PHONES ???CAUSE THEY ARE HIGH!!!! I CAN'T AFFORD TO BUY A NEW PHONE AFTER EVERY LITTLE HICCUP!!!  WHAT IF VERIZON DOES THIS TO SO MANY PHONES HOPING WE KEEP BUYING NEW PHONES !! DON'T THEY MAKE ENOUGH MONEY ALREADY!!! SOMEONE TELL ME WHAT'S WRONG WITH MY PHONE !! SOMEONE PLEASE HELP ME!!!! MAYBE THERE IS SOMEONE BESIDE ME & ALL THE EMPLOYEES @ TWO VERIZON STORES COULDN'T FIGURE OUT                                    !!!!!!!!!!!!!!                                                                                                                                                                                                                                                                                                                           

    NO LUCK!!
    THANKS SO MUCH FOR TRYING TO HELP!
    I ASKED ONE OF THE MANY EMPLOYEES @ VERIZON IF THEY HAD MUCH TROUBLE OUT OF THIS PHONE HE SAID NO NOT AT ALL!!!! I REALLY JUST WANT A PHONE THAT WORKS I HAVE BEEN A VERIZON CUSTOMER FOR A LONG TIME NOW. THIS IS BY FAR THE WORST PHONE & SERVICE I HAVE EVERY RECEIVED FROM THEM. I GUESS THE SERVICE IS GOOD WHEN YOU DON'T NEED THEM. NOW THAT I NEED THEM I HATE THEM ! NO HELP FROM THEM @ ALL. I WISH THEY COULD JUST FIX IT OR LET ME PAY THE DIFFERANCE FOR A NEW PHONE  . IAM NOT ASKING FOR ANYTHING FREE. I JUST WANT WHAT I PAID FOR!!!!!! I SHOULD HAVE REPLACED IT WITH IN THE 1ST MONTH WHEN IT ALL STARTED BUT HATED TO TAKE IT BACK IF IT WAS SOMETHING I WAS DOING WRONG ! I FEEL I HAVE SUFFERED ENOUGH!!!!!!!!!!!!!
    VERY MAD @ VERIZON , 1ST TIME I WOULD SEND PEOPLE AWAY FROM THEM , MY HUSBAND HAS IPHONE WITH AT&T , HE TRIED TO GET ME TO MOVE TO THEM .I WISH I WOULD HAVE NOW!!  I CAN'T THINK OF ANYTIME I GOT SERVICE COVERAGE & HE DIDN'T . SO IS IT THE PHONE OR JUST BAD SERVICE ????? IF THEY WOULD LET ME OUT OF MY CONTRACT I WOULD LEAVE NOW ....

  • My Itunes is no longer allowing me to manage my music on my phone i can no longer select on my iphone to make playlists and delete music. Please help fix my problem.

    My Itunes is no longer allowing me to manage my music on my phone i can no longer select on my iphone to make playlists and delete music. Please help fix my problem. Iphone4s, 32gigs, IOS 7.1.2
    I don't know why it stopped working but it happened a month or two ago but the option on this phone that's usually all the way to the left when you select your device but now its not and I don't know what caused it. ive already tried troubleshooting my problem but have found no help.

    Hello Salmomma,
    Thank you for the details of the issue you are experiencing when trying to connect your iPhone to your Mac.  I recommend following the steps in the tutorial below for an issue like this:
    iPhone not appearing in iTunes
    http://www.apple.com/support/iphone/assistant/itunes/
    Additionally, you can delete music directly from the iPhone by swiping the song:
    Delete a song from iPhone: In Songs, swipe the song, then tap Delete.
    iPhone User Guide
    http://manuals.info.apple.com/MANUALS/1000/MA1658/en_US/iphone_ios6_user_guide.p df
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Multiple questions re iPhone iOS 7. Please help where you can.

    Hi,
    I've had a Macbook and an iMac before, so am not unfamiliar with Apple products and the OS in general, however I have just got an iPhone 5C, and after years of mobile phone Android, have not found migrating to the iPhone half as straight-forward as I thought it would be, and have a NUMBER of questions.  I'm unclear on a number of items that I have attempted to search for, and figure out.
    I'm sorry to post all these questions in one discussion! I possibly probably will ask them all individually, but for economy, and in case there's anybody who likes killing more than one bird with a stone, I thought I'd post them all here.
    Please answer any that you can. Any help will be much appreciated.
    1. App Store / iTunes Store - the Android Play Store houses everything in one, but on the iPhone you have the App Store for apps and games, and the iTunes store for everything else, right?
    2. However, where do you search for podcasts?? I can't find podcasts as a category in the iTunes store?
    3. And I can find Audiobooks as a category in the iTunes store, but where can I find ebooks? Or does this not exist? (It does on the android play store).
    4. When you browse through the Featured apps, or Top Charts on the App Store, it presents the apps in a list format each in small/medium size with icons and a small amount of information displayed. HOWEVER, when you use the search function, it displays the app results full-screen. i.e. browsing through the results each app takes up the whole screen, and you swipe along to see the next app. If there are hundreds or more results, it makes it awful to browse through the results of the app search....
    5. is there a way to change the display format of the search results? i.e. in list format and show multiple results on one page, scrolling along or down? I would really, really like to do this.
    6. And can you filter the search results at all?? You don't seem to be able to filter the search results by category or price, or anything. Is this right?
    I am finding app store pretty horrific to use, so any tips would be much appreciated.
    Next questions (and bless your patience if you're still with me here),.....
    7. Newsstand. So I can search for newspapers and magazines in newstand, and in the App Store, and then they will automatically be put in Newsstand? However, I downloaded BBC News, and a couple of other newspaper apps, and they are not in Newsstand?
    ...I can't move anything out of Newsstand onto my phone, i.e. The New York Times, and I can't move anything into Newsstand that's on my phone, i.e. the Guardian app? Is this right?! (I realise I'm giving away all my reading choices here). Surely this can't be right?
    8. Notifications. If something is updated/downloaded et cetera, I get a little red circle at the top right of the app with a number in it telling me there's been some *activity* in that app and to go and check it out. That's fine. But I have a had one of these notification bubbles above my Newsstand app for days now, and I don't know what it refers to or how to make it go away. I've opened Newsstand, and I've opened every newspaper/magazine that I've brought into newsstand, and it hasn't disappeared. Is there any place or way to determine what the notification refers to? If I'm calling it a 'notification' in error, please forgive me and correct me . Short of deleting every magazine in my newsstand, I don't know how to get this red bubble gone. Please help bubble-free me.
    9. MESSAGES. This has astounded me. There are no drafts whatsoever in iPhone time messages? So if you go to compose a new message, if for any reason you can't or don't want to complete the text message at the time, if you leave whatever you have written is gone?
    10. If this is the case, is there an alternative text messaging application that I can use, that would allow this functionality? I'm not talking about whatsapp, which I have, or any kind of messaging platform that uses internet and requires the receiver to have the same app. Just straight text messaging that uses the text allowance given by your service provider. Is there an alternative to this, that allows drafts and the normal functionalities provided for text messages by other phones?
    11. Is there a way to search sent messages alone?
    12. Sometimes my text messages appear green, and sometimes they appear blue. Is there a reason for this? (This is a minor question, please feel free to pass over it if time is scarce)
    Finally, and nearly there.
    13. The push button at the bottom of the screen takes you out of apps, and if you push it twice it takes you to all open apps. Is there no way to actually close an open app when you exit it? Or if you want to actually close an app, any and every time, you have to push the iPhone home button once, then you have to push it twice, and then you have to swipe the app to close it. IS that right?
    14. Or should I not be worried about multiple apps being open in the background? How much battery/resourches does it actually use?
    15. I know that I can close multiple apps simultaneously, or at least three, by swiping three up at the same time. Is there any way to simply close all apps at the same time? Or any app I can download that will do this?
    16. Airdrop. I have a Macbook pro that's less than a year old, and the iPhone 5c is brand new. I can't get Airdrop to work. I've put them both as discoverable to everybody or contacts only, I've turned the wifi on and off for both, bluetooth on and off for both, every different combination possible, and there's nothing. Nada. Guidance?
    17. Specifically, if I can't get it to work, who do I go to? Can I take my macbook and iphone to an Apple store? Can I get customer support? I want to use the airdrop feature as I've figured I've paid for it, but I don't know who to access the support for doing so, or which would be the most effective.
    Really and truly finally:
    18. My bluetooth seems to be turning itself on all the time. Even when I've turned it off. Why oh why?
    Thank you very much.

    1. Yes. App sotre has Apps and Games. Itunes has everything else.
    2. Podcasts are also found in the iTunes store. (The Podcast App only plays them, but is not a store)  You can search by title, and using the More button at the top filter by type. Select Podcast.
    3. Ebooks can be found in the iBooks App. Its a separate App and store.
    4, 5 and 6.unfortunately no, no and sadly no.
    9.  Nope, Messages is treated like a chat as such no drafts.
    10. There are many Apps in the store for SMS messaging. 
    11. Spotlight search searches everything. You can go into Settings->General->Spotlight search and deactivate everything except messages to search for messages only.
    12.Yes.  Green messages are standard SMS  messages. Blue messages are iMessages. Apple's messaging service.  If the user is not using an Apple device or is not registered with iMessage it will send an SMS. Otherwise it will use iMessage over the internet to save on SMS costs.
    13. When you exit an App most will close. When you get to all open Apps swipe the App screen shot to close it manually. 
    14. Most Apps in the Multitasking list aren't actually running. As such they don't use battery. Only Apps set to background tasks will continue to run via the Background App refresh setting.
    16. Correct Airdrop at this point is only between iDevices.  or between Macs. You can't Airdrop between a Mac and an iDevice.
    17. You can take your Phone to an Apple Store for support form the Genius bar if required. You also have 90 days phone support.
    18. Airdrop uses Bluetooth. and you may have another App that needs it.
    You may want to take a look at the manual for specifics:
    http://manuals.info.apple.com/MANUALS/1000/MA1565/en_US/iphone_user_guide.pdf

  • So lately my ipad has been syncing my mom's music. I go on to itunes to make sure those albums have not been selected under my ipad and they AREN'T. Someone please help! How do I other music from syncing to my ipad?

    My whole family shares the same MacBook and itunes library.
    For awhile my ipad has been syncing other peoples music to my ipad, and when I check on itunes these albums aren't even selected.
    Someone please help me!!!! How do I stop the unselected music from being synced to my ipad? (and for specific music, my ipad won't let me delete some music right from my music app)

    My wife, daughter and I all shared one iTunes library on one Mac and synced 6 different devices and never had problems selecting exactly what we want to sync to each device.
    Even though you do not have these particular songs or bums selected to sync, do you have "Sync only checked songs and Videos" in the Summary Tab of iTune? If you don't have that option selected, makes sure that you so check it before you sync again.
    You should be able to swipe across songs in the songs tab of the music app - Swiping from Right to Left - and that will bring up the Red Delete Button. You cannot delete entire albums but holding down on the icon to bring up the X on the album icon. That doesn't work in iOS. 7.
    If you are seeing songs in the Music app with the cloud icon on the right hand side, those songs are not on your iPad but are in iCloud and can be downloaded if you want to do so. If you do not want to see those songs, go to Settings>iTunes & App Stores>Show All>Music>Off.

  • HP Protect tool password manager not working with the new version of Mozilla: I got this alert: "Firefox doesn't know how to open this address, because the protocol (dpql) isn't associated with any program." please help

    I have an HP ProBook 4520s. I have been using HP Protect tool's Password manager to store and manage my passords for all Login websites in Firefox 3.6. As a result, I just swiped my fingerprint to log on to any website.
    After I installed the version 4 of Firefox, my all my login details do not work anymore. I have tried to reset them but I repeatedly get this error: "Firefox doesn't know how to open this address, because the protocol (dpql) isn't associated with any program."
    something like this would have been passed onto the address: "dpql://c:\program%20files%20(x86)\hewlett-packard\hp%20protecttools%20security%20manager\bin\dpminionlineids.dll/qlinkload.htm#id=2".
    Although the password manager works with Internet Explorer 9, I need it to work with Firefox 4 as this is my preferred browser.
    Please help. Thank you!

    I guess this means that IE is more user friendly for HP Password Manager finger swipe recall of passwords, a favorite of mine. I still don't see a post from Firefox as to why they haven't produced fix. So I'll switch to IE until things change. I don't see value in downgrading to a Firefox version that's no longer going to be supported.

  • Verizon, please help! LG G2 proximity sensor bug!

    Verizon, please help, the update that you required me to do on 09/23/14 has a huge bug in it and I am fearful it has not only screwed up my proximity sensor but who knows may even have compromised the security of the phone.  The proximity sensor does not respond in dimly lit rooms at all.  You have to trick it by slowly swiping your finger across it just to hang up a phone call.  The power off button does not respond unless you hold it down to do a soft reset.  The "knock-on" feature does not work in dimly lit rooms either.  This is so frustrating as it was working perfectly before the update.  Please either send a fix update or allow us to resort back to the old software.  This phone is less than a year old and I do pay for the warranty, however have been warned that all replacement phones are just "refurbished" phones that may have worse problems. 
    So, please VERIZON, step up and fix this issue.  I have been into your store to discuss with sales guy and he said he would not file a warranty claim just yet.   This is crap.....please advise.

    https://community.verizonwireless.com/mobile/mobile-access.jspa#jive-content?content=%2Fapi%2Fcore%2Fv3%2Fcontents%2F1967494
    If you repair your phone it is a refurb phone.

  • My iPhone 4S can't support camera 360 apps.Once I open the apps 3 sec it will auto jump out to the home page.Look likes the apps crashed.Isn't my iPhone problem or the apps got bug?Please help me.TQ

    My iPhone 4S can't support camera 360 apps.Once I open the apps 3 sec it will auto jump out to the home page.Look likes the apps crashed.Isn't my iPhone problem or the apps got bug?Please help me.TQ

    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • Please help to use nokia 520

    hi i am rama, i have a nokia 520 but i confuse how to send a song file using bluetooth, please help...
    Solved!
    Go to Solution.

    First, you need to activate Bluetooth by swiping left from the Start screen then selecting Settings > Bluetooth.
    Now open your music player and browse to the song you would like to share. Start playback of the song, then tap Menu (three small dots on the bottom right of the screen) then tap Share > Bluetooth > the name of the device you would like to share with.

  • Disk Space Disappearing After Today's Updates - Please help

    Hi there everyone. I'm having major problems with my mac pro today, and for the first time, I cannot fix it. Please help me. I will try to explain what happenned. Like most, I was very excited about the release of ios 5 today. I downloaded the Lion 10.7.2 update, the ios 5 updates, iTunes and the iPhoto update. I installed of these without problems and then I enabled iCloud. I then decided to first update and restore my iPad 1 to ios 5. This worked perfectly fine and my computer was running fine. Then, I decided to update my iPhone 4 next. This is when I started running into problems. I updated it and then went to restore it from a a backup. This did not work, I got an error message that told me it was unable to restore the phone becasue it was unable to create backup.
    So, I then checked the disk space for the main Lion drive and it was at zero. I thought, well I was sure I had at least a few gigs, but maybe I used them. So i deleted enough files to create 5GB of free disk space. I then tried to run it again, and I watched as my disk space slowly went down to zero again. I thought maybe it needed even more space than that. So I rebooted the machine and yet my disk space did not reappear. I had about 200mb when I rebooted. Then i noticed it was randomly fluctuating and went down to zero again. I then deleted another 3gb of files and created more disk space to try again. The same thing happenned again. I have now rebooted the machine again. When it first rebooted it had 500mb of disk space, it then fluctuated and went down to zero again. It is going between 67mb and zero every minute or two, and then goes up to 400MB, then reduces down to zero again. What is happenning? I have not opened any applications except for safari right now. Do we think there is a problem with my virtual memory or disk all of a sudden? It seems strange this happenned today. it must be related to one of the updates? I thought it might be icloud. So I have diabled that completely and the fluctuations have not stopped.
    I would really appreciate any help anyone can give. I cannot think what the problem is. I cannot even run Techtool to check anything because nothing is working with no space for memory. Every time I delete files it goes down to zero anyway.
    Thank you very much

    How much space is your Other using? You may be able to reduce.
    How Do I Get Rid Of The “Other” Data Stored On My iPad Or iPhone?
    http://tinyurl.com/85w6xwn
    With an iOS device, the “Other” space in iTunes is used to store things like documents, settings, caches, and a few other important items. If you sync lots of documents to apps like GoodReader, DropCopy, or anything else that reads external files, your storage use can skyrocket. With iOS 5, you can see exactly which applications are taking up the most space. Just head to Settings > General > Usage, and tap the button labeled Show All Apps. The storage section will show you the app and how much storage space it is taking up. Tap on the app name to get a description of the additional storage space being used by the app’s documents and data. You can remove the storage-hogging application and all of its data directly from this screen, or manually remove the data by opening the app. Some applications, especially those designed by Apple, will allow you to remove stored data by swiping from left to right on the item to reveal a Delete button.
     Cheers, Tom

  • How do you prevent your phone from locking during voice calls?  Mute/unmute features?  Are there any?  Please help?

    Here is the problem - I am often on conference calls.  My company, for security reasons requires that I use the lock phone feature.  However, I will be on a call, I have muted myself, then the phone locks.  I then have to key in my password, and unmute my phone.  This prevents me from "jumping in" the conversation appropriately.  I either sound like I'm not paying attention or worse, I'm talking over someone else and seem rude.  I have tried to search for any of the following features on the iphone 5 c.
    Prevent phone from locking during phone calls
    Set a button on the phone as mute/unmute
    Find a headset that has a mute/unmute feature
    I am not the only one at my company struggling with this so I'm thinking others might be too and that there is a solution!
    Please help!
    Thank you.

    Sounds like you need to upgrade to the iPhone 5s
    The 5s has Touch ID
    You can unlock your phone with your finger instead of typing in a key code
    No swiping to unlock either, just touch the home button
    You can enrol multiple fingers as well
    Here is a video of it in action
    http://www.apple.com/iphone-5s/videos/#video-touch
    Or wait and see what iPhone 6 has to offer
    That being said, as desiel vdub posted if the phone is up to your face, the proximity sensor should turn the screen off
    And when you lower the phone turn it back on again
    Not sure about the phone locking when your on a call doesn't sound right

  • Nokia Lumia 520, Several frustrations please help.

    Just brought a Nokia Lumia 520, seemed like a good choice some cpu/gpu/ram as the 720, bigger screen than the 620, would have got the 620 if it was a 4" screen. 
    I use a smartphone for these reasons.
    Text: Nokia 520/Windows Phone does this well.
    Calling: Nokia 520/Windows Phone does this well.
    Email: Nokia 520/Windows Phone does this well.
    Reading articles/browsing the web: Frustrating.
    Internet Explorer doesn't display a large number of pages correctly.
    When a website has a menu (links) to swipe through instead of swiping to the next one it both swipes and opens the link, every time. m.IMDB.com for example.
    What can I do about this?
    Music: Frustrating. 
    The volume button on the 520 seems very cheap, it's just a loose bit of plastic on the case it's self, is this normal?
    I'm currently a premium member of Spotify, the Windows Phone Spotify app forgets when settings are changed, when I try to stream in high quality it always goes back to normal (which sounds pretty bad). There's also no "extreme" quality option.
    Xbox Music Pass, this just seems like a really poorly made app, I've signed up for the premium streaming (as a Spotify alternative). But to get to it I need to click on store\then music, type in the artist I want, and once the music starts, i need to constantly click the "..." button the "more in store" button to change songs within the album, the list it's self doesn't even show you which song is playing, you need press the "<-" button to see the title. And on top of all that instead of the nice clean background there's a picture of the artist, but the picture is stretched and blurred and looks horrible, very off putting.
    Also is the a way of seeing the "status bar" type info without pressing the volume button?
    Please help me, I'm tempted to go back to Android but really don't want too.

    If you hold the back button down without letting it go then all screens that have been left open can be scrolled across screen 1 tap on desired screen opens it as start screen. Same with internet explorer hit the .......... At bottom of screen select tabs and it puts every page visited as a small tile with a. X in corner they can be closed in seconds in the one screen without ever hitting the back button. Hope this is helpful.

  • Problem with threads and simulation: please help

    please help me figure this out..
    i have something like this:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class DrawShapes extends JApplet{
         private JButton choices[];
         private String names[]={"line", "square", "oval"};
         private JPanel buttonPanel;
         private DrawPanel drawingArea;
         private int width=300, height=200;
         public void init(){
              drawingArea=new DrawPanel(width, height);
              choices=new JButton[names.length];
              buttonPanel=new JPanel();
              buttonPanel.setLayout(new GridLayout(1, choices.length));
              ButtonHandler handler=new ButtonHandler();
              for(int i=0; i<choices.length; i++){
                   choices=new JButton(names[i]);
                   buttonPanel.add(choices[i]);
                   choices[i].addActionListener(handler);
              Container c=getContentPane();
              c.add(buttonPanel, BorderLayout.NORTH);
              c.add(drawingArea, BorderLayout.CENTER);
         }//end init
         public void setWidth(int w){
              width=(w>=0 ? w : 300);
         public void setHeight(int h){
              height=(h>=0 ? h : 200);
         /*public static void main(String args[]){
              int width, height;
              if(args.length!=2){
                   height=200; width=300;
              else{
                        width=Integer.parseInt(args[0]);
                        height=Integer.parseInt(args[1]);
              JFrame appWindow=new JFrame("An applet running as an application");
              appWindow.addWindowListener(
                   new WindowAdapter(){
                        public void windowClosing(WindowEvent e){
                             System.exit(0);
              DrawShapes appObj=new DrawShapes();
              appObj.setWidth(width);
              appObj.setHeight(height);
              appObj.init();          
              appObj.start();
              appWindow.getContentPane().add(appObj);
              appWindow.setSize(width, height);
              appWindow.show();
         }//end main*/
         private class ButtonHandler implements ActionListener{
              public void actionPerformed(ActionEvent e){
                   for(int i=0; i<choices.length; i++){
                        if(e.getSource()==choices[i]){
                             drawingArea.setCurrentChoice(i);
                             break;
    }//end class DrawShapes
    class DrawPanel extends JPanel{
         private int currentChoice=-1;
         private int width=100, height=100;
         public DrawPanel(int w, int h){
              width=(w>=0 ? w : 100);
              height=(h>=0 ? h : 100);
         public void paintComponent(Graphics g){
              super.paintComponent(g);
              switch(currentChoice){
                   case 0:     g.drawLine(randomX(), randomY(), randomX(), randomY());
                             break;
                   case 1: g.drawRect(randomX(), randomY(), randomX(), randomY());
                             break;
                   case 2: g.drawOval(randomX(), randomY(), randomX(), randomY());
                             break;
         public void setCurrentChoice(int c){
              currentChoice=c;
              repaint();          
         private int randomX(){
              return (int) (Math.random()*width);
         private int randomY(){
              return (int) (Math.random()*height);
    }//end class drawPanel
    That one's from a book. I used that code to start with my applet. Mine calls different merthod from the switch cases. Say I have:
    case 0: drawStart(g); break;
    public void drawStart(Graphics g){
      /* something here */
    drawMain(g);
    public void drawMain(graphics g){
    g.drawString("test", x, y);
    //here's where i'm trying to pause
    //i've tried placing Thread.sleep between these lines
    g.drawLine(x, y, a, b);
    //Thread.sleep here
    g.drawRect(x, y, 50, 70);
    }I also need to put delays between method calls but I need to synchronize them. Am I doing it all wrong? The application pauses or sleeps but afterwards, it still drew everything all at once. Thanks a lot!

    It is. Sorry about that. Just answer any if you want to. I'd appreciate your help. Sorry again if it caused you anything or whatever. .n_n.

Maybe you are looking for