How can i make from a GUI application an Applet ?

Hello, i have a gui appliction and i want to make an applet
how can i do that, i read an article (i need to put away method main and write method init (must be same as a constructer , but my constructor is only public Grafika() ) but it doest help....
Can you help me.. ?
import javax.swing.JFrame;
import java.awt.event.*;
import java.util.*;
import javax.swing.JPanel;
import java.awt.*;
import javax.swing.*;
public class Grafika{
     JPanel canvas;
     public static boolean pause = true;
     public static int algoritmus = 0;
     public static String[] algoritmy={"V�ber Algoritmu","QuickSort","BubbleSort"};
     public static long sleeper = 600;       
     public void borders(JPanel canvas,int[] cisla,int left,int right){
          Graphics g = canvas.getGraphics();
          for(int i=0;i<cisla.length;i++){               
               if(cisla==cisla[left]){
                    g.setColor(Color.lightGray);
                    g.drawLine(10, 20+i*4, 500,20+i*4 );
               if(cisla[i]==cisla[right]){
                    g.setColor(Color.lightGray);
                    g.drawLine(10, 20+i*4+1, 500,20+i*4+1 );
               else {
                    g.setColor(Color.white);
                    g.drawLine(10, 20+i*4-1, 500,20+i*4-1 );
          g.dispose();
          //repaint();          
     public void drawIt(JPanel canvas,int[] cisla,int pivot){
          Graphics g = canvas.getGraphics();
          for(int i=0;i<cisla.length;i++){     
               if(cisla[i]==pivot){
                    g.setColor(Color.green);
               else {
                    g.setColor(Color.red);
               g.fillRect(10, 20+i*4, cisla[i], 2);
               g.setColor(Color.white);
               g.fillRect(9+cisla[i]+1,20+ i*4, 1000, 2);
          g.dispose();
          //repaint();          
          public static void main(String[] Args){
          JFrame f = new JFrame("Triediace Algoritmy");     
          JPanel canvas = new JPanel();
          canvas.setBackground(Color.white);
          JButton sort = new JButton("Faster");
          JButton cancel = new JButton("Slower");
          sort.addActionListener(new ButtonListener());
          cancel.addActionListener(new ButtonListener());
          JComboBox algChooser = new JComboBox(algoritmy);
          algChooser.addActionListener(new ComboListener());
          JPanel controlPanel = new JPanel(new FlowLayout());
          controlPanel.add(algChooser);
          controlPanel.add(sort);
          controlPanel.add(cancel);
          canvas.setPreferredSize(new Dimension(200,200));
          // canvas.setBorder(BorderFactory.createLineBorder(Color.black));
          JPanel contentPane = new JPanel(new BorderLayout());
          // contentPane.setBounds(1, 1, 200, 200);
          contentPane.add(canvas,BorderLayout.CENTER);
          contentPane.add(controlPanel,BorderLayout.PAGE_END);
          // contentPane.setBorder(BorderFactory.createLineBorder(Color.red));
     f.addWindowListener(new WindowAdapter() {
     public void windowClosing(WindowEvent e) {
     System.exit(0);
     f.add(contentPane);
     f.pack();
     f.setSize(800,375);
     f.setVisible(true);
     int[] cisla = fillArray(70);
while (algoritmus == 0){
try{
     Thread.sleep(1);
}catch(InterruptedException ie){}
if (algoritmus == 1){
QuickSort qs = new QuickSort(canvas);
qs.sort(cisla);
if (algoritmus == 2){
BubbleSort bs = new BubbleSort(canvas);
bs.sort(cisla);
     public static int[] fillArray(int numbers){
          int temp=0;
          int[] arrayOfNumbers= new int[numbers];
          for (int i=0;i<numbers;i++){
               arrayOfNumbers[i] = i;
          for (int i=0;i<numbers;i++){
               Random generator = new Random();
               int left =generator.nextInt(numbers);
               int right =generator.nextInt(numbers);
               temp=arrayOfNumbers[left];
               arrayOfNumbers[left]=arrayOfNumbers[right];
               arrayOfNumbers[right]=temp;
          return arrayOfNumbers;
Thank you very much                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

//  <applet code="GrafikaApplet" width="400" height="400"></applet>
//  use: >appletviewer GrafikaApplet.java
import java.awt.*;
import java.awt.event.*;
import java.util.Random;
import javax.swing.*;
public class GrafikaApplet extends JApplet {
    String[] algoritmy={"V�ber Algoritmu","QuickSort","BubbleSort"};
    int algoritmus = 0;
    boolean running = false;
    GrafikaPanel canvas;
    int[] cisla;
    public void init() {
        cisla = fillArray(70);
        canvas = new GrafikaPanel(cisla);
        canvas.setPreferredSize(new Dimension(200,200));
       resize(800,375);
        Container cp = getContentPane();
        cp.add(canvas, BorderLayout.CENTER);
        cp.add(getControlPanel(), BorderLayout.PAGE_END);
    private int[] fillArray(int numbers){
        Random generator = new Random();
        int temp=0;
        int[] arrayOfNumbers= new int[numbers];
        for (int i=0;i<numbers;i++){
            arrayOfNumbers[i] = i;
        for (int i=0;i<numbers;i++){
            int left = generator.nextInt(numbers);
            int right = generator.nextInt(numbers);
            temp=arrayOfNumbers[left];
            arrayOfNumbers[left]=arrayOfNumbers[right];
            arrayOfNumbers[right]=temp;
        return arrayOfNumbers;
    private void startAnimation() {
        Thread thread = new Thread(new Runnable() {
            public void run() {
                switch(algoritmus) {
                    case 1:
                        new QuickSort2(canvas).sort(cisla);
                running = false;
        thread.setPriority(Thread.NORM_PRIORITY);
        thread.start();
    class ButtonListener implements ActionListener {
        public void actionPerformed(ActionEvent e) {
            if(!running) {
                running = true;
                algoritmus = 1;
                startAnimation();
    private JPanel getControlPanel(){
        JButton sort = new JButton("Faster");
        JButton cancel = new JButton("Slower");
        ButtonListener bl = new ButtonListener();
        sort.addActionListener(bl);
        cancel.addActionListener(bl);
        JComboBox algChooser = new JComboBox(algoritmy);
//        algChooser.addActionListener(new ComboListener());
        JPanel controlPanel = new JPanel(new FlowLayout());
        System.out.println("default layout for JPanel = " +
                            new JPanel().getLayout().getClass().getName());
        controlPanel.add(algChooser);
        controlPanel.add(sort);
        controlPanel.add(cancel);
        return controlPanel;
class GrafikaPanel extends JPanel {
   int[] cisla;
   int left;
   int right;
   int pivot;
    public GrafikaPanel(int[] cisla) {
        this.cisla = cisla;
    protected void paintComponent(Graphics g) {
        super.paintComponent(g);
        for(int i=0;i<cisla.length;i++){               
            if(cisla==cisla[left]){
g.setColor(Color.lightGray);
g.drawLine(10, 20+i*4, 500,20+i*4 );
if(cisla[i]==cisla[right]){
g.setColor(Color.lightGray);
g.drawLine(10, 20+i*4+1, 500,20+i*4+1 );
else {
g.setColor(Color.white);
g.drawLine(10, 20+i*4-1, 500,20+i*4-1 );
for(int i=0;i<cisla.length;i++){     
if(cisla[i]==pivot){
g.setColor(Color.green);
else {
g.setColor(Color.red);
g.fillRect(10, 20+i*4, cisla[i], 2);
g.setColor(Color.white);
g.fillRect(9+cisla[i]+1,20+ i*4, 1000, 2);
public void drawIt(int[] cisla, int pivot){
this.cisla = cisla;
this.pivot = pivot;
repaint();
class QuickSort2{
GrafikaPanel component;
public QuickSort2(GrafikaPanel gp){
component = gp;
public void sort (int[] vstupnePole) {
QSort(vstupnePole,0,vstupnePole.length-1);
public void QSort(int[] array,int zac,int kon){
int i = zac;
int j = kon;
int pivot = array[(i+j)/2];
while(i<=j){
try {
Thread.sleep(100);
component.drawIt(array,pivot);          
}catch(InterruptedException ie){break;}
while(pivot<array[j]){j--;}
while(pivot>array[i]){i++;}
if (i<=j){
int temp = array[i];
array[i] = array[j];
array[j] = temp;
i++;
j--;
if (zac<j){QSort(array,zac,j);}
if (i<kon){QSort(array,i,kon);}

Similar Messages

  • How can I make from 1 movie 2 movies

    How can I in Imovie 10 make from 1 movie 2 movies.
    I would like to split the movie into two movies including all the foto and audio .

    One way is to select all the clips in the timeline that you want to be in one of the movies and copy them. Open a new project and paste into the timeline. Go back to the original project and delete the selected clips. Then share the two projects.

  • FAQ: How can I make my Flash Catalyst application scale/use a liquid layout?

    Flash Catalyst CS5 currently only supports applications with fixed dimensions. Custom components you create in Catalyst have absolute sizing.
    If you want to experiment with creating resizable applications (liquid layouts) and components in a preview of the next version of Flash Catalyst, codenamed "Panini",  you can find more information here:
    Introducing Adobe Flash Catalyst "Panini"
    Download Adobe Flash Catalyst "Panini"
    Adobe Flash Catalyst "Panini" help
    Keep in mind that Flash Catalyst "Panini" preview is meant for exploration and testing, not real production. If you are doing real production work, here are some options that work with Flash Catalyst CS5 and Flash Builder:
    Liquid Layouts
    If you are building an application that requires relative constraints, you can take the FXP file from Flash Catalyst into Flash Builder, and apply constraints there so that your components resize according to your application dimensions.
    For more info, see this Help topic:
    Using constraint-based layouts in Flash Builder
    SWF Scaling
    If you want your swf to scale, without relative constraints, there's a simple way to make that work in Builder as well. Simply save out your FXP file from Flash Catalyst and import it into Flash Builder. Open up the "Main.mxml" file. Remove the width and height attributes on the Application tag, and add the attribute:
    preinitialize="systemManager.stage.scaleMode='showAll'
    The entire Application tag should look something like:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:d="http://ns.adobe.com/fxg/2008/dt"
                      xmlns:fc="http://ns.adobe.com/flashcatalyst/2009"
                      xmlns:ATE="http://ns.adobe.com/ate/2009"
                      xmlns:ai="http://ns.adobe.com/ai/2009"
                      xmlns:flm="http://ns.adobe.com/flame/2008"
                      xmlns:lib="assets.graphics.*"
                      xmlns:components="components.*"
                      backgroundColor="#FFFFFF"
                      preloaderChromeColor="#FFFFFF"
                      preinitialize="systemManager.stage.scaleMode='showAll'"
                      >
    There are a couple other scale modes you may want to try, such as "exactFit", which are outlined at the below link:
    Flash Stage Scale Modes
    Finally, you will have to adjust the object embed code in your html page to set the size of your swf.
    Original discussion here

    you can`t. allow your application internet access without the network admin defining an exception for it specifically.
    If you have admin rights use the router`s/proxy`y configuration software to allow an exception.

  • How can I make an update of application with a different Apple ID?

    Hello,
    I have set up many iPad in my company with my Apple ID, however we have to do many update of application and iPad ask my Apple ID intead new Apple ID set it up on the Setting menu "iTunes".
    Could you pls help me?
    Thanks
    Vanderlei Gomes
    <Personal Information Edited by Host>

    I think you should do the installs the "apple way".  It's all about drink the apple coolaid.
    There are three ownership models:
        Personal
        Institution
        Layered. combines personal & institution.
    Watch this apple video on layered ownership.  It education based, but that's OK.
    http://www.apple.com/education/resources/videos/#ios-layered-ownership
    IT Resources -- ios & OS X -- This is a fantastic web page.  I like the education site over the business site.
    View documentation, video tutorials, and web pages to help IT professionals develop and deploy education solutions.
    http://www.apple.com/education/resources/information-technology.html
       business site is:
       http://www.apple.com/lae/ipad/business/resources/
    Excellent guide. See announcment post -- https://discussions.apple.com/thread/4256735?tstart=0
    https://docs.google.com/document/d/1SMBgyzONxcx6_FswgkW9XYLpA4oCt_2y1uw9ceMZ9F4/ edit?pli=1
    good tips for initial deployment:
    https://discussions.apple.com/message/18942350#18942350
    https://discussions.apple.com/thread/3804209?tstart=0
    Educational institutions in the USA can use the App Store Volume Purchase Program (VPP) to buy Apps.
    https://support.assistiveware.com/index.php?pg=kb.page&id=54

  • How can i make a Audio/video Application using JMF

    I want to work on media application and currently want to work on JMF.can anyone guide me about some basic to advance level concepts of java media framework.thanks...

    you might want to ask questions related to JMF in the JMF forum at http://forum.java.sun.com/forum.jsp?forum=2

  • How can I make .jar files for applications?

    My jar program creates jar files but won't open the program when I double click them. I use the command:
    jar cvf *.jar filenames
    The jar file is created but won't execute. Can anyone tell me what i am doing wrong?
    Thanks
    Jiby

    Hello !
    Well, I had the same problem a week or two ago !
    First, in your *.java, don't use any package...I mean, don't do a package of your program (I guess there is a way to make it work with, but it would need a little bit more work...).
    Then, with the jar tools, use the command
    -jar cf jar_that_you_want_to_create.jar class-that_you_include_in_your_jar.class
    With that, a jar will be created, and when you will try to "run" it, it will say that it can not find the main class...
    You need a Manifest !
    Create a text file MyManifest.text, and write that in your text file :
    Main-Class: classname
    follow the same as i wrote above. leave a blank after colon and a blank line after the first line like above.
    then, well, use tha jar tool again:
    -jar umf MyManifest.txt jar-file-you-created.jar
    To "run" it, double click on it, or use the java tool:
    java -jar jar_you_created.jar
    Thanks to Phani, who helped me with that !!
    Splitsch

  • How can I make links in another application (say thunderbird) open with a specific Firefox profile

    Having several different Firefox profiles, clicking a link in another application (for instance,a link in Thunderbird,or in a email message,generally speaking) brings up the profile manager:is there a way to bypass it and force all links to open with a specific Firefox version\profile?

    A way to do that is to edit the registry and add the -p "profile" switch to those protocol links. There is however no guarantee that such a change stays after an update and Firefox may complain.<br />
    Another way is not to use the profile manager, but select the profile for the default browser once in the PM to set the profile for the default browser, so that profile is marked as Default=1 in profiles.ini. Then place a checkmark in the box to never ask and use a desktop shortcut to start each Firefox version with its own profile, so you do not have to use the PM as that would set another profile with Default=1
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • How can i make Distiller autoname file ( when exprting from other application?)

    hello everyone,
    i have been searching for a solution for a long time please help me >
    we have more than 100.000 docuents saved as pic on our network at work by using ( Laser Fiche). I wanted to save all files by using acrobat distiller but when i try to print a file i was prompted to enter a file name! but i don't want to... i want the distiller create a file name automatially.
    in the preferencesd i unchecked ( ask for PDF .. ) but the problem is that all files saved were overwritten because distiller was imporing the file name from Laser Fich!
    how can I make distiller ( autoname files like 0001 0002 0003 and so on) ?
    forgot to tell you that i am using acrobat version 5 ( and windows xp + laser fiche at work )
    thanks in advance

    thanks Bill@VT -
    it didn't work
    I opened the properiteis of the distiller and uncheck the ( prompt for the PDF file name) so that the distiller can save files automatically . it did but by overwriting the files because the original files in the LASER FICHE have same names so the distiller saved one file only by overwriting ....that's why i want to make distiller to name files when saving them ( the distiller are imorting the files from Laser fiche only but i want it to autoname them )
    i also opened distiller properites and unchecked the ( ask to replace existing PDF filename ) the distiller was always asking me to replace file ! and I can't do it this way because I have more than 100.000 docuents!
    sorry , I know this is a very difficult question
    but I would very happy if you can help me
    hank you
    Al

  • I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    I down loaded sygic on my iPhone 3s but the icon is missing even in the search but when I want to download it again ,it say this application is present, how can I make the icon to show up

    - Have you tried a reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Try syncing  the iPod to your computer. Then delete from iTunes and sync. that should delete it from the iPod. Then redownload it.

  • How can I make server use single class loader for several applications

    I have several web/ejb applications. These applications use some common libraries and should share instances of classes from those libraries.
    But applications are being deployed independently thus packaging all them to EAR is not acceptable.
    I suppose the problem is that each application uses separate class loader.
    How can I make AS use single class loader for a set of applications?
    Different applications depend on different libraries so I need a way that will not share library for all applications on the domain but only for some exact applications.
    When I placed common jar to *%domain%/lib* - all works. But that jar is shared between all applications on the domain.
    When I tried to place common jar to *%domain%/lib/applibs* and specified --libraries* attribute on deploying I got exception
    java.lang.ClassCastException: a.FirstDao cannot be cast to a.FirstDaoHere http://download.oracle.com/docs/cd/E19879-01/820-4336/6nfqd2b1t/index.html I read:
    If multiple applications or modules refer to the same libraries, classes in those libraries are automatically shared.
    This can reduce the memory footprint and allow sharing of static information.Does it mean that classes should be able to be casted ?

    You didn't specify which version of the application server you are using, but the config is similar as long as you know what to look for. Basically, you need to change the classloader delegation. Here's how it is done in 8.2
    http://download.oracle.com/docs/cd/E19830-01/819-4721/beagb/index.html

  • I just upgraded from Express to Pro.  When I open a project in Finder and neither Express nor Pro are running, it always opens in Express.  "Open With ..." says Express is the default.  How can I make Pro the default instead?

    I just upgraded from Logic Express to Pro.  When I open a project in Finder and neither Express nor Pro are running, it always opens in Express. I now want projects to open in Pro.  "Open With ..." says Express is the default.  How can I make Pro the default instead?

    Well, when I've done things like that it always sems like a good idea to keep an application that you know the file will definitely open in...

  • How can I make a backup from my Macbook Pro?

    How can I make a backup from my Macbook Pro?

    Basic Backup
    For some people Time Machine will be more than adequate. Time Machine is part of OS X. There are two components:
    1. A Time Machine preferences panel as part of System Preferences;
    2. A Time Machine application located in the Applications folder. It is
         used to manage backups and to restore backups. Time Machine
         requires a backup drive that is at least twice the capacity of the
         drive being backed up.
    See Mac Basics- Time Machine. Please visit Pondini's Time Machine FAQ for help with all things Time Machine.
    Alternatively, get an external drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
      1. Carbon Copy Cloner
      2. Get Backup
      3. Deja Vu
      4. SuperDuper!
      5. Synk Pro
      6. Tri-Backup
    Visit The XLab FAQs and read the FAQ on backup and restore.  Also read How to Back Up and Restore Your Files. For help with using Time Machine visit Pondini's Time Machine FAQ for help with all things Time Machine.
    Although you can buy a complete external drive system, you can also put one together if you are so inclined.  It's relatively easy and only requires a Phillips head screwdriver (typically.)  You can purchase hard drives separately.  This gives you an opportunity to shop for the best prices on a hard drive of your choice.  Reliable brands include Seagate, Hitachi, Western Digital, Toshiba, and Fujitsu.  You can find reviews and benchmarks on many drives at Storage Review.
    Enclosures for FireWire and USB are readily available.  You can find only FireWire enclosures, only USB enclosures, and enclosures that feature multiple ports.  I would stress getting enclosures that use the Oxford chipsets especially for Firewire drives (911, 921, 922, for example.)  You can find enclosures at places such as;
      1. Cool Drives
      2. OWC
      3. WiebeTech
      4. Firewire Direct
      5. California Drives
      6. NewEgg
    All you need do is remove a case cover, mount the hard drive in the enclosure and connect the cables, then re-attach the case cover.  Usually the only tool required is a small or medium Phillips screwdriver.

  • How can i make a connection between an application and a database over net

    dear sir
    how can i make connection between an appliction and a database over internet while the client side appliction is behind proxy and firewall
    for example how the live update of norton antivirus makes connection to the data server to make comparetions and get new virus definitions
    does that depend on sockets technology ?
    what references can guide me to the solution please?

    The ability to do so depends entirely on the JDBC driver implementation having some proxy method. It needs to recognize the HTTP or SOCKS proxy and use them to connect, and the firewall and proxy need to allow those specific port connections.
    To the best of my knowledge, all of these update utilities, e.g. live update for Netscape, Norton, etc., do not connect directly to the database. As it is, no sane security person would allow a database to be exposed to the Net. Rather, they connect using HTTP or HTTPS, which normally traverses firewalls just fine, to connect to a Web or application server on the far end. That application server then parses the request and retrieves whatever it needs to from the database.
    In other words, you cannot have a 2-tier client/server application. You need a 3-tier application:
    your client -> Web/app server -> database
    where the connection from your client to the Web/app server is over http or https through the firewall and proxies.
    Hope this helps.
    Avi
    dear sir
    how can i make connection between an appliction and a
    database over internet while the client side
    appliction is behind proxy and firewall
    for example how the live update of norton antivirus
    makes connection to the data server to make
    comparetions and get new virus definitions
    does that depend on sockets technology ?
    what references can guide me to the solution please?

  • How Can I make redirect caller from agent to any branch IVR?

    I have IPCC Enterprise Edition (ICM 5.0, IVR 3.1)
    How can I make redirect caller from agent to chosen branch IVR, and send with call any variable to IVR (e.g. account number).
    Regards
    Krzysztof

    I would suggest that post-routing should not be used. The way to go is to use translation routing applications. Although post-routing is easy to set up, almost all deployments require translation routing. I can't think of anything good to say about post routing, other than it's trivial to configure.
    You want the main route point to be on the CM_PIM.RC for a number of reasons. You can check to see which of your IVRs are on line, and/or to do load balancing. If calls don't need to go to the IVR if agents are ready, you can have an LAA Select node immediately, and then translation route. Even if you just have one IVR, translation routing will enable you to do RONA more easily.
    You need to bite the bullet and learn translation routing. If you do it that way, peripheral variables attached to the call remain unaffected whether the call is under the control of the CM_PIM.RC or the IVR_PIM.RC. This is exactly what you want.
    There is no need, in my opinion, to go to an external database. In your IVR, decisions made by the caller (e.g. which "skill" they want) set peripheral variables. When the call comes out of this script you check the peripheral variable, and depending on the value do a queue to the appropriate skill group and run external script (BasicQ.aef).
    Separate the intelligence gathering IVR script from the Queuing script. Allow ICM to make the routing decisions.

  • When I try to backup my files from photoshop elements 12 the "calculating total media size" box will only get as far as 46% and then freeze, how can I make it go to 100%

    When I try to backup my files from photoshop elements 12 the "calculating total media size" box will only get as far as 46% and then freeze, how can I make it go to 100%

    hi barbara
    thank you for your response, i appreciate it.  there's definitely nothing wrong with the mouse or trackpad, both work fine in every other application....i can also easily change size dimensions in other programs on my computer so it doesn't seem to be that either.  it seems like there is something weird going on in the way that pse and my mac are interacting with each other, just wish i knew what it was.    thank you again, wish me luck!

Maybe you are looking for

  • Itunes and my external hard drive

    I recently moved all my music from both my pc and my laptop (both windows) onto my external hard drive. I followed the step by step instructions set out by apple support. Everything was working great until I opened Itunes without my ex hd being conne

  • Problems with basic keys usage

    I'm going crazy. Quite often now the following key or keys combinations I use the most often stop working: - using Shift to select all files between two clicked on items - using Command to select several individual files - using Command-c and Command

  • Rent movie - zero download time

    I was going to rent a movie from the iTunes store for my Apple TV (2nd Gen) and wondered how long it would take to download. The movie is 98 minutes and in HD. My Internet connection is 10 Mbps down. From everything I found Googling I anticipated abo

  • Problem with Yahoo IMAP and Mail...

    I'm having an issue with my Yahoo IMAP setup and mail on my desktop: I have set up my yahoo email account with IMAP on both my iphone 4 and with mail on macbook pro.  It has worked fine, all my folders are synced up on both devices and everything run

  • Retrieving File from remove server into String

    Hi, I've tried a few strategies to solve this problem but haven't been able to figure it out yet. Here is what I'm trying to do. From my website, I would like to call a JavaScript function from another external server. When this javascript function i