Hello! Could someone help lead me in canceling this account?

I had purchased and made an account on Christmas day and would like to cancel it seeing I have no desire to keep it anymore.Could anyone help me out with this? I am having trouble trying to accomplish this on my own and would appreciate any help given.

Your best bet will be to contact Adobe Support directly using chat or the telephone.
Cancel your membership or subscription | Creative Cloud
https://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html
https://forums.adobe.com/thread/1703848
Chat support - For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
Make sure you are logged in to the Adobe site, have cookies enabled, clear your cookie cache.  If it fails try using a different browser.
https://helpx.adobe.com/contact.html?step=CCSN_membership-account-payment_cancel-your-memb ership
Phone support
http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

Similar Messages

  • Hello, Could someone help me with lightroom 6.  I can't seem to buy the upgrade from lightroom 5 to 6 on the desktop. Thanks.

    Hello, could someone help me with lightroom 6.  I can't seem to buy the upgrade from lightroom 5 to six on my desktop?  Thanks.

    Products
    if that link doesn't work for you contact adobe support by clicking here and, when available, click 'still need help', https://helpx.adobe.com/contact.html

  • Hello.. I try to make copy an audio track(AIFF-C audio) on another dvd but I can't. I was try to made an ''burn folder'' with the audio track but did burn it.   Please could someone help me?

    Hello.. I try to make copy an audio track(AIFF-C audio) on another dvd but I can't. I was try to made an ''burn folder'' with the audio track but did burn it.   Please could someone help me?

    You appear to be having a hardware problem. Make an appointment at the Genius Bar of your nearest Apple Store to get a diagnosis.

  • Hello! I have some my violin recorded audio files and want them to be converted to printable notation throw "audio to score"from Factory. But do not have a normal result. Could someone help me, please. .

    I have some my violin recorded audio files and want them to be converted to printable notation throw "audio to score"from Factory. But do not have a normal result. Could someone help me, please. .

    seeren wrote:
    Normal result is on the sloppy side of inaccurate.
    Wish I'd started this topic so I could give you a green star!
    Great description.

  • Hi im having trouble with downloading an album off my computer. i have forgotten the security questions, but have already sent them to my email. could someone help me in how to get the answers?

    Hi im having trouble with downloading an album off my computer. i have forgotten the security questions, but have already sent them to my email. could someone help me in how to get the answers?

    Hello Carpets,
    Thanks for the question. You can reset your security questions with your rescue email address, as outlined with this article:
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    If you do not see the option for resetting your questions with a rescue email address, see this excerpt:
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so.
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Additional Information:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thanks,
    Matt M.

  • Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    Hello can someone help me I have an iphone 4 and my daughter has an ipod touch we are on the same email address but somehow with in the last 25hrs all of my contacts are gone and only hers on on my phone is there a way for me to get all my contacts back?

    If you need assistance with finding any of your restores or attempting to restore from any that happened prior to his incident follow this article
    http://support.apple.com/kb/ht1766
    IF you do find a backup that has your contacts; I'd /highly/ recommand turning off your wifi network after the restore is finished because if the issue is with your iCloud your contacts may merge back with her's.
    With iCloud you DO NOT want to share the account; bad things happen Evil evil thigns...
    But in all seriousness; if two devices have the same iCloud; iCloud is told to merge and sync infomation between hte two and can't tell that it doesn't belong to the same person

  • Could someone help me out? ActionScript

    import flash.display.MovieClip;
    var clip:clip01 = new clip01;
    var clip2:clip02 = new clip02;
    var clip3:clip03 = new clip03;
    var clip4:clip04 = new clip04;
    var clip5:clip05 = new clip05;
    var files:Array = [clip,clip2,clip3,clip4,clip5];
    function randomizeArray(array:Array):Array
        var newArray:Array = new Array();
        while (array.length > 0)
    newArray.push(array.splice(Math.floor(Math.random()*array.length), 1));
        return newArray;
    var RandomArray:Array = randomizeArray(files);
    trace(RandomArray[0]);
    trace(clip);
    var c:MovieClip = MovieClip(RandomArray[0]);
    addChild(clip); // it’s OK
    addChild(c); // I get the error msg bellow:
    Scene 1, Layer 'movies', Frame 1, Line 29              1118: Implicit coercion of a value with static type Object to a possibly unrelated type flash.display:DisplayObject.
    Could someone help me out?
    I cannot add MovieClip on the stage from the array.

    I have done till this the following code bellow. I’d like movie clip on the
    stage to be playing one after another in a randomized order in a loop. I
    used a timer, but this solution is not good, because the movies are not
    playing till the end. I need an EventListener to listen the end of the clip.
    How this code could be modified to work well, could you give me a solution
    to this problem?
    import flash.display.MovieClip;
    var clip1:clip01 = new clip01  ;
    var clip2:clip02 = new clip02  ;
    var clip3:clip03 = new clip03  ;
    var clip4:clip04 = new clip04  ;
    var clip5:clip05 = new clip05  ;
    var files:Array = new Array();
    pushArray(clip1,clip2,clip3,clip4,clip5);
    function pushArray(c1,c2,c3,c4,c5:MovieClip){
                    files.push(c1);
                    files.push(c2);
                    files.push(c3);
                    files.push(c4);
                    files.push(c5);
    function randomizeArray(array:Array):Array
                    var newArray:Array = new Array();
                    while (array.length > 0)
                                    newArray.push(array.splice(Math.floor
                                    (Math.random()*array.length), 1)[0]);
                    return newArray;
    var RandomArray:Array = randomizeArray(files);
    var testTimer:Timer = new Timer(1000);
    testTimer.addEventListener(TimerEvent.TIMER,updateFile);
    testTimer.start();
    function updateFile(event:TimerEvent):void
                    if (RandomArray.length == 0)
                                    pushArray(clip1,clip2,clip3,clip4,clip5);
                                    RandomArray = randomizeArray(files);
                    trace('play file',RandomArray[0]);
                    RandomArray.shift();
    //RandomArray[0].addEventListener(Event.ENTER_FRAME, VideoFinished);
    function VideoFinished(e:Event):void {
         if (RandomArray[0].currentFrame==RandomArray[0].totalFrames) {
              trace("finished");
    //addChild(RandomArray[0]);

  • Hi could someone help me please ? Ive just bought the new ipad and want to put some movies on it. I have already converted some movies using handbrake and tried to transfer them to my ipad and it just wont work. ive tried drag and drop and everything

    Hi could someone help me please ? Ive just bought the new ipad and want to put some movies on it. I have already converted some movies using handbrake and tried to transfer them to my ipad and it just wont work. ive tried drag and drop and everything

    bluztoo wrote:
    Haven't really used any of them including VLC - actually use netflix on the ipad more than anything. I was able to drop an mp4 into imovie on my ipad and see it there. This was something I had shot as avhcd and converted with turbo.264. Played fine. Probably not what you want for a movie player though.
    Well, turbo.264 is indeed very nice to have - even for converting full-sized movies. (Nevertheless, TechRadar's latest roundup (see http://www.techradar.com/news/software/applications/6-of-the-best-video-converte rs-for-mac-1074303 ; also linked from another roundup at http://www.iphonelife.com/blog/87/benchmark-excellent-multimedia-converter-handb rake-vs-commercial-apps ) has shown it's still worse than HandBrake in most respects.)
    All H.264 files (assuming they are H.264 level 4.1 or lower) are compatible with the built-in Videos app.
    bluztoo wrote:
    Those of you who use other players, what do you reccomend? Just curious.
    It entirely depends on your needs. The top players (AVPlayerHD / ProPlayer, It's Playing, GoodPlayer) all have different strengths and weaknesses. I myself use It's Playing the most as I convert everything into MP4 and simply love the DSP's (brightness / volume / saturation boosting). (Its software decoders are definitely worse than those of AVPlayerHD / ProPlayer; however, MP4's are played back from hardware.)

  • I purchased a digital itunes giftcard through paypal but can't seem to find a 'code' to use to redeem the card. Could someone help me find where that code would be found? I can see the paypal transaction details.

    I purchased a digital itunes giftcard through paypal but can't seem to find a 'code' to use to redeem the card. Could someone help me find where that code would be found? I can see the paypal transaction details. jgm22

    -> iTunes Cards & Codes

  • I have  Mac os x 106. When I try to send an attachment with email it won't send.  Please could someone help? Thank you.

    I have a Mac OS X 10.6 When I try to send an attachment with email it won't send - keeps saying 'fail'.  Please could someone help? Thank you.

    Hi lllaass! I replied to your post with the information you required but haven't heard from you since. If you don't, or can't help any further please would you let me know. Thanks.

  • I had to forcequit pages and now it won't reopen. Could someone help?

    I had to forcequit pages and now it won't reopen. Could someone help?

    It sure helps if you give more details.
    You do know we can't see your screen?
    Is it on Mac or iGadget?
    What version of Pages, on what version of OSX?
    What exactly happened?
    What messages if any have you got when it quit and when you try to relaunch it?
    Have you tried starting Pages holding down the shift key so it doesn't try to reopen any damaged files?
    Peter

  • HT5557 I have bookmarks and notes that are no longer attached to the original page and I can't find a way to delete them.  Could someone help me purge these things so they are not in the way?

    I have bookmarks and notes that are no longer attached to the original page and I can't find a way to delete them.  Could someone help me purge these things so they are not in the way?

    James Ward4  Thanks for your suggestion.  I have tried the video app and it appears to have some, but not all of the downloads which are viewable without wifi, so I will now review the download process and see if I can capture the missing episodes.  Thanks again.

  • Could someone help me restore my photos?  I was trying to "restore my database" in iPhoto when it shut down - now my thumbnails are distorted, logged under a new name, and when you click on a thumbnail it opens as another photo.  I was following another "

    Could someone help me restore my photos?  I was trying to "restore my database" in iPhoto when it shut down - now my thumbnails are distorted, logged under a new name, and when you click on a thumbnail it opens as another photo.  I was following another "helpful hint" hold down the option and command key and restart iPhoto - select the top three and you should be able to get rid of the dreaded exclamation point.  My MAC ran through the first two options dealing with thumbnails, but crashed during the "restore database"  step and now I have a mess.  Help, please.  Thank you.

    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  

  • Windows 7 very slowed after I downloaded ITunes. could someone help me?

    My PC with Windows 7 is very slowed since I downloaded iTunes. Could someone help me? Thank you

    All purchases from the iTunes Store including free and paid apps are included in your purchase history which cannot be deleted. Deleting an app from your iTunes library on your computer or on your iPad or iOS device does not remove the app from your purchase history.
    You did use iTunes to download the apps or they wouldn't be incldued in your iTunes Store purchase history.

  • About numbering and section options... I need section numbers (1.1,1.2,1.3) that will automatically update as I remove ort add a page. Seams complicated. Could someone HELP me? Thanks

    About numbering and section options... I need section numbers (1.1,1.2,1.3) that will automatically update as I remove ort add a page. Seams complicated. Could someone HELP me? Thanks

    INDESIGN
    I finally found it. Took me couple of hours. It is OK now
    2014-11-18 11:05 GMT-05:00 kglad <[email protected]>:
        About numbering and section options... I need section numbers
    (1.1,1.2,1.3) that will automatically update as I remove ort add a page.
    Seams complicated. Could someone HELP me? Thanks  created by kglad
    <https://forums.adobe.com/people/kglad> in Adobe Creative Cloud - View
    the full discussion <https://forums.adobe.com/message/6940603#6940603>

Maybe you are looking for

  • I want to create new id for my i phone 4s

    i have used 2 account earlier but now i want create new id as i already purchased i moved my existing id to new

  • Acrobat X Pro - subforms best practice?

    I'm finding lots of advice for subforms for LiveCycle users, but wondering the best way to handle conditional subforms to present to the user as they fill out my form. I'm new to X Pro and wondering if there is a terminology or utility I don't know y

  • ABAP Coding Help for Subtotal type output - SAP Query

    I've created a SAP Query to display a stock overview by storage type using the table LQUA. The output that I get is: Material Description Plant WHN SLOC Storage Type Batch GR Date Available stock 2057  STRAWBERRIES BP01 100 0088 200 0001081766 17.06.

  • Java Developer's Journal Reader's Choice Award

    Sun Java System Application Server has been nominated for a Java Developer's Journal Reader's Choice Award; if you find it useful, please support us by voting. Vote for Sun Java System Application Server for Best Java Application Server. http://sys-c

  • Observable/observer nightmare

    I'm currently simulating a robot with a graphical front end linked to a model using a model-view architecture. In fact there are two views running in parallel: a graphical representation and a set of JLabels displaying parameters of the model as they