Need Help with Scrolling Problem

I have a JTree displayed in scrollpane. Based on search criterial I select the nodes where the search criteria is found. If the match is located off the screen further down into the tree, the node is highlighted but the scrollpane doesn't automatically scroll down to show it. Any help with this problem is appreciated.

Wow.. Thanks. I thought I would need some fancy code to handle this problem. scrollPathToVisible did it for me. Thanks.

Similar Messages

  • Need help with daq problem

    Hi,
    I need to generate a clock with a period of 20 micro seconds, duty cycle of
    approx 20% and a data line as well as an address line all linked to the clock
    pulse.
    I have tried many different solutions, all using the Daq PCI-1200 but nothing
    seems to work correctly. Usually the system bombs and I have to do a manual
    reset to over come the problem.
    Any suggestions?
    Ken

    Hallo, Ken,
    Du meintest am 20.02.00 zum Thema Need help with daq problem:
    > I need to generate a clock with a period of 20 micro seconds, duty
    > cycle of approx 20% and a data line as well as an address line all
    > linked to the clock pulse.
    You'll need an external clock, expecially under Windows.
    Windows ticks with appr. 18 Hz, and the CPU tick isn't always available
    when Windows tasks multi.
    Viele Gruesse!
    Helmut

  • Hi, I need help with scrolling

    Hello I am Kevin Jin, I am working a huge project acually not that big, but I need help with five things, i mihgt have more things in my mind but here it is
    1. I need help with scrolling like where you have buttons for example or press on a navigation bar tab, then it goes to that specific pace of the page, for a one page website, for example some sites you press on contacts and gose down to the bottom of the page where the contacts place is located, not opening a new link.
    2.Second also I need help with navigation bar, where it fallows the scroll as it gose down, like for example when it is html the object is fixed to the top, and when you scroll down it will fallow it it,
    3.I need Parallex scrolling where you can have the timeline or animations run while you scroll in the meantime and have animation running all the time, for example the infographic site where the bees are fluying but still have seperate animations while you scroll
    4.I am so sorry i have two more to go, i appreciate your help, I would also like to ask if like looping each animations sperately, not looping the whole timeline, can it be possible to loop an animation while you have all the interactivity witht he site like looping seperately all the time, without interfeering with all the other animation
    5.I also are wondering if you can create multiple pages on one animate project, like multiple pages with html
    I just moved on to edge animate from html, and html was also beirf learn for me and mostly i was doing design work, and i thought getting out of graphic river and moving on the theme forest would be a better idea for me, thank you guys so much of the help and add me on skype : kevin2019170 or add me on facebook ; [email protected] or graphicriver, www.graphicriver.net/user/phantomore I would appriciate if you just would like contact me through SNS since I have that in hany 24 hours long, but the thred will also do, thank you doo much foryour help,
    P.S, I want also all the five things to work on one aimate project not interfeering with other ideas liek all five questions i had should run on one site,
    THANK YOU SO MUCH FOR YOUR HELP AND I APPRICIATE YOUR HELP!

    1.
    write this code in your button Click
    $('html,body').animate({scrollTop: sym.$("Your Symbole Name Here").offset().top}, "slow"); // scroll to the top of that symbol name
    Or :
    $('html,body').animate({"scrollTop":"600px"}, 750); // Higher value means slower , scroll to top page
    1 and 2 see this post http://forums.adobe.com/message/5531344#5531344
    3 use edge commons plugin http://www.edgedocks.com/edgecommons
    4.just put the animations behind eachother so when 1 is done, start with the animating the other symbol/div
    5. i thin its best just to make for every page a new project or make the site in muse.

  • Need help with getResource() problem under weblogic 6.1

    Hey all,
              I've got a serious problem that I can't figure out. This should be really
              simple - but it's alluding me. I have an ear file with a number of servlets
              inside it. This ear file also contains a resource that my servlets want to
              read from. This resource is located (within the ear file) at:
              "/content/structure/a.txt". The file contains raw ascii.
              To have my serlvet read from this file, I thought it would be as simple as:
              URL content =
              servlet.getServletContext().getResource("/content/structure/a.txt");
              // pw is an instance of PrintWriter
              pw.print(content.getContent());
              However, when I execute the above I get the following exception:
              java.lang.NullPointerException
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              at java.net.URLConnection.getContentHandler(URLConnection.java:979)
              at java.net.URLConnection.getContent(URLConnection.java:581)
              OK, so fine - I figure that I'm new to this. The documentation for the URL
              class tells me there is another way around this. It says that rather then
              calling getContent() directly, I can open a stream on the URL and read from
              that, like so:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              FileInputStream fis = content.openStream();
              but when I do this I get the following different exception:
              java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              Apparently this thing is trying to return a web-logic-specific stream (which
              is incompatible with an FileInputStream) - which I don't want to use or
              learn about since I want my stuff to work under other webservers.
              Can anyone tell me what I'm doing wrong? This should be simple.
              -john
              John Hilgedick
              WisdomTools, Inc.
              [email protected]
              

    Wenjin,
              I appreciate your response. I tried treating it as a normal InputStream -
              but it didn't make any difference. Here's what I did:
              URL content =
              servlet.getServletContext().getResource("/content/structure/scenario2resourc
              es.txt");
              InputStream is = (InputStream)content.getContent();
              And here's the exception:
              java.lang.NullPointerException^M
              at
              java.net.URLConnection.stripOffParameters(URLConnection.java:1011)^M
              at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)^M
              at java.net.URLConnection.getContent(URLConnection.java:554)^M
              at java.net.URL.getContent(URL.java:807)^M
              at Utility.writeFileToOutput(Utility.java:134)^M
              You can see that it is definitely breaking somewhere in getContent().
              If you have any other ideas, I'd appreciate hearing about them.
              -john
              ----- Original Message -----
              From: "Wenjin Zhang" <[email protected]>
              Newsgroups: weblogic.developer.interest.servlet
              Sent: Wednesday, November 20, 2002 5:03 PM
              Subject: Re: Need help with getResource() problem under weblogic 6.1
              >
              > The "/" in getServletContext().getResource("/content/structure/a.txt")
              means the
              > web (WAR) application root, not your EAR root.
              >
              > The ClassCastException is because that content.openStream() is not
              FileInputStream
              > and has nothing to do with Weblogic. You should treat it as normal
              InputStream.
              >
              >
              > "John Hilgedick" <[email protected]> wrote:
              > >Hey all,
              > >
              > >I've got a serious problem that I can't figure out. This should be
              really
              > >simple - but it's alluding me. I have an ear file with a number of
              servlets
              > >inside it. This ear file also contains a resource that my servlets want
              > >to
              > >read from. This resource is located (within the ear file) at:
              > >"/content/structure/a.txt". The file contains raw ascii.
              > >
              > >To have my serlvet read from this file, I thought it would be as simple
              > >as:
              > >
              > >URL content =
              > >servlet.getServletContext().getResource("/content/structure/a.txt");
              > >// pw is an instance of PrintWriter
              > >pw.print(content.getContent());
              > >
              > >However, when I execute the above I get the following exception:
              > >
              > >java.lang.NullPointerException
              > > at
              > >java.net.URLConnection.stripOffParameters(URLConnection.java:1011)
              > > at
              java.net.URLConnection.getContentHandler(URLConnection.java:979)
              > > at java.net.URLConnection.getContent(URLConnection.java:581)
              > >
              > >OK, so fine - I figure that I'm new to this. The documentation for the
              > >URL
              > >class tells me there is another way around this. It says that rather
              > >then
              > >calling getContent() directly, I can open a stream on the URL and read
              > >from
              > >that, like so:
              > >
              > >URL content =
              >
              >servlet.getServletContext().getResource("/content/structure/scenario2resour
              c
              > >es.txt");
              > >FileInputStream fis = content.openStream();
              > >
              > >but when I do this I get the following different exception:
              > >
              > >java.lang.ClassCastException: weblogic.utils.zip.SafeZipFileInputStream^M
              > > at Utility.writeFileToOutput(Utility.java:134)^M
              > >
              > >Apparently this thing is trying to return a web-logic-specific stream
              > >(which
              > >is incompatible with an FileInputStream) - which I don't want to use
              > >or
              > >learn about since I want my stuff to work under other webservers.
              > >
              > >Can anyone tell me what I'm doing wrong? This should be simple.
              > >
              > >-john
              > >
              > >
              > >--
              > >John Hilgedick
              > >WisdomTools, Inc.
              > >[email protected]
              > >
              > >
              >
              

  • Need help with a problem after cloning my HD....

    I recently cloned my HD to a backup drive. I did an erase and install of Tiger on my original drive. I recently cloned everything back onto my original drive from my backup drive. Now when I go to boot up on my original drive, for the first time ever I must type a Username and Password to log on to the computer. Trouble with this is, I tried my username and password and it would not work. I double, triple, quadruple checked my spelling and tried different combinations just in case i was being stupid, NOPE. It won't let me log on to my main HD. Can anyone help with this?

    Let me get this straight. You did
    1: Cloned your original boot drive to a external - not a problem
    (did you boot from the clone to check it out?, did you use cloning software or???)
    2: You erased your original boot drive - ok no problem.
    3: You then installed Tiger on your original boot drive - ok no problem there
    4: But you cloned from your clone back onto your original, freshly installed Tiger drive?
    Why did you do this?
    Cloning copies the whole drive, all the little hidden stuff, copy protection etc.
    That's why it's called a clone.
    Did you mean to say you copied certain folders/files from the clone onto the new Tiger install on your original boot drive?
    What folders/files was these?
    You need to copy the contents of certain folders inside your User folder, not the folders themselves.
    What software did you use to clone with?
    Read my detailed instructions here
    http://homepage.mac.com/hogfish/Personal6.html
    http://homepage.mac.com/hogfish/Personal10.html

  • I need help with simple problems. im a student.

    i'd like to be advanced with my studies so i will post questions.. i need help on how to answer. thank you.
    1. create a java program that will evaluate if the value entered is a positive, negative, vowel, consonant and special characters.
    im actually done with the positive and negative using if else statements.. i used an integer data type. now my question is how do conjoin the characters when i need to evaluate a vowel and a consonant. i cant use char either. please help. i dont know what to do yet.
    2. create java program that will translate the input from numbers to words. e.g. input:123 output: one hundred twenty-three.
    i have an idea to use a switch case statement. but i have no idea on how will i be able to do it. so if you guys can help me.. well then thankies..

    Welcome to the Sun forums. First, please note that you have posted in the wrong forum. This forum is for topics related to Sun's JavaHelp product. You should post your questions in the New to Java forum.
    As part of your learning, you will have to develop the ability to select an approach to a problem, create a design that reflects that approach, and then implement the design with code that you create.
    So, it's inappropriate for us to take the problem statement that you have been given and short-circuit your learning process by giving you the implemented problem solution. We can comment on the individual questions that you may have, and point out problems and errors that we see in the code that you develop.
    As a hint, when you are stuck, forget about Java and programming. Just start with a sheet of paper and a pencil, and figure out how to layout the task on paper. The consider how to translate that to programming.
    If you have problems, post short example code that shows the problem, and explain your question clearly. We can't read minds.
    Make sure you post code correctly so that it's not mangled by the forum software, and so that formatting is maintained. Select your typed or pasted code block and press the CODE button above the typing area.

  • I like many need help with a problem of burning cds

    I am trying to burn a simple playlist to a memorex music cd-r. Every time I try a message pops up with the error code of 4261 and then pops out the cd. Any help will be very much appriciated as I am at my wits end with this problem. Thank you so very much!
    Windows, Media Center PC    

    Place the PSU in and connect the 20 pins connector and the 4 pins connector will do.
    You may also try swapping the RAMs with another one to test f the RAM is to be at fault.

  • URGENT! Need help with scrolling on a JPanel!

    Hello Guys! I guess there has been many postings about this subject in the forum, but the postings I found there.... still couldn't solve my problem...
    So, straight to the problem:
    I am drawing some primitive graphic on a JPanel. This JPanel is then placed in a JScrollPane. When running the code, the scrollbars are showing and the graphic is painted nicely. But when I try to scroll to see the parts of the graphics not visible in the current scrollbarview, nothing else than some flickering is happening... No movement what so ever...
    What on earth must I do to activate the scroll functionality on my JPanel??? Please Help!
    And yes, I have tried implementing the 'Scrollable' interface... But it did not make any difference...
    Code snippets:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.awt.geom.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.tree.*;
    import java.util.*;
    public class FilterComp extends JPanel {//implements Scrollable {
      protected DefaultMutableTreeNode root;
      protected Image buffer;
      protected int lastW = 0;
      protected int origoX = 0;
      protected final StringBuffer sb = new StringBuffer();
    //  protected int maxUnitIncrement = 1;
      protected JScrollPane scrollpane = new JScrollPane();
       *  Constructor for the FilterComp object
       *@param  scrollpane  Description of the Parameter
      public FilterComp(JScrollPane scrollpane) {
        super();
    //    setPreferredSize(new Dimension(1000, 500));
        this.setBackground(Color.magenta);
    //    setOpaque(false);
        setLayout(
          new BorderLayout() {
            public Dimension preferredLayoutSize(Container cont) {
              return new Dimension(1000, 600);
        this.scrollpane = scrollpane;
        scrollpane.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        scrollpane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
        scrollpane.setPreferredSize( new Dimension( 500, 500 ) );
        scrollpane.getViewport().add( this, null );
    //    scrollpane.getViewport().setScrollMode(JViewport.SIMPLE_SCROLL_MODE);
        repaint();
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        int w = getSize().width;
        if (w != lastW) {
          buffer = null;
        Graphics2D g2 = (Graphics2D) g;
        g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
        if (root != null) {
          int h = getHeight(root);
          if (buffer == null) {
            buffer = new BufferedImage(getWidth(), getHeight(), BufferedImage.TYPE_INT_ARGB);
            Graphics2D g3 = (Graphics2D) buffer.getGraphics();
            g3.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g3.setColor(Color.black);
            g3.setStroke(new BasicStroke(2));
            paint(g3, (w / 2) + origoX, 10, w / 2, root); 
          lastW = w;
          AffineTransform old = g2.getTransform();
          AffineTransform trans = new AffineTransform();
          trans.translate((w / 2) + origoX, (getHeight() - (h * 40)) / 2);
          g2.setTransform(trans);
          g2.drawImage(buffer, (-w / 2) + origoX, 0, null);
          g2.setTransform(old);
        updateUI();
       *  Description of the Method
       *@param  g  Description of the Parameter
      public void update(Graphics g) {
        // Call paint to reduce flickering
        paint(g);
       *  Description of the Method
       *@param  g2    Description of the Parameter
       *@param  x     Description of the Parameter
       *@param  y     Description of the Parameter
       *@param  w     Description of the Parameter
       *@param  node  Description of the Parameter
      private void paint(Graphics2D g2, int x, int y, int w, DefaultMutableTreeNode node) {
        if (node.getChildCount() == 2) {
          DefaultMutableTreeNode c1 = (DefaultMutableTreeNode) node.getChildAt(0);
          DefaultMutableTreeNode c2 = (DefaultMutableTreeNode) node.getChildAt(1);
          if (c1.getChildCount() == 0 && c2.getChildCount() == 0) {
            String s = c1.getUserObject().toString() + " " + node.getUserObject() + " " + c2.getUserObject();
            paint(g2, x, y, s);
          } else {
            g2.drawLine(x - (w / 2), y, x + (w / 2), y);
            Font f = g2.getFont();
            g2.setFont(new Font(f.getName(), Font.BOLD | Font.ITALIC, f.getSize() + 2));
            paint(g2, x, y, node.getUserObject().toString());
            g2.setFont(f);
            g2.drawLine(x - (w / 2), y, x - (w / 2), y + 40);
            g2.drawLine(x + (w / 2), y, x + (w / 2), y + 40);
            paint(g2, x - (w / 2), y + 40, w / 2, c1);
            paint(g2, x + (w / 2), y + 40, w / 2, c2);
        } else if (node.getChildCount() == 0) {
          paint(g2, x, y, node.getUserObject().toString());
       *  Description of the Method
       *@param  g2  Description of the Parameter
       *@param  x   Description of the Parameter
       *@param  y   Description of the Parameter
       *@param  s   Description of the Parameter
      private void paint(Graphics2D g2, int x, int y, String s) {
        y += 10;
        StringTokenizer st = new StringTokenizer(s, "\\", false);
        if (s.indexOf("'") != -1 && st.countTokens() > 1) {
          int sh = g2.getFontMetrics().getHeight();
          while (st.hasMoreTokens()) {
            String t = st.nextToken();
            if (st.hasMoreTokens()) {
              t += "/";
            int sw = g2.getFontMetrics().stringWidth(t);
            g2.drawString(t, x - (sw / 2), y);
            y += sh;
        } else {
          int sw = g2.getFontMetrics().stringWidth(s);
          g2.drawString(s, x - (sw / 2), y);
       *  Sets the root attribute of the FilterComp object
       *@param  root  The new root value
      public void setRoot(DefaultMutableTreeNode root) {
        this.root = root;
        buffer = null;
       *  Gets the root attribute of the FilterComp object
       *@return    The root value
      public DefaultMutableTreeNode getRoot() {
        return root;
       *  Gets the height attribute of the FilterComp object
       *@param  t  Description of the Parameter
       *@return    The height value
      private int getHeight(TreeNode t) {
        int h = 1;
        int c = t.getChildCount();
        if (c > 0) {
          if (c > 1) {
            h += Math.max(getHeight(t.getChildAt(0)), getHeight(t.getChildAt(1)));
          } else {
            h += getHeight(t.getChildAt(0));
        return h;
       *  Sets the x attribute of the FilterComp object
       *@param  x  The new x value
      public void setX(int x) {
        origoX = x;
       *  Gets the x attribute of the FilterComp object
       *@return    The x value
      public int getX() {
        return origoX;
       *  Gets the preferredScrollableViewportSize attribute of the FilterComp
       *  object
       *@return    The preferredScrollableViewportSize value
    //  public Dimension getPreferredScrollableViewportSize() {
    //    return getPreferredSize();
       *  Gets the scrollableBlockIncrement attribute of the FilterComp object
       *@param  r            Description of the Parameter
       *@param  orientation  Description of the Parameter
       *@param  direction    Description of the Parameter
       *@return              The scrollableBlockIncrement value
    //  public int getScrollableBlockIncrement(Rectangle r, int orientation, int direction) {
    //    return 10;
       *  Gets the scrollableTracksViewportHeight attribute of the FilterComp object
       *@return    The scrollableTracksViewportHeight value
    //  public boolean getScrollableTracksViewportHeight() {
    //    return false;
       *  Gets the scrollableTracksViewportWidth attribute of the FilterComp object
       *@return    The scrollableTracksViewportWidth value
    //  public boolean getScrollableTracksViewportWidth() {
    //    return false;
       *  Gets the scrollableUnitIncrement attribute of the FilterComp object
       *@param  r            Description of the Parameter
       *@param  orientation  Description of the Parameter
       *@param  direction    Description of the Parameter
       *@return              The scrollableUnitIncrement value
    //  public int getScrollableUnitIncrement(Rectangle r, int orientation, int direction) {
    //    return 10;
    }

    The Scrollable interface should be implemented by a JPanel set as the JScrollPane's viewport or scrolling may not function. Although it is said to be only necessary for tables, lists, and trees, without it I have never had success with images. Even the Java Swing Tutorial on scrolling images with JScrollPane uses the Scrollable interface.
    I donot know what you are doing wrong here, but I use JScrollPane with a JPanel implementing Scrollable interface and it works very well scrolling images drawn into the JPanel.
    You can scroll using other components, such as the JScrollBar or even by using a MouseListener/MouseMotionListener combination, but this is all done behind the scenes with the use of JScrollPane/Scrollable combination.
    You could try this approach using an ImageIcon within a JLabel:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class Test extends JFrame {
         BufferedImage bi;
         Graphics2D g_bi;
         public Test() {
              super("Scroll Test");
              makeImage();
              Container contentPane = getContentPane();
              MyView view = new MyView(new ImageIcon(bi));
              JScrollPane sp = new JScrollPane(view);
              contentPane.add(sp);
              setSize(200, 200);
              setVisible(true);
         private void makeImage() {
              bi = new BufferedImage(320, 240, BufferedImage.TYPE_INT_ARGB);
              g_bi = bi.createGraphics();
              g_bi.setColor(Color.white);
              g_bi.fillRect(0,0,320,240);
              g_bi.setColor(Color.black);
              g_bi.drawLine(0,0,320,240);
         public static void main(String args[]) {
              Test test = new Test();
    class MyView extends JLabel {
         ImageIcon icon;
         public MyView(ImageIcon ii) {
              super(ii);
              icon = ii;
         public void paintComponent(Graphics g) {
              g.drawImage(icon.getImage(),0,0,this);
    }Robert Templeton

  • Need help with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Need help with Itunes problem not being able to put custom made ringtone on iphone 4s.

    My iphone 4s is running iOS7. My windows laptop is running the latest version of itunes, i follow instructions everywhere to get the ringtone i made onto my cellphone and i get stuck where it says to go to the apps tab and then scroll down till you see the apps you have and choose the app that you made the ringtone with. Well when i select apps it just goes to the app store, it doesn't do anything else. How in the world do i get that to come up so i can move the ringtone from the app to my phone??? please help!

    Although WAV files have the same audio coding as an audio CD, a disc full of WAV files does not act like an audio CD; it lacks the indexing and ToC needed in order for a "regular" CD player to play it. As Diane notes, put your WAV files in an iTunes playlist and burn it as an *audio CD.*

  • Need help with G4 problem

    Months ago I have a problem on my G4 MDD which intermittently shuts down after putting it to sleep. Now some new problems are coming out. First one I noticed is that sometimes even the power switch light would turn off even though the computer is still on. I can still use the internet and such but noticed that when I need to digitized video footage using FCE there would be some noise on the video which leads me to conclude that the power is unstable. Am I correct in this? 2nd problem is sometimes it will not even power up unless I either pull the plug and plug it in again or open the side of the computer. Now regarding opening the side of the computer, I noticed that if I powered it up with the side door opened and try to close it the computer will shut down. Sometimes I managed to close the door and it will stay on with out a problem. Right now I just leave the side door open and so far power seems to be ok for 72 hours. So is this a logic board problem or a connection problem between the psu and the logic board?

    I'm leaning towards Tom's opinion of heat, too. Modern Macs have thermal sensors that shut down the computer if key temps rise too high. Dual processor MDDs run especially hot, as do MDDs with both slots in the front drive bay occupied.
    The two cheap things to do first are a) give the inside a cleaning, focusing on the main fan and its housing, and b) check your workspace to ensure that there is room around the computer for intake and exhaust air.
    The primary air intake is not the four molded "ducts" on the front but rather the area at the bottom of the front panel below them. Keep that area clear--it's best not to put "bottom breather" computers like the MDD on the floor where that can pull in even more dirt. Crowding the exhaust in the back can run up temps, too. Try to position the tower so nothing is within 8 inches of the back,

  • Need help with download problems on Ipod-5th Generation

    Hello everyone. Another newbie here who is not technologically inclined but love their Ipod. I just purchased new music videos from the Itunes store, connected my Ipod to the PC and left everything alone until I saw the update complete prompt. However, I am now in a panic because not only did it not sync my new purchases but...all of my previously purchased TV shows, music videos, etc are no longer on my Ipod. I did not request nor click to have anything erased. What can I do to restore my complete library of tunes, videos, tv shows, as I have spent a lot of money on my purchases for this Ipod?
    Also, while I'm asking for help: do any of you have problems with downloads timing out before the downloads from the Itunes Store are complete? I purchased several music videos during downloads that said there was an error due to download timeouts; not only did the items never show up in my library but never synced to my Ipod. There were error codes assigned to these videos but...who do I do when this happens? Thanks in advance.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • Noob needs help with dreamweaver- problem encountered

    madelinebeth.net
    This is the website i am trying to create. It is not
    complete, but on Safari it looks fine. When i open it on firefox,
    it gets all messed up and i dont know how to change it. It
    initially gets messed up on dreamweaver when i add links o
    different slices. Any help would be greatly appreciated.

    > is a bug in firefox that does not render correctly using
    tables
    Never heard of that. Are you sure?
    >yes you can use photoshop, fireworks, etc. thats what
    they are for
    Could not disagree more. Image apps are for
    creating/manipulating images.
    Period. The HTML they spew is second-rate at best.
    Walt
    "Silkrooster" <[email protected]> wrote in
    message
    news:g0t18h$erv$[email protected]..
    >A few things I see that need to be changed. your first
    issue is tables,
    >there
    > is a bug in firefox that does not render correctly using
    tables. I don't
    > recall
    > the bug and how it works, but the easiest way to
    overcome the bug is to
    > use css
    > instead of tables.
    > The other issue is to add a DTD at the top of your code,
    this will stop
    > the
    > browsers especially IE from using the quirks mode.
    > Other than that the code is fine. These problems can
    easily be fixed in
    > Dreamweaver. And yes you can use photoshop, fireworks,
    etc. thats what
    > they are
    > for, as long as you know the bugs they may create. The
    biggest being the
    > DTD,
    > next is the tables issue, which photoshop can use either
    tables or css.
    > Fireworks currently only supports tables, hopefully that
    will get fixed in
    > the
    > next version.
    > To make sure your code is correct from the get go, it is
    best to
    > use
    > dreamweaver as it is aware of the DTD and can use css or
    tables.
    > I agree about the leopard skin, way too hard on the
    eyes.
    > Hope this helps
    >

  • Need help with Backup problems - anyone seen this before?

    I am experiencing 2 primary problems:
    1) When attempting a recent backup with HotSync on my desktop PC (Treo 700p, HotSync Manager v. 6.01, XP): I hadn't backed up for a few weeks, and this time it crashed sometime during the backup of the Calendar (and this behavior is repeated).  So I then unchecked the backup of Calendar, but then it just hung on Contacts for about 15 minutes, so I realized it wasn't doing anything anymore (I have lots of contacts, but not not 15 minutes worth).  At this point I gave up, but I obviously need to figure out how to make HotSync work again.  Any ideas?
    2) (not sure if this is the forum to address this): When using Backup Buddy v. 2.04 a couple of days ago, every time I tried to backup, it would get maybe 1/5th into the backup and crash and restart.  I figured out in short order that Address.DB is what was causing the crash. [I tried to e-mail the file so I could examine it and save it, but just attaching it in SnapperMail made the device crash].  So I took the chance of deleting the Address.DB (as it seemed small and didn't appear to contain any backup information), and it looks like all of my information was retained.  My question here is: two times since the initial problem, something has recreated Address.DB, which again causes the 700p to crash, so I have had to delete it again.  So when is this file being (re)created, and what is the purpose of it?
    An additional (minor) difficulty that I've had occur on a couple of occasions: After a recovery (where my BackupBuddy information was more current than my HotSync data), I restored, and all the calendar entries were double - 2 identical entries adjacent to one another. Has anyone seen this?
    Thanks in advance -
    B
    Post relates to: Treo 700p (Verizon)

    Sounds like the device has become corrupted.
    Post relates to: None

  • Need Help With Sync Problem

    I've been having difficulties loading music files onto my ipod shuffle. I enabled disk usage and tried to sync valid audio files, yet there pops a message saying " ...cannot be synced. The disk could not be read from or written to." I have no clue on what else to assess, so any help would be greatly appreciated. Thank you

    That was one of the primary sources I looked through,
    yet stil everything on that list seems to be a o.k.
    from my computer. Any other suggestions?
    Gomps, I have been having exactly the same problem as you. I also tried everything in the so-called troubleshooting doc recommended above. i continued poking, and found another thread about what seems to be a related issue.
    Try this (do it exactly as recommended):
    Disconnect the iPod from the computer. Then go to "start> right click my computer>
    manage> services and applications> services> click iPod service> click stop service." Then connect the ipod and it should show up in my computer. Format it so all content is gone. Next, go back to "start> right click my computer>
    manage> services and applications> services> click iPod service> click Start service." This should have the service running again. Open iTunes and connect the shuffle. When it says to automatically fill it (the window that pops up) dont unclick it, proceed so the shuffle autofills. Before it stops, quickly go to the settings tab. Then, scroll down to where it says "enable disk use". select that and hit apply. Now, you manually eject the iPod and you can manage your music!
    All I can say is I tried everything and this finally worked for me. I run WinXP Pro x64.
    this is courtesy of Albertech, who is the real god.
    http://discussions.apple.com/thread.jspa?threadID=720639&tstart=45

Maybe you are looking for

  • Macbook Air can't connect the AP in Mac OS 10.6

    Hi. I opened my new macbook air yesterday, and I tried to connect my private WiFi AP. The other devices, such as two iPads, iphone 4, ipod touch 3G, and PCs, can connect to the AP, but the new one couldn't connect. The error message was "The password

  • What do I do when Itunes store won't follow through because I can't update Itunes past 9.2.1?

         I have an a 20 inch Imac authorized for itunes. I can't get into the store because Itunes wants me to update to 10 which I cannot do. I have mac os 10.4.11 on my Imac. I also have a 12 inch Ibook lap top with the same problem. Upgrading these co

  • After updating my ipad mini retina to 8.1.2, my device experiences blue screen of death at random times.

    After updating my ipad mini retina to 8.1.2, my device experiences blue screen of death at random times. It is so annoying plus there are applications that keeps on crashing such as brother in arms by gameloft so i have no choice but to reinstall it

  • Office and Appleworks quit at start-up

    My daughter's MacBook (10.5.4) quits both Appleworks and MicroSoft Office for Mac almost immediately upon start-up. Both programs start and the opening screen appears but then she gets the pop-up that says the program has unexpectedly quit with the i

  • Using Log4j with Listener

    We are using Log4j and all of our logging files are properly created by a listener that starts once our application is deployed. All logging works fine when we are running in single server mode but when we deploy the EAR to a cluster, the listener st