Help needed with Java 1.4 and xml Runtime problem

I am working on a java 1.3 and JAXP1.1 written code. Now I want to compile and run it using J2SE 1.4. Here are the import statements from the existing code.
import org.xml.sax.*;
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.Locator;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.Attributes;
import org.xml.sax.XMLReader;
import org.xml.sax.InputSource;
import java.sql.*;
import java.net.*;
import java.io.*;
When I run the existing(using java 1.3 and Jaxp1.1) code I have to include the files crimson.jar and jaxp.jar in the windows 2000 CLASSPATH and works fine.
But when I compile and run it using J2SE 1.4 which has the built in support for the saxp, I thought that I don't have to specify any CLASSPATH for the new 1.4 so I don't specify any Classpath and it gives me the Microsoft "ClassFactory cannot find the requested class" error which means that even thought the new java 1.4 has the xml classes as libraries yet it still requies some .jar files to be listed in the CLASSPATH.
If I am right then what path will work(i.e what jar class I need to add to the CLASSPATH).
Thanks for your help.
RA.

Thanks for your reply,
I think I didn't specify when the error occurs. The ClassFactory related error occurs when I run the program, it compiles without any error.
From what I understood somewhere in the java 1.4 docs, that the new 1.4 has the xml libraries built in by default so one doesn't need to give the classpaths just like we don't give any CLASSPATH for using swing and many of the other java packages. That is one thing.
Second thing is that I also tried to use the java_xml_pack-spring02 and java_xml_pack-summer02; but non of them include the crimson.jar and the jaxp.jar files in them which are the 2 .jar files that makes the program run fine when used under the java 1.3 with combination of the jaxp1.1(which was downloaded seperately and then the CLASSPATH for it was set.).
Can you please help what .jar files do I need to use instead. I tried to use the ones that the new java_xml_pack-spring02 and java_xml_pack-summer02 has for the jaxp in them.
Thanks again.
RA

