New to muse, help needed

first off i would like to say that when i selected a community to post into there wasnt one for muse so i chose dreamweaver.
i have been creating a site for my real estate company in spain, i started by using dreamweaver having problems adjusting to the code. i was tipped to use muse as no coding is required.
i have been following the tutorials at lynda.com on how to create a site with muse. the tutorials are excellent by the way and i fully recommend them!
i have a website up and running at www.casanerja.eu5.org. ill run you through the site and what i think is wrong with it. the stuff i think is wrong i need a tutorial in how to change if you guys can give one.
first off the index page. you will notice that if you hover over the countries and flags they light up. i want them to be in sync with their flag so if you hover over the word 'welcome' the english flag also lights up. at the moment i have set the word 'welcome' and the flag to stay bright as this will indicate to the user they are viewing in english. i haven't got the other languages setup yet but eventually ill redo each page in the 3 extra languages and link them up.
second is the search page. there isnt anything here as i want to set up a complex form that will let the users set their preferences on what property they would like, once they click submit the page will then look through the companies database and will show the properties that are relevant. what is this form called that i want to make and how do you make it? also my company has no database at the moment so i will have to create one, i suppose i can create a database with microsoft access.
third is the about page. when you scroll down i have set the logo and nav bar to always stay at the top. the problem here is that when it goes over text i can still see the under text as well as the logo. how can i get them to stay on top so you will not see anything it scroll over.
forth is the contact page. again i have the same problem with the scrolling. i also have a problem setting google maps to show my location 'casa nerja' in a zoomed view, i have managed to enter in the address 'Casa Nerja, Nerja', this gives the map that shows at the moment and I have zoomed in enough to see my company positioned at the bottom of the map. how can i tell google maps to be more specific in showing my company location.
the last page is the links and media page. apart from the scrolling problem i have no other changes i want to make to this page.
how can i set my logo to fade in on page refresh?
is there an easier way for me to translate each page or do i just have to change them individually?
sorry this is such a long post but i hope i get some help here.
thanks
james

There's a Muse forum, it's the last one listed on the Adobe Forums page at http://www.adobe.com/forums, it's right here: Help with using Adobe Muse CC

