Problems with glossary with static merging

Hello!
I'm merging two helpsets statically. Nearly everything works just fine, even the full text search. The thing that won't work actually is the glossary.
This is my dataless master helpset.
<?xml version='1.0' encoding='ISO-8859-1' ?>
<!DOCTYPE helpset
  PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 2.0//EN"
         "http://java.sun.com/products/javahelp/helpset_2_0.dtd">
<helpset version="2.0">
<!-- title -->
<title>ADITO online</title>
<!-- maps -->
<maps>
    <homeID>top</homeID>
    <mapref location="mapmerged.jhm" />
</maps>
<!-- views -->
<view mergetype="javax.help.UniteAppendMerge">
    <name>TOC</name>
    <label>Table Of Contents</label>
    <type>javax.help.TOCView</type>
</view>
<view mergetype="javax.help.SortMerge">
    <name>Index</name>
    <label>Index</label>
    <type>javax.help.IndexView</type>
</view>
<view mergetype="javax.help.AppendMerge">
    <name>glossary</name>
    <label>Glossary</label>
    <type>javax.help.GlossaryView</type>
</view>
<view mergetype="javax.help.SortMerge">
    <name>Search</name>
    <label>Search</label>
    <type>javax.help.SearchView</type>
</view>
<subhelpset location="../Client_Helpset/aditoonline_client.hs">
<subhelpset location="../Designer_Helpset/aditoonline_designer.hs">
</helpset>And these are the glossary view tags of the two other helpsets:
<view>
    <name>glossary</name>
    <label>Glossary</label>
    <type>javax.help.GlossaryView</type>
    <data>aditoonline_clientGlossary.xml</data>
</view>
<view>
    <name>glossary</name>
    <label>Glossary</label>
    <type>javax.help.GlossaryView</type>
    <data>aditoonline_designerglossary.xml</data>
</view>Everything looks pretty good to me!
Does anyone see what's wrong with it?
Thanks in advance!
Regards,
Guinevere

Hai,
I am having exactly the same problem.
Only difference is that I am using Sort Merge instead of Append Merge.
Did you find any solution to this problem?
If so can you please help me out.
Thanks,
Neha.

