Cant use Muse. It ask for an activation code but I'm an active  cc member

Like the topic says, every time I start up muse it starts to validate for a little while then it just prompts the activation an trial buttons.

Hi,
Please try steps below
Windows
Click on the "Start" menu. Select "All Programs" and then "Accessories"
Right-click on "Notepad" and select "Run as Administrator"
Click "Continue" on the "Windows needs your permission" dialog
When Notepad opens, click File and select Open
In the filename field type the following:
C:\Windows\System32\Drivers\etc\hosts
If any entries in the host file include keywords such as "adobe," delete those entries. These are used for Adobe Licensing.
From the "File" menu select "Save" after making changes
Restart Muse
Macintosh
Click on the "Finder" icon. Select the "Applications" folder
Open the "Utilities" folder and select "Terminal"
Type the following:
sudo nano /etc/hosts
Enter the OS user's associated password when prompted
If any entries in the host file include keywords such as "adobe," delete those entries. These are used for Adobe Licensing.
Press control+o to save the file
Press control+x to close the file
Restart Muse.
Let us know if that works

Similar Messages

  • HT4113 My daughters iPod touch asks for her pass code but when she types it in the cursor does not move or input any characters so,she cannot get into the iPod. This has suddenly happened for no apparent reason

    My daughters iPod touch asks for her pass code but when she types it in the cursor does not move or input any characters so,she cannot get into the iPod. This has suddenly happened for no apparent reason, what can we do? Can anyone help please?

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • TS4036 I just uploaded the new 7 update 2 days ago and now my phone has locked me out and is saying disabled , i called verizon and the said to contact apple . it asked for my pass code but i did not remember it and tried it to many times and it is locked

    help!!!!! i just uploaded 2 days ago the new 7 update to my phone , then yesterday morning , it said disabled and asked me for my pass code . I couldnt remember what it was , so after trying different ones it finally locked me out for good. how do i fix this !!!!!!?????

    If your phone is disabled from entering the wrong passcode too many times you'll have to restore it to remove the passcode, as explained here: http://support.apple.com/kb/HT1212.

  • Updated my iPad to IOS7. Now is asks for a pass code, but I've never used a pass code on it before.

    Does anyone know how to bypass the pass code after updating iPad to ios7? I've never used a pass code before and now it asks me for one. Also, my iPad is now disabled due to too many attempts to unlock it. Any help would be greatly appreciated.

    Hi,
    Follow the steps here to recover a disabled iPad:
    http://support.apple.com/kb/ht1212
    Hope it helps

  • HT201441 Once I updated my phone 4 of 2 years it asked for a pass code but it did not ask for one to be installed, I am the only owner of this iPhone, is there anyway to unlock and set a new passcode?! Please help!

    Apple needs to either tell me how to unlock it or ship me another iPhone 4 32gb.

    Hello Stina36,
    Thanks for using Apple Support Communities.
    I'm sorry to hear about the issue you're phone is having.  I did however find this support article that has great steps for you to go through in order to try and resolve this issue:
    iOS: If you can't back up or restore from a backup in iTunes
    http://support.apple.com/kb/TS2529
    Take care,
    Alex H.

  • Ask for help( simple code but wired error )!

    The post I sent just now has some mistakes. This post is correct. My simple code is as follows:
    import java.io.*;
    import java.net.*;
    public class count {
    float dclient = (float)3.333;
    float dlan = (float)0.01884;
    float drouter = (float)0.00115;
    float doutlink = (float)0.04185;
    float dinternet = (float)1.2615;
    float dinlink = (float)3.18129;
    float client1 = 0;
    float lan1 = 0;
    float router1 = 0;
    float outlink1 = 0;
    float internet1 = 0;
    float inlink1 = 0;
    float client2 = 0;
    float lan2 = 0;
    float router2 = 0;
    float outlink2 = 0;
    float internet2 = 0;
    float inlink2 = 0;
    float x = 0;
    float z = (float)3.333;
    public static void main(String[] args) {
    for (int n=1; n<16; ++n)
    client1 = dclient;
    lan1 = dlan * (1+lan2);
    router1 = drouter;
    outlink1 = doutlink * (1+outlink2);
    internet1 = dinternet;
    inlink1 = dinlink * (1+inlink2);
    x = n / (z + client1 + lan1 + router1 + outlink1 + internet1 + inlink1);
    client2 = x * client1;
    lan2 = x * lan1;
    rounter2 = x * rounter1;
    outlink2 = x * outlink1;
    internet2 = x * internet1;
    inlink2 = x * inlink1;
    System.out.println(client1 + " " +
    lan1 + " " +
    rounter1 + " " +
    outlink1 + " " +
    internet1+ " " +
    inlink1+ " **** " +
    x + " **** " +
    client2 + " " +
    lan2 + " " +
    rounter2 + " " +
    outlink2 + " " +
    internet2+ " " +
    inlink2 + " ********************end of n = " + n + "************************"
    The compiling error is:
    count.java:43: Can't make a static reference to nonstatic variable dclient in class count.
    client1 = dclient;
    ^
    1 error
    What is wrong with it? Many thanks!

    import java.io.*;
    import java.net.*;
    public class count
         public static float dclient = (float)3.333;
         public static float dlan = (float)0.01884;
         public static float drouter = (float)0.00115;
         public static float doutlink = (float)0.04185;
         public static float dinternet = (float)1.2615;
         public static float dinlink = (float)3.18129;
         public static float client1 = 0;
         public static float lan1 = 0;
         public static float router1 = 0;
         public static float outlink1 = 0;
         public static float internet1 = 0;
         public static float inlink1 = 0;
         public static float client2 = 0;
         public static float lan2 = 0;
         public static float router2 = 0;
         public static float outlink2 = 0;
         public static float internet2 = 0;
         public static float inlink2 = 0;
         public static float x = 0;
         public static float z = (float)3.333;
         public static void main(String[] args)
              for (int n=1; n<16; ++n)
                   client1 = dclient;
                   lan1 = dlan * (1+lan2);
                   router1 = drouter;
                   outlink1 = doutlink * (1+outlink2);
                   internet1 = dinternet;
                   inlink1 = dinlink * (1+inlink2);
                   x = n / (z + client1 + lan1 + router1 + outlink1 + internet1 + inlink1);
                   client2 = x * client1;
                   lan2 = x * lan1;
                   router2 = x * router1;
                   outlink2 = x * outlink1;
                   internet2 = x * internet1;
                   inlink2 = x * inlink1;
                   System.out.println(client1 + " " +     lan1 + " " router1 " " outlink1 " " internet1 " " inlink1 " **** " +     x + " **** " +
                   client2 + " " +
                   lan2 + " " +
                   router2 + " " +
                   outlink2 + " " +
                   internet2+ " " +
                   inlink2 + " ********************end of n = " + n + "************************"

  • Cant use colours in AI free version.stroke and fill options are not active either

    cant use colours in AI free version.stroke and fill options are not active either

    In the Trial version of Illustrator try this:
    In the top right of your screen, choose 'Essentials' from the workspace menu.
    Then from the same menu, choose Reset Essentials.
    Next, click the Selection tool in the Tools panel (strip on the left side of your screen, it is the black pointer at the top).
    Click on the object you want to change the stroke and fill colour for. Does it display with little handles around it (this is called bounding box)? E.g. can you tell it is selected?
    You should see the Stroke and Fill options in the Control panel (top horizontal strip above your document), if the object you've selected is a path. But if for instance you selected as a placed photo, you won't see the Stroke and Fill options.
    If possible take a screenshot of what you are trying to do, and we can be of more help hopefully.

  • HT2534 i want to set up my apple id but it ask for the gift card but i dont use them

    I want to set up my Apple ID for my phone but it ask for the Gift Card but I dont use them ? what do I do ?

    If you are trying to create an Apple ID without using a credit card, you have to follow the directions in the article you were reading (http://support.apple.com/kb/HT2534) exactly.  Note that you have to start by downloading and installing any free app, then create the ID.  You shouldn't be asked for a Gift Card to create the ID.

  • HT204074 Can i use my previous apple ID on my new iPhone ? It's asking for a new ID but i only have the one email address

    Can i use my previous apple ID on my new iPhone ? It's asking for a new ID but i only have the one email address

    Yes. We need more details...exactly what do you mean by "asking for a new ID"? Where do you see this?

  • My new iPad air is suddenly asking for a pass code. I have only just finished restoring it from my iPad 2 and I didn't set one. The one I used before doesn't work. What can I do?

    My new iPad air is asking for a pass code. I have only just finished restoring it via iTunes from my ipad2 and I didn't set one. The one I used before doesn't work. What can I do?

    http://support.apple.com/kb/HT1212

  • When I try to open the Iphoto it keeps on asking for the software update but when I click on the software update tab, it says that all updates are up to date. I still cant open the Iphoto, what should I do?

    When I try to open the iphoto it keeps on asking for the software update, but when I click on the software update it says that all the software in the computer are up to date. I still cant open the iphoto, what should I do?

    How old is your Mac? If it's very recent you need to update via the App Store
    If you purchased at the App Store you need to update via the App Store
    Otherwise you update via Softare Update
    If you have moved iPhoto from the default location (i.e. into a Folder) then the updater won't find it. Move it back.
    If you have renamed iPhoto, the updater won't find it. Change it back.
    Regards
    TD

  • I got my ipod, and my wife, her iphone. I downloaded an app and use it in my itouch, but when my wife download it in her iphone, and the phone ask her to update it, it asks for my apple ID, but she has her own apple ID, how do we avoid this?

    I got my ipod, and my wife, her iphone. I downloaded an app and use it in my itouch, but when my wife download it in her iphone, and the phone ask her to update it, it asks for my apple ID, but she has her own apple ID, how do we avoid this?

    Hi peacemakerco,
    Thanks for visiting Apple Support Communities.
    You can use the steps in this article to sign in on the iPhone with the right Apple ID:
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Best,
    Jeremy

  • Why it is keep asking for Username and Password but i didn't use any username and password with my database.

    Why it is keep asking for Username and Password but i didn't use any username and password with my database. Please help me i m very frustrated right now please help anybody. I m new in this.,

    Hi,
    Please check below threads:
    Crystal Report Layout asking for Login Info
    SAP B1 ask for credentials to print or to preview Crystal Reports report

  • My used macbook is asking for password to unlock different keychains, how do i reset the password?

    my used macbook is asking for password to unlock different keychains, how do i reset the password?

    Hi nylife02,
    Welcome to the Apple Support Communities!
    Without knowing the exact keychain alert your are receiving, I will leave articles for the ones that are most likely the culprit. The one it sounds most like to me is “login” keychain. Please review the article below if indeed you are receiving the “login” keychain prompt.
    OS X: Keychain Access asks for keychain "login" after changing login password
    http://support.apple.com/kb/ht1631
    Another keychain prompt that this may be is the “Local Items” keychain. Please follow the attached article if the prompt is for “Local Items” keychain.
    OS X Mavericks v10.9.1: Repeated prompts to unlock "Local Items" keychain
    http://support.apple.com/kb/TS5362
    Have a great day,
    Joe

  • I forgot my security questions and i want to buy something but i cant because it keeps asking for the questions what do i do?

    i forgot my security questions and i want to buy something but i cant because it keeps asking for the questions what do i do?

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (100018)

Maybe you are looking for