Similar Messages

  • New to Java:   Help Needed

    Hi,
    I am writing a utility to monitor all the objects created by my application. I want to be able to get not only values of class variables(for which the reflection package seems pretty useful), but also instance variables.
    For example.
    public class myClass {
    //Constructor
    public myClass(int i) {
    // another class instantiates this one
    myClass mc = new myClass(10);
    myClass mc1 = new myClass(20);
    I need to keep track of the the handles mc and mc1 and the
    other initializations they do based on the value passed at runtime.
    Is there a way to to this. Or even better, is there someplace in Java which stores all the objects instantiated and their handles?
    Any suggestions would be greatly appreciated.
    Thnx
    cvsan

    How do I access private and proteced variables. By default only the public variables are accessible via the reflect class as in the example below.
    Class c = rc.getClass();
    String s = c.getName();
    System.out.println(s);
    try { abcField = c.getField("abc");
    where abc is a public instance variable. If abc is a private instance variable, the above example fails.
    Is there any way to override the data hiding feature of Java?
    Thanks
    cvsan

  • Pdf showed in new window. Help needed!

    Hi all,
    This is my first post (but a thousand read), and i want first to thank you all for all the information i have read in this forums for years.
    I have a problem which is giving me more problems that i expected. In my webapp, i want to show a pdf document in a new page of the navigator when a button is pressed. I have discarded the target blank option in the container form because i have others buttons and dont want them to be opened in new windows, just the one that open the pdf.
    So, I used another navigation rule to open a new window. This page have to make de pdf in code an send it to the client. I dont know how to execute that code on the load of the page.
    The solution i am trying is using a poll that only will be called once and in the pollListener execute that code. The problem is that does not work to send the response to the client in the client. Here is the code of the pollListener:
    byte[] file; //Don't worry about it. Contains the file pdf i want to show.
    FacesContext fctx = FacesContext.getCurrentInstance();
    HttpServletResponse response =
    (HttpServletResponse) fctx.getExternalContext().getResponse();
    response.setContentType("application/pdf");
    response.setHeader("Content-Disposition",
    "inline; filename=\"file.pdf\"");
    response.setHeader("Cache-Control", "no-cache");
    response.setContentLength(file.length);
    ServletOutputStream sos = response.getOutputStream();
    sos.write(fichero);
    sos.flush();
    sos.close();
    fctx.responseComplete();
    The curious thing is that if i change the content-disposition to atachemement instead inline, it works asking me to download the file, however, i want it to open directly in the new window and is because of that i use content-disposition inline.
    I am almost killing myself because of this problem. Anyone can help me?
    Thanks in advance!

    First of all, you don't need to do this with a workaround using a Poll listener. I assume that one page has a commandButton or commandLink that is used to show the PDF, right?
    Set the useWindow property of the button or link to "true".
    Set the actionListener property of the button or link to a method in a backing bean that looks something like this:
        public void showPDF(ActionEvent actionEvent) throws IOException {
            //Setup the output
            String contentType = "application/pdf";
            FacesContext fc = FacesContext.getCurrentInstance();
            HttpServletResponse response =
                (HttpServletResponse)fc.getExternalContext().getResponse();
            /* Notice that I don't set the Content-Disposition header - inline is default. */
            response.setContentType(contentType);
            ServletOuputStream out = response.getOutputStream();
            /*  Do whatever you need to do to write the pdf to "out" here. */       
            out.flush();
            out.close();
            fc.responseComplete();
        }

  • New to XI (help needed urgent)

    hi all i am new to XI . i have just started learning . so if any one have some documents regarding it then plz share with me.iam lookig for the documents in following areas
    1. XI Fundamentals.
    2. Mapping Concepts.
    3. Adapters Concepts.
    4. Business Process Management Concepts.
    5. Mapping,Adapters and BPM.
    i will be grateful to u and ur efforts.
    i will also give points for ur efforts.
    my id - [email protected]
    plz i am looking for all ur helps.
    its very urgent
    Message was edited by: sanjeev singh

    Hi,
    This is very good document regargding mapping
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/190eb190-0201-0010-0ab3-e69f70b6c257
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/9202d890-0201-0010-1588-adb5e89a6638
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/6658bd90-0201-0010-fbb6-afe25fb398d3
    Regards,
    Prakash

  • New to Muse - Help with Text sitting above my master page content header

    Hi there, I am needing to know how to make the text box that I have created on my "Home" page scroll underneath the main content in the header section of my master page please.

    Hiya Aish, thanks for your response. I have copied the header from master page and pasted it on my home page (assuming this is a layer??) They are the same width i.e. touch the edge of the visible page/background and pinned it. However, it's not filling the entire browser window. It's like it's only the page width and pinning it to the left side of the browser. My text however is going behind this now so thank you.   Any chance you could help extend the graphics so they fill the browser width as per the master page please??

  • Problems hearing incoming calls after downloading 10.3.1.1565 new version - URGENT HELP NEEDED

    Hi,
    I have a few problems with my z10 STL100-2:
    1. I don't hear the sound of incoming calls. (other notifications I do hear)
    2. When I connect the device to blackberry link I receive a message in the bl. link that I need to disconnect the device from the computer and complete the defenition process in the device, whereas in the device it says that the definition was completed. Therefore I cannot connect to the bl. link.
    I'd appreciate any help.
    Thank you!

    welcome to the club. lots of post for exactly the same thing pluss more.
    while we wait for a solution also check your callender and see if your alarm on that only rings for 2 seconds.

  • New smartphone user - help needed with 520

    I hope my issues are easy to solve.  I have a gmail account and I want to download apps  from Microsoft.  Seems simple enough.  But I cannot set up my gmail account and am totally befuddled.  I look up Microsoft accounts and there are several.  I went into Microsoft's outlook.com and set up an account @live.com.
    When I try to sign into that account to download apps I get the error code FFFFFE70.
    Please help me understand what I need to do to  easily created accounts to post here, download apps from Microsoft, and have my email from gmail come to my phone

    If there's an issue with the Microsoft account I guess best woudl be to contact their support line HERE.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • NEW IPAD USER - HELP NEEDED RE: ITUNES & ICLOUD

    Ok, so, firstly, sorry for what will prob be mundane and often asked questions !! (I have looked on apple support for ipad, but can't seem to find the exact answers to what I want to know!!)
    Here goes,
    I have a newly purchased ipad 4 (wifi only), and am a bit confused about a few things.
    1) I want to put apps, games, music etc onto my ipad, I have downloaded itunes onto my laptop so that I can download apps onto that and then sync to my ipad, but at the risk of using all the memory on my laptop, after I sync ipad to laptop and sync apps across from itunes, can I then delete apps from my laptop to free up memory? Will they completely delete from itunes if I do this?
    2) Should I use icloud, and if so, to get apps onto there, do they first have to be in itunes and moved to icloud? And if so, then can they be removed from laptop, again, to free up memory?
    3) If I do use icloud (is it recommended??) ......will all the apps I download in itunes and move to icloud be there automatically when I connect to wifi with my ipad after logging in using apple id?
    Hope this makes sense,
    Thanks in advance for any help received......

    kezw17 wrote:
    1) I want to put apps, games, music etc onto my ipad, I have downloaded itunes onto my laptop so that I can download apps onto that and then sync to my ipad, but at the risk of using all the memory on my laptop, after I sync ipad to laptop and sync apps across from itunes, can I then delete apps from my laptop to free up memory? Will they completely delete from itunes if I do this?
    Yes, you cna delete them, and they will be removed from iTunes. However, you can Download Apps directly onto the iPad from the App Store App; also once purchased, Apps can be redownloaded for free from the App Store "cloud" as many time as you want. So if you delete them from iTunes you can always re-download them in the future should you ever need to.
    2) Should I use icloud, and if so, to get apps onto there, do they first have to be in itunes and moved to icloud? And if so, then can they be removed from laptop, again, to free up memory?
    iCloud stores only backups of your device, and files form Apps like Pages, Numbers and Keynote along with your calendars, contacts, etc.. it does not directly sotre Apps or music or movies. You cannot directly transfer Apps to iCloud. However as was said, once purchased any Apps will be available to download from the "cloud", which is slightly different to "iCloud", automatically.  They don't take up space in the iCloud account quota though, and can be safely deleted form your computer if you want to.
    3) If I do use icloud (is it recommended??) ......will all the apps I download in itunes and move to icloud be there automatically when I connect to wifi with my ipad after logging in using apple id?
    They'll be there, automatically should you ever decide to delete them form your iPad and need to download them again.  Provided of course they continue to be available in the App Store.   If they are removed from the App Store, then they will no longer be accessible from the cloud.

  • I'm new here, serious help needed plea

    Hi everyone!
    For months now i have been experiencing problems with the sound on my computer and at first it was only every so often that the sound would skip / jump here and there whilst i was doing simple things like listening to music or watching videos on the internet. But it became gradually more frequent until last week when all sounds (including windows ones such as the start up tone) were skipping, and i decided to take action!
    I was reading instructions on how to fix some sound problemsand tried to install new driver updates for my sound card (Sound Blaster PCI28). i was prompted to reboot, which i did, but then i was asked to insert the 'Windows Millenium Edition' disc, which i do not have! (the PC came with everything already installed by Tiny so we don't have any of those kinds of discs). So i skipped the two files from the disc and since then the sound has gone completely, and i fear that i may have deleted / uninstalled the sound card! All i can hear now is a fuzzy noise from the speakers all the time, and when you would usually here the sound clearly, it can only be heard extremely faintly and is drowned out by the fuzziness!
    I am at the end of my tether and don't know what else to do!
    Please help!
    thelemonfairy :womansad:

    Hi
    Some more information might help addressing the problem you're having.
    Is your PC made by IBM/Dell/Compaq/HP or any other known manufacturer?
    Can you tell the exact type number for your sound card (like SB0200).
    .jtpMessage Edited by jutapa on 04-05-2005 0:2 AM

  • Sync iphone 4s with new macbook pro help needed

    I have a new iPhone 4s and a new MacBook Pro.
    I have synced the iPhone 4s with my old MacBook.
    It won't now sync all of that data with my new MacBook Pro.
    I do not want to transfer all data from my old computer to my new computer.
    How can I move just iPhone 4s data?
    I have tried iExplorer to try and get the data directly from the phone,
    but I am not tech savvy to put the info. in the right folders of itunes, etc.
    Any step by step help would be greatly appreciated! Thanks in advance!!
    Kell

    Syncing to a new iTunes library or computer will erase your phone. Only if you back up manually before syncing, you can restore your device from that backup again. A manual backup does not include the sync process.
    Do this:
    Disable autosync in iTunes, connect your phone to your new computer and right click on it in the device list and choose backup. iTunes will backup your device without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect your phone for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the iPhone for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in itunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread:http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved:iTunes: About iOS backups
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device

  • Open a new form! Help needed

    I am still new to this.
    I am trying to open a new_form from an already open form.
    I have assigned the trigger as follows.
    WHEN-BUTTON-PRESSED
    New_form('FORM3');
    Now, when i run the form I get the error
    FRM-40108:No Such: FORM3
    When it clearly exsists. What ever name I try it dosnt work. HAve I done the trigger correctly?
    Thanks

    You should first define a named configuration entry in FORMS_PATH\forms\server\formsweb.cfg for example TEST , at the bottom of the file.
    Imagine that the form(s) are located in C:\oracle_files\Forms directory..
    So this entry would have the format...
    [TEST]
    workingDirectory=C:\oracle_files\Forms
    form=first_form.fmx
    Then restart the OC4J instance and call this named configuration as
    the formsweb.cfg file has as an example , replacing the sepwin to TEST....
    NOTE....
    If the two forms (the caller , the calling) are in the same path then in NEW_FORM you needn't reference the full path , otherwise you have to....
    Simon

  • New to java,,,help needed urgently

    I am geeting a compile error..."cannot resolve symbol" in my main class. The program is supposed to prompt the user for five sets of data, and calculate the tax and total of the entered products and print it back to the screen, it is also supposed to calculate the cheapest and most expensive item and print them back. can someone pls shed some light on this error msg, as I cant seem to get my head around it.
    import java .io.*;
    import java.util.StringTokenizer;
    import java.text.NumberFormat;
    import java.util.Locale;
    //set up a class to call on the constructors from the catalogueitem class
    public class Myassg4
         private static final int MAX = 2;//sets the length to 2
         private static CatalogueItem[] prodlist ;//sets array for product list
         NumberFormat cash = NumberFormat.getCurrencyInstance(new Locale("en","AU"));
         private static void main(String[] args) throws IOException
         {//declare the variables and initialize
         double preTotal = 0.00;
         String inString;
         double maximum, lowest;
         double sum = 0.00;
         BufferedReader stdin = new BufferedReader (new
         InputStreamReader(System.in));
         prodlist = new CatalogueItem[];//sets the length (THIS IS WHERE THE PROBLEM OCCURS!!!!)
    System.out.println("Enter 5 sets of data");
         //loop through the array and read the data in
         for(int i = 0;i <prodlist.length;i++)
              inString = stdin.readLine();
              //create a String Tokenizer to read the data separately
              StringTokenizer tok = new StringTokenizer(inString, ":");
    prodlist[i] = new CatalogueItem(tok.nextToken(), tok.nextToken(),
    Double.parseDouble(tok.nextToken()));
    }//end of loop
    //create a header and print the data back to the screen
    System.out.println();
    System.out.println("LISTING OF ALL GOODS");
    System.out.println();
    System.out.println("Cat\tDescription\tExTax\tTax\tIncTax");
    System.out.println("___\t___________\t_____\t___\t______");
    System.out.println();
    for(int j = 0;j <prodlist.length;j++){
    System.out.println(prodlist[j].getCatno()+"\t"+prodlist[j].getDesc()+
    "\t"+prodlist[j].getPrice()+"\t"+prodlist[j].getTax()
    +"\t"+prodlist[j].getIncTax());
    I have errors every where the prodlist is used, I know I am not initializing it correctly but dont know what the alternatives are.

    daniel here is the entire code if you do get a chance can you pls have a look at it for me thanks.
    import java .io.*;
    import java.util.StringTokenizer;
    import java.text.NumberFormat;
    import java.util.Locale;
    //set up a class to call on the constructors from the catalogueitem class
    public class Myassg4
         private static final int MAX = 2; //sets the length to 2
         private static CatalogueItem[] prodlist; //sets array for product list
         NumberFormat cash = NumberFormat.getCurrencyInstance(new Locale("en","AU"));
         private static void main(String[] args) throws IOException
         {//declare the variables and initialize
         double preTotal = 0.00;
         String inString;
         double maximum, lowest;
         double sum = 0.00;
         BufferedReader stdin = new BufferedReader (new
         InputStreamReader(System.in));
         prodlist = new CatalogueItem[5];//sets the length
         System.out.println("Enter 5 sets of data");
         //loop through the array and read the data in
         for(int i = 0;i <prodlist.length;i++)
              inString = stdin.readLine();
              //create a String Tokenizer to read the data separately
              StringTokenizer tok = new StringTokenizer(inString, ":");
    prodlist[i] = new CatalogueItem(tok.nextToken(), tok.nextToken(),
    Double.parseDouble(tok.nextToken()));
    }//end of loop
    //create a header and print the data back to the screen
    System.out.println();
    System.out.println("LISTING OF ALL GOODS");
    System.out.println();
    System.out.println("Cat\tDescription\tExTax\tTax\tIncTax");
    System.out.println("___\t___________\t_____\t___\t______");
    System.out.println();
    for(int j = 0;j <prodlist.length;j++){
    System.out.println(prodlist[j].getCatno()+"\t"+prodlist[j].getDesc()+
    "\t"+prodlist[j].getPrice()+"\t"+prodlist[j].getTax()
    +"\t"+prodlist[j].getIncTax());
    //use this data and call the cheapest method to print
    //the cheapest goods in the catalogue
    System.out.println();
    System.out.println("CHEAPEST GOODS IN THE CATALOGUE");
    System.out.println();
    lowest = cheapest(prodlist, MAX);
    System.out.println("Cat\tDescription\tExTax\tTax\tIncTax");
    System.out.println("___\t___________\t_____\t___\t______");
    System.out.println();
    for(int k = 0;k <prodlist.length;k++){
    if(prodlist[k].getTaxInc == lowest)
    System.out.println(prodlist[k].Catno()+"\t"+prodlist[k].getDesc()+
    "\t"+prodlist[k].getPrice()+"\t"+prodlist[k].getTax()
    +"\t"+prodlist[k].getIncTax());
    //use the listing of all goods and call the most expensive method
    //to calculate and display back on screen
    System.out.println();//create two lines of space in between
    System.out.println();
    System.out.println("MOST EXPENSIVE GOODS IN THE CATALOGUE");
    System.out.println();
    maximun = expensive(prodlist, MAX);
    System.out.println("Cat\tDescription\tExTax\tTax\tIncTax");
    System.out.println("___\t___________\t_____\t___\t______");
    System.out.println();
    for(int l = 0;l < prodlist.length;l++){
    if(prodlist[l].getTaxInc == maximum)
    System.out.println(prodlist[l].Catno()+"\t"+prodlist[l].getDesc()+
    "\t"+prodlist[l].getPrice()+"\t"+prodlist[l].getTax()
    +"\t"+prodlist[l].getIncTax());
    //print the pretax worth of goods by calling the method and display
    System.out.println();//create a two lines of space in between
    System.out.println();
    System.out.println("TOTAL OF PRE-TAX WORTH OF CATALOGUE ITEMS: "+preTaxWorth
    (prodlist));
    //print the avg tax payable per item
    System.out.println();
    System.out.println("AVERAGE AMOUNT OF TAX PAYABLE PER ITEM:"+avgTax
    (prodlist));
    //declare the other methods within the scope of the main class
    public static double cheapest(CatalogueItem[] prodlist, int size)
         double lowest = prodlist[0].getIncTac();
         for(int i = 0; i < size;i++)
              if(prodlist.getIncTax() < lowest)
              lowest = prodlist[i].getIncTax();
         return lowest;
    public static double expensive(CatalogueItem[] prodlist, int size)
         double maximum = prodlist[0].getTaxInc();
         for(int i = 0; i < size; i++)
              if(prodlist[i].getIncTax() > maximum)
              maximum = prodlist[i].getIncTax();
         return maximum;
    public static double preTaxWorth(CatalogueItem[] prodlist)
    {//add all the getPrice's in together
    double preTax = 0; //prodlist[0].getPrice();
    for(int i =0; i <prodlist.length; i++)
         preTax += prodlist[i].getPrice();
    return preTax;
    public static double avgTax(CatalogueItem[] prodlist)
    {//run through the array and add all the getTax amounts up.
         double sum = 0;
         for(int i = 0; i < prodlist.length; i++)
              sum = sum + prodlist[i].getTax();
         //to get the avg we divide the sum by the MAX number of entries
         double Total = sum / MAX;
         return Total;
    }//end of main class
    //CatalogueItem class      
    //catalogue item class
    //ensure that the accesors and mutators
    //are visible and cannot be overridden
    class CatalogueItem
    //declare the data types
    private String catno;
    private String desc;
    private double price;     
    //declare the taxation rate constant
    //but make it visible
    public CatalogueItem(){
         catno = " ";
         desc = " ";
         double price;
    //declare the full constructor
    CatalogueItem (String inCatno, String inDesc, double Price)
         inCatno = catno;
         inDesc = desc;
         Price = price;
    //name accessor---not overidable
    public final String getCatno()
         return catno;
    //name product description accessor--not overidable
    public final String getDesc()
         return desc;
    //name the extax method
    public double getPrice()
         return price;
    //tax utility method
    public double Tax()
    double Tax;     
         Tax = 00.15 * getPrice();
         return Tax;
    //Including Tax method
    public double IncTax()
         double IncTax;
         IncTax = Tax() + getPrice();
         return IncTax;

  • Songs on pod but have new pc.. help needed..

    I have about 480 songs on my pod but have bought a new pc so will I loose my songs on my pod if I add more songs to my pod any advice would be welcome rgds Paul.

    If you are using iTunes version 7 or later, then you can transfer purchased iTunes store music from the iPod to an authorized computer by using the "file/transfer purchases from iPod" menu. Note that the maximum of 5 authorized computers applies here.
    For all other non purchased music (your own CDs etc) try this method which works on some Windows PCs.
    Enable your iPod for disk use.
    See: iPod Disk Use.
    Open iTunes and select edit/preferences/advanced/general. Put a check mark in the box marked "copy files to iTunes music folder when adding to library" and also "keep iTunes music folder organized", then click 'ok'.
    Connect the iPod whilst holding down the shift/ctrl keys to prevent any auto sync, and if you see the dialogue window asking if you want to sync to this itunes library, click 'no'.
    Then go to file/add folder, open 'my computer', select your iPod and click 'ok'.
    The music files should transfer to your iTunes.
    If this doesn't work (and it may not because officially it's not supposed to), check out the instructions/suggestions here.
    Music from iPod to computer (using option 2). This a manual method using "hidden folders" and although it works, it can be messy.
    Much easier ways are to use one of the many 3rd party programs that copy music from the iPod to the computer.
    One of the most recommended is Yamipod. This is a free program that transfers music and playlists etc from iPod back to the computer. However, it does not transfer playcounts/ratings etc.
    Another free program is Pod Player.
    There is also CopyPod. This does preserve ratings/playcounts etc if those are important to you but this program is not free. It also supports video transfer.

  • New iphone user - help needed with sync and icloud

    I have 389 contacts on my iphone 4S,but only 370 are appearing in icloud on my laptop.  When I look at "Groups" on my iphone there are two - icloud which contains the 370 that have sync'd ok, and my Apple account name (or e-mail address, they're the same) which contains 379.  Presumably the missing 19 are somewhere in this 379, as when both groups are enabled I have the total of 389. 
    Any suggestions how I can get all my 389 contacts (and future new ones that I add) to sync correctly?
    Thanks

    Because there is only 19 I would go to icloud.com and sign in. I would add each one into your contacts that way and delete the duplicates.

  • New to flash help needed to start

    hi i have just downloaded a template which im now trying to modify, i have tons of files which came with the template which one do i start on first to make my website. many thanks debby

    If your template came with some form of Read Me file, you should start there.  A good template design will provide instructiuions on how to modify it to include your own content.  Beyond that, if it is a Flash site, then you want to edit Flash files that have .fla extensions.  There may be data files that came with the template that may have .xml or .txt extensions.  You may want to look thru these to see if the resemble/define any of the content you plan to change.
    Unfortunately, if there are alot of files that came with your template then there are alot of possibilities as to what files need to be dealt with in what way.  If there is no read me file, then open whatever fla file came with it and see what's in it that you planned to change as a starting point.

Maybe you are looking for

  • Post with Clearing using FM POSTING_INTERFACE_CLEARING

    I'm using function module POSTING_INTERFACE_CLEARING to clear open items in the background as it would be done with transaction FB05. Now I'm facing a problem with the mapping of the open items. For every account number that is used in the clearing I

  • Help opening powerpoint 2002 presentation on a mac

    Hi, I don't know if this is the right place to post this, but here goes. I have a powerpoint 2002 presentation that I've made on a windows xp pc, and I'm trying to open it on my Mac OS X 10.4.10. The ppt file appears as a white paper for the icon on

  • Dvd access to get a dvd out !

    All the online help, forums,  boot up, eject  etc do not work .  terminal/drutil eject  ;  keybaord depressed on a boot up.; Ctrl E, Ctrl S on boot etc. System does not see the dvd or make any noise like a pc would to eject a dvd even if its not ther

  • Captivate 8 free trial content

    Hi, I am looking at trialing Captivate 8 for a project. When the 30 day trial runs out do i lose all access to any content i have created. If i wanted to keep it it would take longer than 30 days to get internal sign off for purchasing it. Thanks Tim

  • Replacement CUVAv2

    Hi. Cisco /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Обычная таблица"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-priority:99; mso-style-qformat:yes; mso-style-parent:""; mso-padding-alt:0