Similar Messages

  • Search not working with static merge

    I last used JavaHelp about 2 years ago, but have just picked it up again. I think the JavaHelp team at Sun have done a good job with version 2.0.
    I am doing a static merge on three small help sets.
    The search works fine on each help set individually, but when I do the merge and try a search from the JavaHelp Viewer only results from the first (master) help set are returned.
    I am using JavaHelp 2.0 and JSDK 1.3.1_06.
    I have used jhindexer on each help set.
    The following code is the same in all three HelpSet.hs files:
    <view mergetype="javax.help.SortMerge">
    <name>Search</name>
    <label>Search</label>
    <type>javax.help.SearchView</type>
    <data engine="com.sun.java.help.search.DefaultSearchEngine">HelpSet_JavaHelpSearch</data>
    <image>Orange_Nav_Search</image>
    </view>
    Can anyone help?
    Tom F

    Hi, I had the same problem recently and fixed it by upgrading to javahelp 2.0_01. Here's the link to the new JavaDesktop forums where I was helped:
    http://www.javadesktop.org/forums/thread.jspa?threadID=496&messageID=3103#3103
    Hope this takes care of it!
    Luke

  • Button in Bex Analyser 7.0 - problem with setting up Static Parameters

    Hello,
    I know a similar problem has been discussed here already, but I am still having problems with setting up Static Parameters of my Button in BEx Analyser 7.0, so that I can pass Variable values from that button to my query.
    This is what I do - in Static Parameters of my Button I set the following values:
    Name                          Index          Value
    DATA_PROVIDER        0               DP_1
    CMD                             0               PROCESS_VARIABLES
    SUBCMD                      0               VAR_SUBMIT
    VAR_NAME                 0               0RMA_FIP
    VAR_VALUE               0               004/2010
    As a result, I would like the value 004/2010 to be passed to variable 0RMA_FIP (which is mandatory) and the query to be executed with that value. For some reason, however, the value is not passed correctly, and instead the variable is filled with a blank or not filled at all, and I am getting a message "Specifiy value for variable Fiscal year/period". What do I do wrong?
    Just to give you a broader picture - I would like to later use this logic to pass more than one variables into a query, including a hierarchy node, and read the values from an Excel worksheet - however, after many attempts to do so, I started playing with just one variable to figure out what the problem was.
    I have already seen the following two threads and SAP notes on passing variable values from the button:
    Re: Button in BEx Analyzer 7.0
    Re: How to set variables values via VBA.
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0881371-78a1-2910-f0b8-af3e184929be?quicklink=index&overridelayout=true
    Can anyone please advise?
    Cheers,
    AL

    I managed to figure it out myself!
    Instead of VAR_VALUE I need to enter VAR_VALUE_EXT, and it works fine.
    I will mark this thread as "answered".

  • Not getting synchronization with audion , vedio when merging

    Hi ,
    Nice to see your reply.First of thanks for it.
    Yes Now I am dumping the captured frames directly to .mov file .
    In that process I am doing compression using compressJPEG techinique [ORI] Image I/O in Java Advanced Imaging concept .
    When Cpatured image byte array size after compression = 226956 ( using Image I/O)
                                       = 753974 ( using compressJPEG)
    The following snippet shows how I am updating Buffer with my frames ( in a
         class PlayerSourceStream implements PullBufferStream ).
         recordArea = my screen size ( 0,0,1284,1024);
         Here I am using below mentioned format for Buffer object
         VideoFormatformat = new VideoFormat(VideoFormat.JPEG,
         new Dimension(recordArea.width, recordArea.height),Format.NOT_SPECIFIED,Format.byteArray,(float) frameRate);
    public void read(Buffer buffer) throws IOException
                   long lastFrameTime=0;
                   long time = 0;
                   if (!GlobalStorage.isRecodring() && !GlobalStorage.getPauseState())
                        start = System.currentTimeMillis();     
                        //We are done. Set EndOfMedia.
                        listener.recordingStopped();
                        System.out.println("Done reading all images.");
                        buffer.setEOM(true);
                        buffer.setOffset(0);
                        buffer.setLength(0);
                        buffer.setFormat(format);
                        ended = true;                         
                        return;
                   else
                        byte[] data = null;
                        if (!GlobalStorage.getPauseState())
                             System.out.print(". recordArea: "+recordArea);
                             try
                                  Thread.sleep(200);
                             catch(Exception e)
                             /*time = System.currentTimeMillis();
                             while(time-lastFrameTime < 200)
                                  try
                                       Thread.sleep(50);
                                  catch(Exception e)
                                  time = System.currentTimeMillis();     
                             lastFrameTime = time;
                             BufferedImage bImage = captureScreen(recordArea);
                             //data = ImageKit.toByteArray(bImage, 0.5f);
                             Image capImage = bImage.getScaledInstance(recordArea.width, recordArea.height, bImage.SCALE_DEFAULT);
                             //data = CompressImagePNG(capImage);
                             data = CompressImageJPG(capImage);                         
                             System.out.println("==> CompressImageJPG : "+data.length);
                             //System.out.println("==> CompressImagePNG : "+data.length);
                             //System.out.println("==> ImageKit.toByteArray CompressImage : "+data.length);
                             //data = getCompressByte(capImage);
                             listener.frameRecorded(false);
                             nextImage++;
                   //System.out.println("==========> nextImage :" + nextImage);
                        buffer.setData(data);
                        buffer.setOffset(0);
                        if (data == null)
                             buffer.setLength(0);
                        else
                             buffer.setLength(data.length);
                        buffer.setFormat(format);
                        buffer.setFlags(buffer.getFlags() | Buffer.FLAG_KEY_FRAME);
    Mean while I am recording Audio with following snippet.
    AudioFormat audioFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, //     the audio encoding technique
                        22050.0F,// sampleRate          the number of samples per second
                        16, // sampleSizeInBits the number of bits in each sample
                        2, // channels          the number of channels (1 for mono, 2 for stereo, and so on)
                        4, // frameSize          the number of bytes in each frame
                        22050.0F,// frameRate     the number of frames per second
                        false); // bigEndian     indicates whether the data for a single sample is stored in big-endian byte order (<code>false</code> means little-endian)
    AudioSystem.write(m_audioInputStream,m_targetType,m_outputFile); ( it is in a separate run() of a Thread )
    Here I am not applying any compressing technnique in Audio file creation.
    To merge these two I ma using Merge.java which is mentioned in below link
    http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Merge.html
    Here I am getting 3 problems
    1.Final out file merge.mov file size is getting more.
    Example : = 2 min Recording = 80MB
    2.More over I am not getting synronization in merge.mov file with audio, video.
    Video is completing before Slider reaches to end point when I play the movie.
    Need clarifications:
    1) Should I Compress the Audio also ?
    2) Which VideoFormat is better to in creation .mov file.
    x.WAV (only audio), y.MOV (only video) = > z.MOV ( merge.mov)
    I will be appriciate if i get any information need ful inofrmation.
    I dig the google almost I visted all related links and forum questions.
    Please try to help with code.

    Hi Thanks for reply .................if you want code what I am using to create .mov file ( by captured images) (which is input file to Merge)
    Just see here once... Please try it once on different resolutions .......if possible try to reply with resolution code.
    Please its very needful to me......please send ASAP. One more thing I want to mention is " app is target platform is MAC and UBUNTU"
    Please modify some code to execute .....hope you can execute it.
    Here I mentioned the main core logic to capture the screen :
    Here recordArea rect = > public static Rectangle recordArea = new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
    class PlayerSourceStream implements PullBufferStream
              float frameRate;
              VideoFormat format;
              //BufferedImage image;
              int nextImage = 0; // index of the next image to be read.
              boolean ended = false;     
              public PlayerSourceStream() throws IOException
                   frameRate = 2.1f; //1280 * 1024               
                   //frameRate = 4f; //1024 * 768
                   format = new VideoFormat(VideoFormat.JPEG,
                             new Dimension(recordArea.width, recordArea.height),Format.NOT_SPECIFIED,Format.byteArray,(float) frameRate);          
              public boolean willReadBlock()
                   return false;
              public void read(Buffer buffer) throws IOException
                   System.out.println("==> GlobalStorage.isRecodring() :"+GlobalStorage.isRecodring());
                   System.out.println("==> GlobalStorage.getPauseState() :"+GlobalStorage.getPauseState());
                   if (nextImage>0 && !GlobalStorage.isRecodring() && !GlobalStorage.getPauseState())
                        start = System.currentTimeMillis();     
                        //We are done. Set EndOfMedia.
                        listener.recordingStopped();
                        System.out.println("Done reading all images.");
                        //logger.debug("Done reading all images.");
                        buffer.setEOM(true);
                        buffer.setOffset(0);
                        buffer.setLength(0);
                        buffer.setFormat(format);
                        ended = true;                    
                        return;
                   else
                        byte[] data = null;
                        if (nextImage < 1 || !GlobalStorage.getPauseState())
                             System.out.print(".");
                             try
                                  Thread.sleep(140);
                                  //Thread.sleep(200);
                             catch(Exception e)
                             BufferedImage bImage = captureScreen(recordArea);
                             data = ImageKit.toByteArray(bImage, 0.5f);
                             //Image capImage = bImage.getScaledInstance(recordArea.width, recordArea.height, bImage.SCALE_DEFAULT);                                                  
                             //System.out.println("==> CompressImageJPG : "+data.length);     
                             //logger.debug("==> ImageKit.toByteArray CompressImage : " + data.length);
                             System.out.println("==> ImageKit.toByteArray CompressImage : " + data.length);
                             listener.frameRecorded(false);
                             nextImage++;
                             /*buffer.setData(data);
                             buffer.setOffset(0);
                             buffer.setLength(data.length);
                             buffer.setFormat(format);
                             buffer.setFlags(buffer.getFlags() | Buffer.FLAG_KEY_FRAME);*/
                        buffer.setData(data);
                        buffer.setOffset(0);
                        if (data == null)
                             buffer.setLength(0);
                        else
                             buffer.setLength(data.length);
                        buffer.setFormat(format);
                        buffer.setFlags(buffer.getFlags() | Buffer.FLAG_KEY_FRAME);
              * Return the format of each video frame. That will be JPEG.
              public Format getFormat()
                   return format;
              public ContentDescriptor getContentDescriptor()
                   return new ContentDescriptor(ContentDescriptor.RAW);
              public long getContentLength()
                   return 0;
              public boolean endOfStream()
                   return ended;
              public Object[] getControls()
                   return new Object[0];
              public Object getControl(String type)
                   return null;
         }

  • Problem in connecting with Oracle

    hi everybody
    I have a problem in connecting with Oracle express 10g. I got an error that doesn't allow me to connect. hope anyone can help me and solve this problem
    --------------------Configuration: test - JDK version 1.6.0_20 <Default> - <Default>--------------------
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:414)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:185)
    at DB.dbConnect(test.java:36)
    at test.main(test.java:18)
    this is the code that I'm following
    import java.io.*; import java.sql.*; public class test2 {   public static void main(String[] args) {     try {       Connection con=null;       Class.forName("oracle.jdbc.driver.OracleDriver");       con=DriverManager.getConnection(         "jdbc:oracle:thin:@PLANET:1521:ORCL",         "scott",         "tiger");       Statement s=con.createStatement();       s.execute("INSERT INTO BOOKS VALUES('A Tale of Two Cities','William Shakespeare',4567891231,'05-JAN-1962')");             s.close();       con.close();   } catch(Exception e){e.printStackTrace();} } }
    Edited by: Vantasia on Nov 12, 2010 10:18 AM

    1. Is the connection url correct?
    "jdbc:oracle:thin:@PLANET:1521:ORCL" is fine.
    2. Is the TNS listener started?
    c:\oracle\product\ora10\bin> lsnrctl status
    3. Is a firewall between client and database server?
    Connection url with firewall would be different.
    http://download.oracle.com/docs/cd/B28359_01/java.111/b31224/jdbcthin.htm#i1004276

  • Problem in connection with sql server

    hi ,
    i am facing problem in connection with ms sql server..please help me out.... i created the database ChandanClient...and there is one table Expense_code_Table...
    i want to insert the data into this table.. i am trying to create a demo example.. here is the code
    package demo;
    import java.sql.*;
    public class getdatabase {
         public static void main(String[] args) {
              Connection con =null;
              int ExpenceCode1=1;
         String ExpenceName1="exp_paper";
         String Organization1="exp_organization";
              try
                   Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
                   con=DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433");
                   Statement st = con.createStatement();
                   String q1="INSERT INTO Expense_code_Table(ExpenceCode,ExpenceName,Organization)VALUES("+ExpenceCode1+",'"+ExpenceName1+"','"+Organization1+"')";
         st.execute(q1);
              }catch(Exception e)
                   System.out.println(e);
              try
                   con.close();
              catch (SQLException e)
                   e.printStackTrace();
    after running program
    it is showing me...
    java.lang.ClassNotFoundException: com.microsoft.jdbc.sqlserver.SQLServerDriver
    java.lang.NullPointerException
         at demo.getdatabase.main(getdatabase.java:22)
    Exception in thread "main"
    please help me out how to solve this problem...
    thanks in advance...
    bye
    chandan sharma

    Put ur driver class files in the class path...
    regards
    Shanu

  • Problem using Toplink with JUnit

    Hi,
    I have a problem using Toplink with JUnit. Method under test is very simple: it use a static EntityManager object to open a transaction and persists data to db. When I invoke the method from a test method, it gives me the exception:
    java.lang.AssertionError
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.computePURootURL(PersistenceUnitProcessor.java:248)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:232)
         at oracle.toplink.essentials.ejb.cmp3.persistence.PersistenceUnitProcessor.findPersistenceArchives(PersistenceUnitProcessor.java:216)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initialize(JavaSECMPInitializer.java:239)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.initializeFromMain(JavaSECMPInitializer.java:278)
         at oracle.toplink.essentials.internal.ejb.cmp3.JavaSECMPInitializer.getJavaSECMPInitializer(JavaSECMPInitializer.java:81)
         at oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider.createEntityManagerFactory(EntityManagerFactoryProvider.java:119)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:83)
         at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:60)
         at it.valerio.electromanager.model.EntityFacade.<clinit>(EntityFacade.java:12)
         at it.valerio.electromanager.business.ClienteBiz.insertIntoDatabase(ClienteBiz.java:36)
         at it.valerio.electromanager.test.model.ClienteTest.insertDBTest(ClienteTest.java:30)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.junit.internal.runners.TestMethodRunner.executeMethodBody(TestMethodRunner.java:99)
         at org.junit.internal.runners.TestMethodRunner.runUnprotected(TestMethodRunner.java:81)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
         at org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
         at org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:66)
         at org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
         at org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
         at org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
         at org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
         at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
         at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
    Where is the problem???
    Regards,
    Valerio

    EntityFacade class is very simple and it uses a static EntityManager object. Here the code:
    public class EntityFacade {
         private static EntityManager em = Persistence.createEntityManagerFactory("ElectroManager").createEntityManager();
         private static Logger logger=Logger.getLogger(EntityFacade.class);
         public static void insertCliente(Cliente c)
              logger.debug("Inserisco cliente nel db: " + c);
              em.getTransaction().begin();
              c.setId(getNextIdForTable("Cliente"));
              em.persist(c);
              em.getTransaction().commit();
    If I call the method from inside a main it works well, so I think the problem is not the classpath neither the URL in the persistence.xml. However the URL is:
    <property name="toplink.jdbc.url" value="jdbc:derby:c:/programmi/ElectroManager/db/electroManager"/>
    I use the latest build version of TopLink.
    Thanks.

  • I just want to reinstall windows 7. will i face any problem while syncing with new itunes, i just want to reinstall windows 7. will i face any problem while syncing with new itunes???

    i just want to reinstall windows 7. will i face any problem while syncing with new itunes, i just want to reinstall windows 7. will i face any problem while syncing with new itunes???

    Syncing to a new iTunes library or computer will erase your iPhone. Only if you back up your phone 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 iPhone 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: http://support.apple.com/kb/HT4946
    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
    You can also back up iTunes and restore it on your new computer How to back up your media in iTunes ,but the iPhone will be erased anyway during the first sync.

  • The problem I have since I upgraded to Mavericks version 10.9.1 The problem appears only with Mail not with other programs, not even with my browser. When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command   to e

    the problem I have since I upgraded to Mavericks version 10.9.1
    The problem appears only with Mail not with other programs, not even with my browser.
    When I try to zoom the text of an e-mail I received or sent , I can no longer use the keys Command + to enlarge the text, although I can reduce it with Command -.
    As I have a problem with my eyes, This is a serious matter for me.
    When I write an e-mail, if I select text and press Command +, it just displaces the text to the right.
    Now, my husband has a USB keyboard. If he connects it to my computer, his regular Command + does not work either, but  he uses the extended keyboard, then it works. Unfortunately, he needs it for a musical application which does not work with a wireless keyboard.

    Firefox 3.6.4 and 3.6.6 use a process called, "plugin-container.exe" which was using up most of my CPU when I opened up multiple tabs that contained Adobe Flash files, and caused Firefox to lock up.
    My solution was to use Firefox 3.5.10 which you can get from the Mozilla website at [http://www.mozilla.com/en-US/firefox/all-older.html]
    I am using Adobe Flash 10.1.53.64 without any problem in this version of Firefox. Check the release notes, I believe it contains all the latest security fixes in "Firefox 3.6.4".
    Hopefully, they will fix Firefox 3.6 in the next version (e.g. Firefox 3.6.7), until then you should probably use "Firefox 3.5.10".

  • I have an alert message in disc utility. Error: storage system verify or repair failed. Problems were found with the partitian map which might prevent booting.

    While running verify disc in disc utility on 251 GB SSD SM256c Media I came up with this message: Alert system verify or repair failed. In the descriptions box of history it said, problems were found with the partitions map which might prevent booting. This is followed by a message in red reading, Error: Storage system verify or repair failed. At the time I was down loading raw pictures off my camera through a card reader across my computer to a relatively new 2TB Western Digital portable hard drive. after about 13 to 15 pictures downloaded that drive faileded. My Mac Book Air works fine, but i get this message now everytime I run disc verify on this disc. The Macintosh HD checks out fine.

    While running verify disc in disc utility on 251 GB SSD SM256c Media I came up with this message: Alert system verify or repair failed. In the descriptions box of history it said, problems were found with the partitions map which might prevent booting. This is followed by a message in red reading, Error: Storage system verify or repair failed. At the time I was down loading raw pictures off my camera through a card reader across my computer to a relatively new 2TB Western Digital portable hard drive. after about 13 to 15 pictures downloaded that drive faileded. My Mac Book Air works fine, but i get this message now everytime I run disc verify on this disc. The Macintosh HD checks out fine.

  • Hi! I can't upgrade my iTunes 10.3.1.55 on my Windows XP 2002 SP3 to the latest version of iTunes. Got the message: "A problem has occured with the Windows Installer-package. A program needed for this installation could not be run." What to do?

    Hi! I can't upgrade my iTunes 10.3.1.55 on my Windows XP 2002 SP3 to the latest version of iTunes. Got the message: "A problem has occured with the Windows Installer-package. A program needed for this installation could not be run." What to do?

    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • Why does my iPhone 4 not charge correctly?  Problem is definitely with the phone and not charges or chords.  Phone will charge but very slowly and no icon comes on.  Computer and iTunes doesn't recognize it a being connected.

    My iPhone 4 quit charging correctly.  It does charge but very slowly and icon doesn't indicate it as charging.  I've checked cables and charges and the problem is definetily with the phone.  My car stereo no longer recognizes it as a device.  Neither does the computer.  The real strange thing to me is that when I plug it into my old klispch speaker dock it will play songs.  My battery life is good when it is charged so I don't think its the battery. I've tried resetting the phone and cleaning the charging port.  I'm out of warranty.
    Would disconnecting the battery possibly reset it from some glitch or is the charging port got some bad contacts?

    I checked with the Genius Bar.  It was a new dilema to the lady that was helping me.  She took it to a back room and worked on it but it came out the same.  She gave me some options for repair or credit for replacement.
    I just kept the phone and put up with slowly charging it by plugging it in and then turning it off.
    I couldn't transfer anything from itunes.
    I finally got fed up and bought a new charging port for $10. and a toolkit for $3.  I looked up a video on youTube for the replacement and did it.
    That solved all the problems, it was the charging port, must have been some bad pins or something because it patially worked.

  • Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Edit

    Having installed an upgrade for Photoshop Elements 13, I cannot open the application. I get an error message saying "Adobe Photoshop Elements Editor cannot be opened because of a problem. Check with the developer to make sure Adobe Photoshop Elements Editor works with this version of OS X. You may need to reinstall the application. Be sure to install any available updates for the application and OS X".
    I have since uninstalled and reinstalled the app, but get the same error message.

    Which version of OS X do you have? It's not clear from your post whether "installed an upgrade" means you just installed PSE 13 as an upgrade or you installed an update to PSE 13, like ACR 9 or 13.1. Please clarify.

  • Problem when syncing with MobileMe

    I am using iPhone 3G, software 2.1. I use GMail for email (no problems) but my contacts, and only my contacts, sync through MobileMe.
    The problem is that with MobileMe active, my Contact list, "Mail, Contacts and Calendars" settings and several other minor features simply do not work - they open, pause for a few seconds, then crash. The Mail application also hangs and crashes every other time I open it.
    My local Apple Store restored 2.1, after which my Contact list and Email worked perfectly until I re-activated my MobileMe syncing, after which the problems resumed.
    As the problems occurred only after MobileMe syncing is turned on, I assume this is the cause of the problem, but because "Mail, Contacts..." settings crashes every time I open it I cannot disable MobileMe syncing.
    Any suggestions please? All help gratefully received...

    This was resolved by completely removing the MobileMe account from the iPhone, rebooting it and adding the account again.

  • Problems sending emails with iPhone 3G and outlook exchange

    I have a problem sending email with exchange. Receiving and answering mail works fine and calender updates work fine. However when I initiate an email from the phone it syncs and ends up in the sent folder in the computer but never reaches the recipient. I have tried this many times with different recipients and phones. It only happens from my iphone and ipad. Any suggestions?
    Any help much appreciated

    The iPhone you returned is still syncing against your server and locking out your account. Someone possibly has access to your mail data. I'd recommend having your Exchange Administrator install the Microsoft Exchange Server ActiveSync Web Administration Tool (http://www.microsoft.com/downloads/details.aspx?FamilyID=E6851D23-D145-4DBF-A2CC -E0B4C6301453&displaylang=en) and attempt to wipe/delete/block that other iPhone.
    Message was edited by: ethanm

Maybe you are looking for