Java Speech API / Mobile Media API ?

Does anyone know whether its possible to use JSAPI or MMAPI in mobile phones currently in the market?
If it aint then I am really surprised because the sound manipulation possible is very useful.

Hey guys, surely some of you folks must have used it...

Similar Messages

  • Java Speech API

    Hi
    When i compile the following program it give me error some of the Java speech API.
    import javax.speech.AudioException;
    import javax.speech.Central;
    import javax.speech.EngineException;
    import javax.speech.synthesis.Synthesizer;
    import javax.speech.synthesis.SynthesizerModeDesc;
    Can any one help.
    Thanks
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.io.File;
    import java.io.FileReader;
    import java.io.IOException;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.Locale;
    import java.util.Hashtable;
    import java.util.prefs.Preferences;
    import javax.speech.AudioException;
    import javax.speech.Central;
    import javax.speech.EngineException;
    import javax.speech.synthesis.Synthesizer;
    import javax.speech.synthesis.SynthesizerModeDesc;
    import javax.swing.DefaultComboBoxModel;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JScrollPane;
    import javax.swing.JTextField;
    import javax.swing.JTextArea;
    import javax.swing.JToolBar;
    public class JavaVoice extends JFrame implements Comparator {
         private Synthesizer synth;
         private File readFile = null;
         Preferences preferences = Preferences.userRoot().node("dlb/JavaVoice");
         JComboBox voices;
         Hashtable list;
         public JavaVoice() {
              super("Java Voice Synthesizer");
              addWindowListener(new AppCloser());
              DefaultComboBoxModel model = new DefaultComboBoxModel();
              try {
                   javax.speech.EngineList elist = Central.availableSynthesizers(null);
                   list = new Hashtable(elist.size());
                   Collections.sort(elist,this);
                   for (int i=0;i<elist.size();i++) {
                        SynthesizerModeDesc desc = (SynthesizerModeDesc)elist.elementAt(i);
                        model.addElement(desc.getModeName());
                        list.put(desc.getModeName(),desc);
                   synth = Central.createSynthesizer((SynthesizerModeDesc) list.get(preferences.get("voice.selected","")));
                   synth.allocate();
                   synth.resume();
              catch(EngineException ex) {
                   ex.printStackTrace();
              catch(AudioException ex) {
                   ex.printStackTrace();
              final JTextArea textArea = new JTextArea();
              textArea.setLineWrap(true);
              textArea.setWrapStyleWord(true);
              JScrollPane scrollPane = new JScrollPane(textArea);
              getContentPane().add(scrollPane,BorderLayout.CENTER);
              JToolBar toolBar = new JToolBar();
              JButton button = new JButton("Open");
              button.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ev) {
                        JFileChooser fileChooser = new JFileChooser(preferences.get("voice.openDirectory",System.getProperty("user.dir")));
                        if(fileChooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
                             readFile = fileChooser.getSelectedFile();
                             preferences.put("voice.openDirectory",readFile.getParent());
                             try {
                                  FileReader reader = new FileReader(readFile);
                                  textArea.read(reader,readFile.getName());
                                  reader.close();
                             catch(IOException ex) {
                                  ex.printStackTrace();
              toolBar.add(button);
              button = new JButton("Clear");
              button.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ev) {
                        textArea.setText("");
              toolBar.add(button);
              toolBar.add(button);
              button = new JButton("Start");
              button.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ev) {
                        String str = textArea.getSelectedText();
                        if(str != null && str.length() > 0) {
                             synth.speakPlainText(str.toLowerCase(),null);
                             textArea.setSelectionStart(0);
                             textArea.setSelectionEnd(0);
                        else {
                             str = textArea.getText();
                             synth.speakPlainText(str.toLowerCase(),null);
              toolBar.add(button);
              button = new JButton("Stop");
              button.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ev) {
                        try {
                             synth.cancel();
                        catch(ArrayIndexOutOfBoundsException ex) {}
              toolBar.add(button);
              toolBar.addSeparator();
              toolBar.add(new JLabel("Voice:"));
              voices = new JComboBox(model);
              voices.setSelectedItem(preferences.get("voice.selected",""));
              voices.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ev) {
                        try {
                             synth.deallocate();
                             String str = (String) voices.getSelectedItem();
                             preferences.put("voice.selected",str);
                             synth = Central.createSynthesizer((SynthesizerModeDesc) list.get(str));
                             synth.allocate();
                             synth.resume();
                        catch(EngineException ex) {
                             ex.printStackTrace();
                        catch(AudioException ex) {
                             ex.printStackTrace();
              toolBar.add(voices);
              toolBar.addSeparator();
              button = new JButton("Exit");
              button.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ev) {
                        try {
                             synth.deallocate();
                        catch(EngineException ex) {
                             ex.printStackTrace();
                        preferences.putInt("voice.mainWindow.x",getLocation().x);
                        preferences.putInt("voice.mainWindow.y",getLocation().y);
                        preferences.putInt("voice.mainWindow.width",getSize().width);
                        preferences.putInt("voice.mainWindow.height",getSize().height);
                        System.exit(1);
              toolBar.add(button);
              getContentPane().add(toolBar,BorderLayout.NORTH);
              final JTextField textField = new JTextField();
              textField.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ev) {
                        String txt = textField.getText();
                        if(txt.length() > 0) {
                             textArea.append(txt+'\n');
                             synth.speakPlainText(txt, null);
                             textField.setText("");
              getContentPane().add(textField,BorderLayout.SOUTH);
              int x = preferences.getInt("voice.mainWindow.x",1);
              int y = preferences.getInt("voice.mainWindow.y",1);
              int width = preferences.getInt("voice.mainWindow.width",640);
              int height = preferences.getInt("voice.mainWindow.height",480);
              setLocation(x,y);
              setSize(width,height);
              setVisible(true);
         public int compare(Object obj1, Object obj2) {
              SynthesizerModeDesc desc1 = (SynthesizerModeDesc) obj1;
              SynthesizerModeDesc desc2 = (SynthesizerModeDesc) obj2;
              return desc1.getModeName().compareToIgnoreCase(desc2.getModeName());
         public static void main(String args[]) {
              new JavaVoice();
         class AppCloser extends WindowAdapter {
              public void windowClosing(WindowEvent ev) {
                   try {
                        synth.deallocate();
                   catch(EngineException ex) {
                        ex.printStackTrace();
                   System.exit(1);
    ---------------------------------------------------------------------------------------------------------

    use code tags, post the error message.
    http://forum.java.sun.com/help.jspa?sec=formatting

  • Can anyone help me to find the Java Speech API?

    I really need to use the Java Speech API but I don't have any idea where to find it.
    In the Sun page are many implementations of the API but I want to use it and is very important for me.
    Please, can anyone send me the little API...........

    Look at the thread two posts down, that might be what youre looking for. Theres also a thread seven posts down that will help you.

  • Regarding Java Speech APIs

    Hey,
    Can i know where do i find java speech API kit for download...can any one help me...it's urgent?

    Google [java speech api kit]

  • Where can i download java speech api?

    Hi All,
    Where can i download java speech api?
    Thanks

    Thanks for the java speech download recommendations. I am going to give it a try on my site.
    [Tony From Sports Betting Picks|http://tonyspicks.com/contact-tony/about/]
    Edited by: tonyt42 on Apr 9, 2009 10:01 PM

  • Java speech api download

    Where I can download JAVA SPEECH API implementation?.
    I have been searching in web, there are many options.
    I'm spanish, please, sorry for my poor english.
    Edited by: Valhalla on Feb 25, 2009 9:03 AM

    follow the below links...
    http://freetts.sourceforge.net/docs/index.php
    http://freetts.sourceforge.net/docs/jsapi_setup.html

  • I want to download  Java Speech API jar file  where can I get that ?

    hi All
    i started development on the Java Speech API. so were i can download the jar file and also if any one having the Maven artifact Id / group Id. please post it.it may helpful for me.
    Thanks
    Jega

    Sun has no such API like Java Speech API in their J2SE but there r other third parties api like FreeTTS which can be used
    to code speech apps.
    http://nchc.dl.sourceforge.net/project/freetts/FreeTTS/FreeTTS%201.2.2/freetts-1.2.2-bin.zip

  • Speech APIs in java

    Dear All,
    Can any one give brief description on java speech APIs. I want to build an application which recognizes users voice and perform the set of operations. Do i need any special hardware to be installed on my system???? What are the minimum system requirements for this.
    Advance TX for the reply.......

    Dear All,
    Can any one give brief description on java
    n java speech APIs. I want to build an application
    which recognizes users voice and perform the set of
    operations. Do i need any special hardware to be
    installed on my system???? What are the minimum system
    requirements for this.
    Advance TX for the reply.......From: http://java.sun.com/products/java-media/speech/forDevelopers/jsapi-guide/Introduction.html#8184
    1.6 Requirements
    To use the Java Speech API, a user must have certain minimum software and hardware available. The following is a broad sample of requirements. The individual requirements of speech synthesizers and speech recognizers can vary greatly and users should check product requirements closely.
    Speech software: A JSAPI-compliant speech recognizer or synthesizer is required.
    System requirements: most desktop speech recognizers and some speech synthesizers require relatively powerful computers to run effectively. Check the minimum and recommended requirements for CPU, memory and disk space when purchasing a speech product.
    Audio Hardware: Speech synthesizers require audio output. Speech recognizers require audio input. Most desktop and laptop computers now sold have satisfactory audio support. Most dictation systems perform better with good quality sound cards.
    Microphone: Desktop speech recognition systems get audio input through a microphone. Some recognizers, especially dictation systems, are sensitive to the microphone and most recognition products recommend particular microphones. Headset microphones usually provide best performance, especially in noisy environments. Table-top microphones can be used in some environments for some applications.

  • Speech API

    Hi i found the code below on Java.Sun and i have read about different
    speech engines like Freetts that develop the Java Speech API.
    But i still can not compile the following code as the 3 packages
    declared can not be found?
    Could anyone be so kind as to tell me what i need to install in oder to
    use these packages??!!
    Are there jar packages i need to reference in my classpath? wheer are these packages?
    cheers and thanks for any replys!
    import javax.speech.*;
    import javax.speech.synthesis.*;
    import java.util.Locale;
    public class HelloWorld {
    public static void main(String args[]) {
    try {
    // Create a synthesizer for English
    Synthesizer synth = Central.createSynthesizer(
    new SynthesizerModeDesc(Locale.ENGLISH));
    // Get it ready to speak
    synth.allocate();
    synth.resume();
    // Speak the "Hello world" string
    synth.speakPlainText("Hello, world!", null);
    // Wait till speaking is done
    synth.waitEngineState(Synthesizer.QUEUE_EMPTY);
    // Clean up
    synth.deallocate();
    } catch (Exception e) {
    e.printStackTrace();
    }

    * Copyright 2003 Sun Microsystems, Inc.
    * See the file "license.terms" for information on usage and
    * redistribution of this file, and for a DISCLAIMER OF ALL
    * WARRANTIES.
    import com.sun.speech.freetts.Voice;
    import com.sun.speech.freetts.VoiceManager;
    import com.sun.speech.freetts.audio.JavaClipAudioPlayer;
    //import javax.speech.*;
    //import javax.speech.synthesis.*;
    //import java.util.*;
    * Simple program to demonstrate the use of the FreeTTS speech
    * synthesizer. This simple program shows how to use FreeTTS
    * without requiring the Java Speech API (JSAPI).
    public class FreeTTSHelloWorld {
    * Example of how to list all the known voices.
    public static void listAllVoices() {
    System.out.println();
    System.out.println("All voices available:");
    VoiceManager voiceManager = VoiceManager.getInstance();
    Voice[] voices = voiceManager.getVoices();
    for (int i = 0; i < voices.length; i++) {
    System.out.println(" " + voices.getName()
    + " (" + voices[i].getDomain() + " domain)");
    public static void main(String[] args) {
    listAllVoices();
    String voiceName = (args.length > 0)
    ? args[0]
    : "kevin16";
    System.out.println();
    System.out.println("Using voice: " + voiceName);
    /* The VoiceManager manages all the voices for FreeTTS.
    VoiceManager voiceManager = VoiceManager.getInstance();
    Voice helloVoice = voiceManager.getVoice(voiceName);
    if (helloVoice == null) {
    System.err.println(
    "Cannot find a voice named "
    + voiceName + ". Please specify a different voice.");
    System.exit(1);
    /* Allocates the resources for the voice.
    helloVoice.allocate();
    /* Synthesize speech.
    helloVoice.speak("Thank you for giving me a voice. "
    + "I'm so glad to say hello to this world.");
    /* Clean up and leave.
    helloVoice.deallocate();
    System.exit(0);

  • Java Speech + JSP

    Hi
    I'm new to the Java Speech API and JSP. Does anybody know if it is possible to use java speech in jsp pages? Somebody told me if you want to use java speech on the web you need to use applets. It that true?
    Oh yeah, I'm using the FreeTTS implementation from SourceForge.
    Thanks
    jjamesis

    Sorry if this takes up too much space.
    Heres the error when I try to run my applet.
    java.lang.NoClassDefFoundError: javax/speech/EngineModeDesc
         at java.lang.Class.getDeclaredConstructors0(Native Method)
         at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
         at java.lang.Class.getConstructor0(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Heres the code for the applet
    import java.io.File;
    import java.util.Locale;
    import java.util.Vector;
    import javax.speech.Central;
    import javax.speech.Engine;
    import javax.speech.EngineList;
    import javax.speech.synthesis.Synthesizer;
    import javax.speech.synthesis.SynthesizerModeDesc;
    import javax.speech.synthesis.SynthesizerProperties;
    import javax.speech.synthesis.Voice;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class SpeechApplet extends JApplet implements ActionListener {
    private JPanel mainPanel;
    private JLabel label;
    private JButton button;
    private JTextField textField;
    Synthesizer synthesizer;
    public void init() {
    label = new JLabel();
    textField = new JTextField(20);
    button = new JButton("Click Me");
    button.addActionListener(this);
    mainPanel = new JPanel(new BorderLayout());
    mainPanel.add(label, BorderLayout.NORTH);
    mainPanel.add(textField, BorderLayout.CENTER);
    mainPanel.add(button, BorderLayout.SOUTH);
    Container c = getContentPane();
    c.add(mainPanel);
    setSize(100, 100);
    try {
    setup();
    } catch (Exception e) {}
    public void setup() throws Exception {
    String voiceName = "keven16";
    SynthesizerModeDesc desc = new SynthesizerModeDesc(
    null, // engine name
    "general", // mode name
    Locale.US, // locale
    null, // running
    null); // voice
    synthesizer = Central.createSynthesizer(desc);
    synthesizer.allocate();
    synthesizer.resume();
    desc = (SynthesizerModeDesc) synthesizer.getEngineModeDesc();
    Voice[] voices = desc.getVoices();
    Voice voice = null;
    for (int i = 0; i < voices.length; i++) {
    if (voices.getName().equals(voiceName)) {
    voice = voices[i];
    break;
    synthesizer.getSynthesizerProperties().setVoice(voice);
    public void speak(String input) throws Exception {
    synthesizer.speakPlainText(input,null);
    synthesizer.waitEngineState(Synthesizer.QUEUE_EMPTY);
    public void actionPerformed(ActionEvent ae) {
    try {
    String input = textField.getText();
    label.setText(input);
    } catch (Exception e) {}

  • Mobile Media API  and JMF

    can I use the mobile media api and JMF to send media from a pc and receive it on a java enabled mobile device (cell. phone).
    Thanks in advance

    ya u can.... u gotto use mmapi in mobile...and jmf in server...write a servlet code in jmf....call it from client using http connection

  • Two free copies of Mobile Media API (MMAPI) book available

    Hello everybody,
    My book on Mobile Media API has now been released by Apress. This book is called Pro Java ME MMAPI and you can buy it of Amazon (http://www.amazon.com/gp/product/1590596390/ref=sr_11_1/103-6578893-2197420?%5Fencoding=UTF8) or Apress's book website (http://www.apress.com/book/bookDisplay.html?bID=10101). The Apress website also contains a sample chapter on MMAPI lifecyle and events.
    I have two copies of the book to giveaway to anyone who promises to write a review on Amazon. Please email me if interested at [email protected]
    This is what the book covers from the publicity release:
    "Pro Java ME MMAPI book explores this API in detail. This book explains the architecture of this API, explores how this architecture sits with the Mobile Independent Device Profile (MIDP) and shows you how to make the best use of the multimedia capabilities of a Java enabled phone.
    This book has detailed examples that cover the basic stuff, like simple audio playback and tone generation to more advanced issues, like synchronized media playback, video, audio and image capture and streaming live radio. The book uses a real world mobile phone to demonstrate these examples, besides the Java Wireless Toolkit emulators and Motorola and BenQ emulators.
    This is the first book by a major publisher that covers this topic in detail. It provides an all-in-one reference to create multimedia applications for Java enabled phones using the MMAPI."
    I hope you find the book useful. :)
    Regards,
    Vikram Goyal
    [email protected]
    Author of Pro Mobile Media API (MMAPI) by Apress
    http://www.mmapibook.com

    hi ..
    did you have an answer to the first post ? if u did plz share me
    atspal@hotmailcom
    Kind Regards
    Ali

  • Camera Access in Mobile Media API

    Hi,
    I've recently started working with the Mobile Media API; I'm trying to access the camera in mobile phones. Whilst I've been able to do this via the VideoControl class, access via VideoControl is not ideal, as I actually want to carry out some processing on the image before I display it. Can anyone give me an idea as to how to access the pixel data from the camera directly, rather than having to go through VideoControl.
    I assume it is using DataSource and SourceStream, but as they are an abstract class and interface respectively I'm not quite sure where to go to get a useful instance.
    Hope that all makes sense. Thanks a lot.

    Hi
    The VideoControl class u r using is the best way because it encapsulates other funcitonalities like CreatePlayer ().As far as i know there is no way to acess camera pixels in CLDC and MIDP.Wel if u come to know about it please let me also know .
    Thanx.
    Amit

  • Playing a video using the Mobile Media API - JSR135

    Hello to Everybody,
    does anybody know the very exact video-format that a S60-Nokia-Phone
    suppot ? I create a video-file with the Quick Time Video Player Version 7.0.3.
    Following video-file-features :
    Content Type is 3gpp - Release 5
    Video-Format : H.263
    Data-Rate : 64 kbps
    Image-Sitze : 176 x 244 QCIF
    Image-Rate : 10 Images per second
    Key-Frame : All - 24 Images
    When I invoke the "start-method of a Player-Instance" in my MIDlet on a
    Nokia-S60-Emulator of the Nokia Prototype SDK 3.0 for J2ME I get the
    following Exception :
    java.lang.ArrayIndexOutOfBoundsException: 13
    at com.nokia.phone.sdk.concept.util.mmedia.video.v3gpp.VideoTrack.readFrame(VideoTrack.java)
    at com.sun.media.SourceThread.process(BasicSourceModule.java:664)
    at com.sun.media.util.LoopThread.run(LoopThread.java:135)
    Here the emulator is hanging...
    Now I kill the Emulator-Process and the Exception continues with...
    java.lang.InterruptedException: sleep interrupted
    at java.lang.Thread.sleep(Native Method)
    at com.nokia.phone.sdk.concept.mirrors.mma.media.player.VideoPlayer.doPrefetch(VideoPlayer.java)
    at com.nokia.phone.sdk.concept.mirrors.mma.media.player.BasicPlayer.prefetch(BasicPlayer.java)
    at com.nokia.phone.sdk.concept.mirrors.mma.media.player.BasicPlayer.start(BasicPlayer.java)
    at com.nokia.phone.sdk.concept.mirrors.mma.media.MMAManager.start(MMAManager.java)
    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 com.nokia.phone.sdk.concept.gateway.g.a(g.java)
    at com.nokia.phone.sdk.concept.gateway.g.run(g.java)
    at java.lang.Thread.run(Unknown Source)
    Can anybody reproduce this error-message or does anybody encountered this error and know the solution ?
    Maybe "QuickTime Video Player 7.0.3" is the wrong software to
    create 3gpp-Videos ? Is there anything else advisable to produce 3gpp-videos ?
    Best Regards and thanx for investigations...

    App menu > Premierepro > Keyboard Shortcuts...
    Then inside the Keyboard Shortcuts dialog, find: Application>Window>Markers and assign a shortcut. The only hard part is finding one not yet in use... you'll probably have to use shift/option/ctrl modifiers.

  • Speech API and ViaVoice

    I installed ViaVoice today and the speech api to go with it. I got the SDK from the ibm viavoice website. When i run the following code i get a null return from Central.createSynthesizer(new SynthesizerModeDesc(Locale.US));
    Anyone know what is going on with this thing? It doesn't provide much debugging output.
    import javax.speech.*;
    import javax.speech.synthesis.*;
    import java.util.Locale;
    import javax.swing.JOptionPane;
    public class speech {
      private JOptionPane jOptionPane = new JOptionPane();
      private Synthesizer syn;
      public void javaSpeak(String s){
        try{
          syn = Central.createSynthesizer(new SynthesizerModeDesc(Locale.US));
          EngineList engines = Central.availableSynthesizers(null);
          EngineList recog = Central.availableRecognizers(null);
          System.out.println("recognizer: " + recog.size());
          System.out.println("synthesizer: " + engines.size());
          if(syn!=null){
            syn.allocate();
            syn.resume();
            syn.speakPlainText(s,null);
            syn.waitEngineState(syn.QUEUE_EMPTY);
          else{
            System.out.println(s);
          }catch(EngineException e){System.out.println("Engine Exception: " + e);}
          catch(AudioException e){System.out.println("Audio Exception: " + e);}
          catch(InterruptedException e){System.out.println("Interrupted Exception: " + e);}
      public void cleanup(){
        try{
          if(syn!=null){
            syn.deallocate();
          }catch(EngineException e){System.out.println("Engine Exception: " + e);}
    }

    Have you tried getAvailableLocales() of Locale class to see whats available ?, though i can't see why Locale.US wouldn't be available ( http://forum.java.sun.com/thread.jsp?thread=300764&forum=16&message=1206155 if it isn't i guess).
    Have you also tried,
    Locale.setDefault("en","US");
    Synthesizer sintethesizer =
    Central.createSynthesizer(null);
    Might not be this at all, still looking here but i'm mostly getting unanswered questions in mailing lists etc.

Maybe you are looking for

  • How to fill Long Text in Accounting document in the item level.

    Hi, I need to fill Long Text field in item level of accounting document from the header texts from Billing header(say billing instructions) I checked the user exit EXIT_SAPLV60B_008 but it didnt worked in my case. I have read the billing instructions

  • How to configure the GPIB controller in LABVIEW or MAX to send UNLISTEN and UNTALK when each message ends?

    In a PC to PC GPIB configuration, one PC is used as a non-controller and it reads either LACS or TACS status bits continuously. It apears that the controller PC does not send UNTALK and UNLISTEN at the end of each message. The non-controller reads an

  • Changes made in iphoto library are not showing up in aperture

    I currently have Aperture referencing my photos off of my iphoto library. I have made changes (consolidated a couple of events) and imported more photos from my camera and both are not showing up in Aperture. The new photos I imported were placed int

  • Project opens as relative

    When I open a project in LabView 2009 it opens as a relative location based on the network drive  \\ server \ stuff This is brand new behaviour that started today. I can go to the Recent projects on the splash screen and retrieve the projects as they

  • Video call keeps saying busy

    Ok...my sister just downloaded skype on her Android phone. We added each other as contacts and every time I go to video call her, it says she is busy when I know she is not. What can I tell her to do about that?