Similar Messages

  • Help needed with java

    Hello everyone
    I'm a Student and new to java and I have been given a question which I have to go through. I have come across a problem with one of the questions and am stuck, so I was wondering if you guys could help me out.
    here is my code so far:
    A Class that maintains Information about a book
    This might form part of a larger application such
    as a library system, for example.
    @author (your name)
    *@version (a version number or a date)*
    public class Book
    // instance variables or fields
    private String author;
    private String title;
    Set the author and title when the book object is constructed
    public Book(String bookAuthor, String bookTitle)
    author = bookAuthor;
    title = bookTitle;
    Return The name of the author.
    public String getAuthor()
    return author;
    Return The name of the title.
    public String getTitle()
    return title;
    and below are the questions that I need to complete. they just want me to add codes to my current one, but the problem is I don't know where to put them and how I should word them, if that makes sense.
    Add a further instance variable/field pages to the Book class to store the number of pages in the book.
    This should be of type int and should be set to 0 in the Constructor.
    Add a second Constructor with signature
    public Book(String bookAuthor, String bookTitle, int noPages) so it has a third parameter passed to it as well as the author and title;
    this parameter is used - obviously?? - to initialise the number of pages.
    Note: This is easiest done by making a copy of the existing Constructor and adding the parameter.
    Add a getPages() accessor method that returns the number of pages in the book.
    Add a method printDetails() to your Book class. This should print out the Author title and number of pages to the Terminal Window. It is your choice as to how the data is formatted, perhaps all on one line, perhaps on three, and with or without explanatory text. For instance you could print out in the format:
    Title: Robinson Crusoe, Author: Daniel Defoe, Pages:226
    Add a further instance variable/field refNumber() to your Book class. This stores the Library's reference number. It should be of type String and be initialised to the empty String "" in the constructor, as its initial value is not passed in as a parameter. Instead a public mutator method with the signature:
    public void setRefNumber(String ref) should be created. The body of this method should assign the value of the method parameter ref to the refNumber.
    Add a corresponding getRefNumber() accessor method to your class so you can check that the mutator works correctly
    Modify your printDetails() method to include printing the reference number of the book.
    However the method should print the reference number only if it has been set - that is the refNumber has a non-zero length.
    If it has not been set, print "ZZZ" instead.
    Hint Use a conditional statement whose test calls the length() method of the refNumber String and gives a result like:
    Title: Jane Eyre, Author: Charlotte Bronte, Pages:226, RefNo: CB479 or, if the reference number is not set:
    Title: Robinson Crusoe, Author: Daniel Defoe, Pages:347, RefNo: ZZZ
    Modify your setRefNumber() method so that it sets the refNumber field only if the parameter is a string of at least three characters. If it is less than three, then print an error message (which must contain the word error) and leave the field unchanged
    Add a further integer variable/field borrowed to the Book class, to keep a count of the number of times a book has been borrowed. It should (obviously??) be set to 0 in the constructor.
    Add a mutator method borrow() to the class. This should increment (add 1 to) the value of borrowed each time it is called.
    Include an accessor method getBorrowed() that returns the value of borrowed
    Modify Print Details so that it includes the value of the borrowed field along with some explanatory text
    PS. sorry it looks so messey

    1. In the future, please use a more meaningful subject. "Help needed with java" contains no information. The very fact that you're posting here tells us you need help with Java. The point of the subject is to give the forum an idea of what kind of problem you're having, so that individuals can decide if they're interested and qualified to help.
    2. You need to ask a specific question. If you have no idea where to start, then start here: [http://home.earthlink.net/~patricia_shanahan/beginner.html]
    3. When you post code, use code tags. Copy the code from the original source in your editor (NOT from an earlier post here, where it will already have lost all formatting), paste it in here, highlight it, and click the CODE button.

  • Help needed with 3rd party software and Windows XP on MacBook

    My Brother embroidery software has stopped working on the XP side of my MacBook. After all kinds of uninstalling and installing with support from Brother, they decided the problem is not the software and I should "contact my computer company." Since this is really a Mac, would Apple be able to help me with a Windows issue? The genius bar said no, Microsoft says no, so what is the point of buying a using a dual platform machine if no one takes responsibility for helping? I'm very frustrated and could use help from someone who works on both platforms.

    *"would Apple be able to help me with a Windows issue?"*
    Sorry, but no. Apple does not support third party operating systems and applications.

  • Help needed with connectors for Netbeans and Forte

    Im using Forte for Java
    my biggest obstacle is connecting sub j-frames to the main j-frame
    i have created a main J-frame and sub j-frames in one package
    in the Main J-frame there are buttons that you click to go to the next frame the same way "a-href" in HTML works in the same window and back
    what my problem is how to declare the connectors for each button to go to the sub-frame
    what code generators are required and the process and how to lable each sub-frame to be called
    my project is a finance program
    i.e
    Main Frame
    Menu:- ( TVM) ----------> button
    (simple interest)-------> button
    etc
    when you click the (TVM) button
    it should open the TVM frame (subframe in the same window)
    this is my problem your help please this is a project which i have a deadline to meet ive done research through out but couldn't come across any useful or relevent material
    this is a lot easier with pascal but Forte is a compulsory and java
    if you want the screenshots ill post it thru mail just drop your adress and ill forward it
    thank you

    matt010385 wrote:
    Thanks
    I have already tried all of the things that site suggests, there is nothing wrong with the servers, or the service, I have tried all the work arounds that they suggest, but I still cannot get it to work.
    Having a quick read i see from a link there that you might need to open ports(port forwarding).
    Are you using a HH3, if so, I believe that it does have trouble with port forwarding, you can try a search here.
    I am not into games as such, so will have to leave it for others to possibly help with some info.
    toekneem
    http://www.no2nuisancecalls.net
    (EASBF)

  • Help needed with Photoshop CS4 Extended and Windows 7

    I wander if anyone can help me i have just installed CS4 design premium onto Windows 7 RC 7100 32 bit all installed fine including photoshop but when i open any psd files or even create a new psd file it comes back pixelated and unviewable. I am new to photoshop so not sure if it something to do with it or to do with Windows 7 any help would be appreciated. All other programs are working absolutely fine.
    UPDATE: Even stranger is that when i zoom in to the document to 200% it is fine any less than that and its pixelated???????????

    DANewton wrote:I hope i wont need anymore help. 
    You might when you find certain features won't work!    
    See http://kb2.adobe.com/cps/404/kb404898.html

  • Help needed with hosting APEX XE and domain name

    Hi,
    I'm looking at hosting my own APEX XE and need some help. I have APEX XE installed and running on my PC. I am using it to demo some apps. I have a registered domain which I would like to use as well.
    Any assistance would be appreciated.

    Hi Andrew,
    At the moment I'm setting my own server up on virgin media though I will be helping a family member with their connection at a later stage.
    I currently have this safecom Cable wireless router (http://safecom.cn/code/support/DMF.aspx?pid=309#) and its manual is there. I found a menu called Dynamic DNS which has dyndns.org(dynamic) as a choice. I entered in the hostname bingo.dyndns.com which is what i registered on dyndns.
    What else do I need to do? I'm not to sure how to forward incoming requests. I do understand that you a routeting the queries to a specific machine and port but I'm not sure how to do it. I'm also experiencing this problem APEX username and password
    Thank Andrew

  • Help needed with virtual bookshelf - drag and drop between components?

    Hi there,
    Im trying to create a virtual bookshelf, where book spines are individual movie clips that can be dragged and re-ordered on the shelf.  At the moment i can drag the spines to one assigned target, but not any target or 'nudge' the position of the other books along.
    Im sorry if this is a bit vague i'm not that experienced in as3, please feel free to ask any questions and i'll do my best to answer.  Im thinking that an array is necessary which holds the positions, but im not sure how to put it all together!
    Any help greatly appreciated! The code i have so far is:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    var dragArray:Array = [red, blue, green, purple, yellow];
    var matchArray:Array = [target1, target2, target3, target4, target5];
    var currentClip:MovieClip;
    var startX:Number;
    var startY:Number;
    for(var i:int = 0; i < dragArray.length; i++) {
    dragArray[i].buttonMode = true;
    dragArray[i].addEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
    matchArray[i].alpha = 0.2;
    function item_onMouseDown(event:MouseEvent):void {
    currentClip = MovieClip(event.currentTarget);
    startX = currentClip.x;
    startY = currentClip.y;
    addChild(currentClip); //bring to the front
    currentClip.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    function stage_onMouseUp(event:MouseEvent):void {
    stage.removeEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    currentClip.stopDrag();
    var index:int = dragArray.indexOf(currentClip);
    var matchClip:MovieClip = MovieClip(matchArray[index]);
    if(matchClip.hitTestPoint(currentClip.x, currentClip.y, true)) {
      //a match was made! position the clip on the matching clip:
      currentClip.x = matchClip.x;
      currentClip.y = matchClip.y;
      //make it not draggable anymore:
      currentClip.removeEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
      currentClip.buttonMode = false;
    } else {
      //match was not made, so send the clip back where it started:
      currentClip.x = startX;
      currentClip.y = startY;

    Morning kglad, thanks for your help yesterday. I tried the code again and still have the same problems - you cant drop over another book and it nudges that book along aswell as the others to the right. Also if you drop a book back in its originally place - sometimes - it creates a gap next to it. The book still only seem happy in their original starting positions!
    Its very close, im continuing to try fiddle with it to get it working, have the whole of today to try and do this so the coffee is on!
    Ive taken some code out that I realise this morning I didnt't need - e.g the code that stops a book being dragged once you have positioned it (they need to be able to be repositioned more than once, and the code that sends a book back to its original position if you didnt reposition it over a target. If this was foolish please tell me! I have a feeling the latter was!
    so the code im trying to get working at the moment is:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    var dragArray:Array = [red, blue, green, purple, yellow];
    var matchArray:Array = [target1, target2, target3, target4, target5];
    var currentClip:MovieClip;
    var startX:Number;
    var startY:Number;
    for(var i:int = 0; i < dragArray.length; i++) {
    // REMOVED
    //dragArray[i].buttonMode = true;
    dragArray[i].addEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
    matchArray[i].alpha = 0.2;
    function item_onMouseDown(event:MouseEvent):void {
    currentClip = MovieClip(event.currentTarget);
    startX = currentClip.x;
    startY = currentClip.y;
    addChild(currentClip); //bring to the front
    currentClip.startDrag();
    stage.addEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    function stage_onMouseUp(event:MouseEvent):void {
    stage.removeEventListener(MouseEvent.MOUSE_UP, stage_onMouseUp);
    currentClip.stopDrag();
    var index:int = dragArray.indexOf(currentClip);
    var matchClip:MovieClip = MovieClip(matchArray[index]);
    if(matchClip.hitTestPoint(currentClip.x, currentClip.y, true)) {
      //a match was made against a target:
      currentClip.x = matchClip.x;
      currentClip.y = matchClip.y;
    //REMOVED
    //make it not draggable anymore:
      //currentClip.removeEventListener(MouseEvent.MOUSE_DOWN, item_onMouseDown);
      //currentClip.buttonMode = false;
    for(var i:int=dragArray.indexOf(currentClip)+1;i<dragArray.length;i++){
    dragArray[i].x+=currentClip.width;
      // REMOVED
      //else {
      //match was not made, so send the clip back where it started:
      //currentClip.x = startX;
      //currentClip.y = startY;

  • Help needed with Emagic AMT8/Unitor8 and Logic 9.01 Snow Leopard

    Hello
    I have a strange problem here... I have an AMT8 connected via USB to my Mac Pro (directly, not via an USB-Hub) and 2 Unitor8s (one connected to the AMT8 and one to the first Unitor8).
    I can see that the units communicate with each other, but when I open Logic Pro 9.0.1 there are only the first 8 Ports of the AMT8 available, the other 16 ports are greyed out). This happens using Snow Leopard. In Audio/Midi-Manager I can only see the AMT8 as well, although the unit name is AMT8/Unitor8).
    When I go back to my other OS (10.5.8 with Logic Pro 8 latest version) all three units are working and I can see them in the Audio/Midi-Manager.
    I reinstalled the AMT8-Drivers from the DVD (when I open the driver file it says V 2.2) but with no luck. So I know the units are working under 10.5.8 and Logic 8 but not under 10.6.1 with Logic 9.0.1.
    I tried what was described in another topic (http://discussions.apple.com/thread.jspa?messageID=10142376&#10142376) but it didn't change anything.
    Any ideas?
    Thank you for your help!

    Hi
    Thanks for the link. I tried it but with no luck.
    But at the moment it seems to work. I copied the EmagicUSBMIDIDriver.plugin from my previous 10.5.8 system to my new system and now it works which is strange because both drivers had the same file-size and date. Well, I'll see how stable it is...
    Thanks for your help!

  • Help needed with a KM4M-V and a Athlon XP 3000

    Hi
    i have just upgraded my PC and have fitted a KM4M-V motherboard and a Athlon xp 3000 cpu,the problem i have is it is only be recognised as a Athlon 1800 ,i have contacted the seller and he tells me i need to configure the FSB correctly to 10.5 X 200 ,i have gone into the bios and can change the Frequency clock to 200 but i cannot find the multiplier section so how do i change the multiplier ,if i reboot with the clock set at 200 the harddrive light stays on and nothing happens,I have set the jumpers on the motherboard to 166 mhz.
    The pc was a Emachine 400 so do i need to upgared any other bits,the heatsink is cooper and fan is a coolermaster aero 7.

    Hi
    I bought this Athlon 3000 xp on Ebay and the listing says
    Manufacturing process  0.13 micron copper process
    Package  453-pin organic PGA
    1.95" x 1.95" (4.95 cm x 4.95 cm)
    Socket  Socket A (Socket 462)
    Speed (MHz)  3000 (rated)
    2167 (real)
    Bus frequency (MHz)  166
    Clock multiplier  13
    Low power features  Halt state
    Stop Grant states
    Sleep state
    Probe state
    Other features  MMX technology
    SSE
    3DNow! Professional
    Level 1 cache size  64 KB code
    64 KB data
    Level 2 cache size  Full-speed exclusive on-die 512 KB
    Floating Point Unit  Integrated
    V core (V)  1.65
    Min/Max operating temperature (°C)  0 - 85
    Typical/Max power dissipation (W)  58.4 / 74.3
    The motherboard is a new board so there are no previous settings
     :wall:looking at the listing i think i have been told the wrong settings ,should it be 13 x 166 not 10.5 x 200 

  • Help needed with buggy Outlook 2013 and Exchange 2010 trashing profiles

    Hi All,
      I have a customer who has eschewed MOLP and buys all their Office OEM from Dell.  So as a result they are starting to have more and more office 2013 be deployed.  They have a SBS 2011 server with Exchange 2010 and it is patched to the latest
    rollups and service packs.  (SP3, RU2)  Their Outlook 2010 and earlier clients are just peachy on this.  But the Outlook 2013 clients are having problems.
      What is going on is that periodically I'll get a complaint from a user that their Outlook 2013 is randomly crashing.  In all cases the fix is going into the Outlook Profiles, creating a new profile, then setting the new profile as the default
    and going back into Outlook 2013 and letting it rebuild the cached data on the PC.  This seems to happen a few times a month with random users on the network.
      I told the customer it was probably people not logging out of Outlook 2013 at night and their machines being power spiked but I think that's highly unlikely since it doesen't happen to the Outlook 2010 clients.
      I don't know if any Microsoft developers read this but if you do, please take it back to your bug database.  Any other suggestions would be appreciated (other than scotch Outlook 2013 - while I'd appreciate that, my customer wouldn't)

    In all cases the fix is going into the Outlook Profiles, creating a new profile, then setting the new profile as the default and going back into Outlook 2013 and letting it rebuild the cached data on the PC. 
    The Outlook 2013 crash problem would be fix after you re-create a new profile and re-sync the data from Exchange, right?
    When we meet the same problem in next time, I suggest we run the Outlook Product Stability Diagnostic tool to isolate known causes of crashes in Outlook. The Outlook Product Stability Diagnostic also creates a diagnostic report outlining the data it collected
    and recommendations on possible steps you can take to reduce or eliminate Outlook stability issues.
    Please click the following link to run the Outlook Product Stability Diagnostic tool in the Microsoft Fix it Center Pro portal:
    Outlook Product Stability Diagnostic:
    https://wc.ficp.support.microsoft.com/SelfHelp?knowledgebaseArticleFilter=2764035
    Other troubleshoot steps for Outlook 2013, please refer to the link below.
    Let me know the result.
    http://support.microsoft.com/kb/2632425/en-us 
    Tony Chen
    TechNet Community Support

  • Help needed with a Nav Bar and PHP page.

    Hello, i'm designing a website
    http://www.ahcagency.com for
    wich i create a nav bar in FW and exported the html to DW and
    inserted in a template so that way i update all the pages from the
    template. Everything works fine, but i have a login page for a
    secure area inside the same website and on the
    http://www.ahcagency.com/login.php
    page i have the problem. The nav bar has 7 buttons, if i insert the
    first 3 buttons on the login.php page works very nice, but when i
    insert all the 7 buttons the login.php does not work at all. Also i
    insert the nav bar in all the php pages inside the secure area and
    all works fine, the probles is only in the login page.
    ANY ADVICE, I'M DOING SOMETHING WRONG?
    Also when i create the buttons i gave them the four stages,
    but only the 1st stage and the rollover work.
    what i want is if i click on the services page, the services
    button stay down while i'm on the services page.
    ANY HELP HERE?

    Hi
    I bought this Athlon 3000 xp on Ebay and the listing says
    Manufacturing process  0.13 micron copper process
    Package  453-pin organic PGA
    1.95" x 1.95" (4.95 cm x 4.95 cm)
    Socket  Socket A (Socket 462)
    Speed (MHz)  3000 (rated)
    2167 (real)
    Bus frequency (MHz)  166
    Clock multiplier  13
    Low power features  Halt state
    Stop Grant states
    Sleep state
    Probe state
    Other features  MMX technology
    SSE
    3DNow! Professional
    Level 1 cache size  64 KB code
    64 KB data
    Level 2 cache size  Full-speed exclusive on-die 512 KB
    Floating Point Unit  Integrated
    V core (V)  1.65
    Min/Max operating temperature (°C)  0 - 85
    Typical/Max power dissipation (W)  58.4 / 74.3
    The motherboard is a new board so there are no previous settings
     :wall:looking at the listing i think i have been told the wrong settings ,should it be 13 x 166 not 10.5 x 200 

  • Help needed with bindfs, bind mounts, and more

    Hi all!
    A long time ago before the security sandbox in OS X came about, I used to create symlinks to point my Document directories to subdirectories within my Dropbox/Google Drive store.
    Since that doesn't work now, talk on the street is to use bind mounts instead, and it mostly works for me except for Microsoft Office 2011.
    Somehow, when I try to save to a file via the bind mounted mount point, I always end up getting a "Cannot save or create this file" error like this:
    My mount point has the correct read and write permissions as well as ownership, so what else should I check?
    Advice from other Mac users who experienced it before greatly appreciated!

    In all cases the fix is going into the Outlook Profiles, creating a new profile, then setting the new profile as the default and going back into Outlook 2013 and letting it rebuild the cached data on the PC. 
    The Outlook 2013 crash problem would be fix after you re-create a new profile and re-sync the data from Exchange, right?
    When we meet the same problem in next time, I suggest we run the Outlook Product Stability Diagnostic tool to isolate known causes of crashes in Outlook. The Outlook Product Stability Diagnostic also creates a diagnostic report outlining the data it collected
    and recommendations on possible steps you can take to reduce or eliminate Outlook stability issues.
    Please click the following link to run the Outlook Product Stability Diagnostic tool in the Microsoft Fix it Center Pro portal:
    Outlook Product Stability Diagnostic:
    https://wc.ficp.support.microsoft.com/SelfHelp?knowledgebaseArticleFilter=2764035
    Other troubleshoot steps for Outlook 2013, please refer to the link below.
    Let me know the result.
    http://support.microsoft.com/kb/2632425/en-us 
    Tony Chen
    TechNet Community Support

  • Can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    Java is no longer included in Mac OS X by default. If you want Java, you will have to install it.
    However, note that you should think twice before installing Java for such a trivial need as looking at stock market quotes. There are other ways to get that information that don't involve Java, and using Java in your web browser is a HUGE security risk right now. Java has been vulnerable to attack almost constantly for the last year, and has become a very popular, frequently used method for getting malware installed via "drive-by downloads." You really, truly don't want to be using it. See:
    Java is vulnerable… Again?!
    http://java-0day.com

  • Troubleshoting help needed:  My iMac keeps crashing and restarting with a report detail: "spinlock application timed out"  What can I do to fix this?timed out"

    Troubleshooting help needed:  My iMac keeps crashing and restarting with a notice: "Spinlock application timed out"  What can I do?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the page that opens.
    Select the most recent panic log under System Diagnostic Reports. Post the contents — the text, please, not a screenshot. In the interest of privacy, I suggest you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header and body of the report, if it’s present (it may not be.) Please don't post shutdownStall, spin, or hang reports.

  • Help needed with header and upload onto business catalyst

    Can someone help with a problem over a header please?
    I have inserted a rectangle with a jpeg image in  background, in the 'header' section, underneath the menu. It comes up fine on most pages when previsualised, going right to the side of the screen, but stops just before the edge on certain pages. I have double checked that I have placed it in the right place in relation to the guides on the page.
    That's one problem.
    The second problem is that I tried to upload onto business catalyst, which got to 60% and refused to go any further, saying it couldn't find the header picture, giving the title and then u4833-3.fr.png. The picture is in the right folder I have double checked. And it isn't a png. Does it have to be ?
    And the third problem is that I got an email following my upload from business catalyst in Swedish. I am living in France.
    Can anyone help ? Thanks.

    Thanks for replying,
    How can I check the preview in other browsers before I publish a provisional site with BC?
    The rectangle width issue happens on certain pages but not others. The Welecom page is fine when the menu is active, also the contact page, but others are slightly too narrow. Changing the menu spacing doesn’t help - I was already on uniform but tried changing to regular and back.
    In design mode the rectangle is set to the edge of the browser, that’s 100%browser width right?
    Re BC I have about 200 images on 24 different pages and it seems to be having difficulty uploading some of them. But it has managed a couple I named with spaces but not others I named with just one name.
    Is there an issue on size of pictures ? If I need to replace is there a quick way to rename and relink or do I have to insert the photos all over again?
    I’m a novice with Muse with an ambitious site !
    Thanks for your help.
    Mary Featherstone
    Envoyé depuis Courrier Windows
    De : Sanjit_Das
    Envoyé : vendredi 14 février 2014 22:15
    À : MFeatherstone
    Re: Help needed with header and upload onto business catalyst
    created by Sanjit_Das in Help with using Adobe Muse CC - View the full discussion 
    Hi
    Answering the questions :
    - Have you checked the preview in Muse and also in other browsers ?
    - Does the rectangle width issue happens when menu is active , or in any specific state , Try to change the menu with uniform spacing and then check.
    - In design view the rectangle is set to 100% browser width ?
    With publishing :
    - Please try to rename the image file and then relink
    - If it happens with other images as well , see if all the image names includes strange characters or spaces.
    - Try again to publish
    With e-mail from BC :
    - Under preferences , please check the country selected.
    - If you have previously created partner account in BC and selected country and language then it would follow that, please check that.
    Thanks,
    Sanjit
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6121942#6121942
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6121942#6121942
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6121942#6121942. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Help with using Adobe Muse CC at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for

  • Airplay can't be found on Ipad 2

    I have resettled it many times, Bluetooth is on connected to wifi i'm unsure to why I can't find it,

  • Problem With Distribuction Of Acrobat Reader 9.0 (GPO)

    We have some problems with the distribution trought GPO of reader 9.0. We had follow this instruction http://www.adobe.com/devnet/acrobat/pdfs/deploying_reader9.pdf http://www.adobe.com/devnet/acrobat/pdfs/gpo_ad_9.pdf but, if the english version wor

  • How do i match a color exactly from an .eps file?

    How do I match a color in pages exactly from a jpg or eps file?

  • Upload control in Visual Composer

    Hi guys, We here are wondering whether an upload control is something that's needed or not. We are considering implementing this for EhP2. Can you please comment on this? Do you find such control helpful? Thanks, Natty

  • Only one website will not load.

    There is one specific website that will not load for me. It will not load on IE, Chrome or Firefox. But it works on any browser on my phone or on my families laptops. The website loads a blank white screen and when I view the source code there is not