Trouble reading user input in Mac OSX

Hi, I am writing a program in Java (1.5) for Mac OSX that requires the user to setup files and settings, then a new frame opens with a blank screen and waits for user input (a key press) to begin. I have a setup screen that works fine (seperate frame) and triggers the blank screen and the rest of the program fine as well. The problem is when I try to have the program pause for user input. For some reason, this thread is no longer responding to user input at all. I have tried with a KeyListener Interface and with System.in.read() as well as BufferedReaders, etc and there are no keypresses registered at all.
Another object does create a seperate thread to deal with closing down Quicktime elements, but the keypresses are not registering even when that thread has not been called.
Can anyone tell me what might be the problem? Is there an issue with multiple frames interfering with the KeyListener? I can post the code, if you'd like, but it's pretty involved.
Any help greatly appreciated!
Heidi

Actually, this still isn't working. I'm posting the program class (there are several supporting classes that are not in this post - SetUp opens a SetUp frame and gathers information, then calls MTSNewSwing. Start movie places a Quicktime Component into a Panel, and QTSessionCheck starts a thread that check to make sure that QT sessions are closed when neccessary). KeyPresses are stll not being registered at all.
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
import java.util.*;
import java.io.*;
import quicktime.*;
import quicktime.std.*;
import quicktime.app.view.*;
import quicktime.std.movies.*;
public class MTSNewSwing extends JFrame{
     public Insets getInsets() {
          Insets rm = new Insets (20, 20, 20, 20);
          return rm;
char key = 'q';
int correct = 0;
boolean kp = false;
int numberOfMovies;
ArrayList<File> moviesList = new ArrayList();
ArrayList<File> altList = new ArrayList();
     public MTSNewSwing() {
          super("Matching to Sample");
          setSize(1024, 768);
          setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
          setBackground(Color.black);
          getRootPane().registerKeyboardAction(new ActionListener(){
               public void actionPerformed(ActionEvent e) {
               System.out.println("keystroke"); }
          },KeyStroke.getKeyStroke(KeyEvent.VK_ENTER,0),JComponent.WHEN_IN_FOCUSED_WINDOW);
          moviesList = SetUp.movieList;
          numberOfMovies = moviesList.size();
          int randomSampleIndex;
          int randomAlternativeIndex;
          boolean corrAltAdded = false;
          //run new trial through numOfTrials
          for (int t = 0; t < SetUp.numOfTrials; t++) {
               //clear screen
               BlankScreen bs = new BlankScreen();
               getContentPane().add(bs);
               setVisible(true);
               //put random alternatives into array list
               randomSampleIndex = (int) (Math.random() * SetUp.numOfMovies);
               File sample = (File) moviesList.get(randomSampleIndex);
               altList.add(sample);
               int correctAlternativePosition = (int) (Math.random() * SetUp.numOfAlternatives);
               for (int altPosition = 1; altPosition <= SetUp.numOfAlternatives; altPosition++) {
                    if (altPosition == correctAlternativePosition) {
                         altList.add(sample);
                         corrAltAdded = true;
                         System.out.println("correct alternative added");
                    } else if (altPosition == SetUp.numOfAlternatives && corrAltAdded == false) altList.add(sample);
                    else {
                         do {
                              randomAlternativeIndex = (int) (Math.random() *
SetUp.numOfMovies);
                         } while (randomAlternativeIndex == randomSampleIndex);      
                         File nextAlt = (File) moviesList.get(randomAlternativeIndex);
                         altList.add(nextAlt);
                         System.out.println("alternative added");
               corrAltAdded = false;
               //wait for keypress to start trial
          //this is the part that still doesn't work
               //add movies to screen
               for (int i=0; i<= SetUp.numOfAlternatives; i++) {
                    File file = (File) altList.get(i);
                    StartMovie sm = new StartMovie();
                    try {
                         sm.go(file);
                    } catch (Exception e) {
                         e.printStackTrace();
                    if (SetUp.numOfAlternatives < 4) {
                         BorderLayout bdr = new BorderLayout();
                         this.setLayout(bdr);
                         JPanel samp = new JPanel();
                         JPanel alts = new JPanel();
                         BorderLayout altbdr = new BorderLayout();
                         alts.setLayout(altbdr);
                         if (i ==0) {
                              samp.add(sm);
                              this.getContentPane().add(samp, BorderLayout.NORTH);
                              setVisible(true);
                              System.out.println("sample added");
                         } else if (i == 1) {
                              alts.add(sm, BorderLayout.WEST);
                              System.out.println("alt1 added");
                         } else if (i == 2) {
                              alts.add(sm, BorderLayout.EAST);
                              System.out.println("alt2 added");
                         } else if (i == 3) {
                              alts.add(sm, BorderLayout.CENTER);
                              System.out.println("alt3 added");
                         this.getContentPane().add(alts, BorderLayout.SOUTH);
                         setVisible(true);
                         try {
                              Thread.sleep(10000);
                         } catch (InterruptedException ex) {
                              ex.printStackTrace();
                         continue;
     public static void main(String args[]) {
               SetUp setup = new SetUp();
}

Similar Messages

  • Where is button to accept end user agreement so I can download or read online file.  mac osx reader XI

    where is button to accept end user agreement so I can download or read online file.  mac osx reader XI
    every time i click  on a file to downloac
    i get a reader message Before viewing PDF ... you must launch adobe reader and then accept the End User License Agreement. Ive searched  every part of the menu for this and cant fine it

    Ok, so the Reader app works. Fine, but why did you say ",the reader won't open any more", that led us a confusing direction.
    Ok, the problem is most likely caused because you downloaded Acrobat Pro, which takes over from Reader, then got rid of it. You now have part of Acrobat in Safari, not part of Adobe Reader.
    There are two things to try to fix this. The first and easiest is to download and install Adobe Reader again. That should puts its stuff back in Safari with a bit of luck.
    Important note for others following this thread. Downloading Adobe Reader is not going to help you if you have not understood and followed the instructions to "launch" Adobe Reader (or Adobe Acrobat). Make sure you understand what "launch" means before downloading anything again.

  • Cannot Read user input on Adobe Form .

    Hi team,
    Can you please go through the issue -
    Developed Interactive Adobe form. Called by webdynpro application.
    Interactive properties enable, display type - native, with pdfsource, template source and data source cleanly populated.
    Submit button is webdynpro native with option CLICK and corresponding code selected in ADOBE FORM.
    All the elements in adobe forms cleanly binded and checked more than 10 times to avoid any mistakes or wrong bindings.
    Event handler code is written for submit button to read the data eneted by user on adobe form.
      lo_el_zleaver_form->get_static_attributes(
        IMPORTING
          static_attributes = ls_zleaver_form ).
    User is able to enter data on adobe form and control is comming to Submit button code but i am not able to read the user input with above code.
    BASIS has check and confirmed that license is installed properly. I am using adobe reader 9 and adobe designer 8.2 and will ECC version 6.0 . Basis has confirmed the ADS configuration, Java stack and ABAP stack are compatible.
    We are using the ADS from SAP NetWeaver 7.01 (EhP1, Java Stack) in
    combination with SAP NetWeaver 7.00 SP15 (ABAP stack).
    Mohan.

    Hi Guys,
    I also created one more Adobe interactive form to test and again USER INPUT CANNOT BE READ. After user click on SUBMIT button the below code is written in SUBMIT button. I am not able to read department details below enteted by user. Is there any othe method you want me to call. I also tried GET_ATTRIBUTE
    Will there be any problem with above version of ADS or ALD etc..
          DATA lo_nd_zdept TYPE REF TO if_wd_context_node.
          DATA lo_el_zdept TYPE REF TO if_wd_context_element.
          DATA ls_zdept TYPE wd_this->element_zdept.
        navigate from <CONTEXT> to <ZDEPT> via lead selection
          lo_nd_zdept = wd_context->path_get_node( path = `ADOBE.ZDEPT` ).
        @TODO handle non existant child
        IF lo_nd_zdept IS INITIAL.
        ENDIF.
        get element via lead selection
          lo_el_zdept = lo_nd_zdept->get_element( ).
        @TODO handle not set lead selection
          IF lo_el_zdept IS INITIAL.
          ENDIF.
        get all declared attributes
          lo_el_zdept->get_static_attributes(
            IMPORTING
              static_attributes = ls_zdept ).
    This is other interactive form where i also tried GET_ATTRIBUTE
    USING GET_ATTRIBUTE***************
      node_info = lo_nd_zleaver_form->get_node_info( ).
    I tried both GET_ATTRIBUTE and GET_ATTRIBUTES but failed.
      node_info->GET_ATTRIBUTES(
      RECEIVING
      ATTRIBUTES = stru_zleaver_Forms ) .
    OR
    lo_nd_zleaver_form = WD_CONTEXT->GET_CHILD_NODE( NAME = WD_THIS->WDCTX_ZLEAVER_FORM ).
      lo_EL_zleaver_form->GET_ATTRIBUTE( EXPORTING NAME  = 'LEAVES_TAKEN'
                               IMPORTING VALUE = LW_LEAVES_TAKEN ).

  • Adobe Reader 9 Silent Install Mac OSX Leopard

    When I try to install the pkg silently (I want to distribute it on all our machines) nothing seems to happen. I'm running leopard on intel.
    This is what i try to do:
    installer -pkg AdbeRdr90_en_US_i386.pkg -verbose -target /
    this is my result:
    installer: Package name is Adobe Reader 9
    installer: Upgrading at base path /
    installer: Preparing for installation.....
    installer: Preparing the Disk.....
    installer: Preparing Target Volume
    installer: Preparing Adobe Reader 9.....
    installer:
    installer: Installing Adobe Reader 9.....
    installer:
    installer: Configuring Installation
    installer: Validating package
    installer: Writing files
    installer: Writing files: 0% complete
    installer: Writing files: 0% complete
    installer: Running Installer Script
    installer: Writing package receipt
    installer: Finishing Installation.....
    installer: Finishing Installation
    I'm worried about the lines :
    Writing files: 0% complete
    Has anyone seen this problem before? When I run the install manualy so by clicking on in the finder the install just runs fine.
    Many thanks in advance!
    Bjorn

    Hi Bjorne,
    Looks like I've got the same issue, only with Flash Player 9 Silent installer on Mac OSX Leopard. Did you find a workaround?
    Stuart

  • I desperately need to UNINSTALL adobe reader XI from my Mac OSX, does anyone know how?

    I have installed Adobe Reader XI and I have found it will force other (main) programs to crash. I desperately need to uninstall it from my Mac osx. Does anyone know how to do this? It does not have an uninstall function and adobe customer help don't know what I can do.

    hello
    i have exactely the same problem than Photoguru76
    i have removed the 2 plugin AdobePDFViewer.plugin and AdobePDFViewerNPAPI.plugin
    but i have a black page when i want to open a pdf from internet
    what can i do to really uninsatll AR
    thank you for your help

  • Help With Homework Reading user input into an Array

    This program is to read questions from a file and retrieve user input as answers.
    This program is no where near complete, but I am stuck. (I dont know why, maybe its too late at night)
    I have a total of three classes. I am currently stuck in my main class. See Comments ("What the hell am I printing/ Will this work?"). In this next line of code, i need to read the question from the file to the user, and then accept their input.
    Main Class:
        public static void main(String[] args) {
            try {
            Scanner in = new Scanner(new FileReader("quiz.txt"));
                catch (Exception e) {
                System.out.println(e);
            ArrayList <Questions> Questions = new ArrayList<Questions>();
            ArrayList<String> answers = new ArrayList<String>();
                  for (Questions qu : Questions)
             System.out.println(); //What the hell am I printing.
             String answer = in.nextLine(); //Will this work?
             answers.add(answer); //This should work
          }Questions Class:
    public class Questions {
        String Questions = "";
        public String getQuestions() {
            return Questions;
        public void setQuestions(String Questions) {
            this.Questions = Questions;
        public Questions(String Questions)
            this.Questions = Questions;
    }answers class:
    package QuizRunner;
    * @author Fern
    public class answers {
        String answers = "";
        public String addAnswers() {
            return answers;
        public answers(String answers) {
            this.answers = answers;
        }

    doremifasollatido wrote:
    According to standard Java coding conventions, class names should start with a capital letter (so, your "answers" should be "Answers"). And, variable and method names should start with a lowercase letter (so, your "Questions" should be "questions").
    And classnames should (almost) never be plural words. So it should probably be an 'Answer' and something else containing a collection of those objects called 'answers'.
    Also, *your variable name should not be the same (case-sensitive match) as your class name.* Although it will compile if done syntactically correctly, it is highly confusing! I first wrote this because you did this for both "Questions" and "answers" classes in their class definition, but you also used "Questions" as your variable name in 'main'. (Note that applying the standard capitalization conventions will prevent you from using the same name for your class name as for your variable name, since they should start with different cases.)
    Of course having an 'Answer' called 'answer' is often fine.
    Your Questions class should probably be called "Question", anyway--it looks like it should hold a single question. And, your "answers" class should probably be called "Answer"--it looks like it should hold a single answer. You aren't using your "answers" class anywhere right now, anyway.Correct. There might be room for a class containing a collection of Question objects, but it's unlikely such a class would contain just that and nothing else.

  • How can i read user input value to my User exist

    Hi Guru's,
    I am facing one problem in Variables in BPS.
    I am calculating days from Month/year .I have one variable it is for Days,Second variable it is for Month/Year.
    First variable is user exist (for calculating the days),Second varible is user defined variable(this is a Input to the first variable).
    When i am giving the Month/Year(02/2008)variable i am getting the 29 days from the first variable.again i am changing the value of Month/Yera(03/2008) i am not getting the desired value.
    my doubt is my user exist not able to read current value of variable(month/year).how can i pass my value to user exist because this value is user input value based on this value i am calculating the days and dynamically displaying the layout.
    Here is the my sample code..
    seq = '0000'.
    ind = 0.
       i_area = 'ZTEST1'.
       area_var = 'ZVar2'.
    PERFORM instantiate_object USING    i_area
                                        area_var
                                 CHANGING lsr_var.
    PERFORM get_current_value_of_variable
                            USING lsr_var
                            CHANGING lto_value.
    READ TABLE lto_value INTO lso_value index 1  .
    i_month = lso_value-low.
    iv_month = i_month+4(2).
    iv_year = i_month(4).
    concatenate iv_year iv_month '01' into iv_date.
    begindate = iv_date.
    below bracket code calculating the leap year
    ( IF iv_date+4(2) = lc_feb.
        lv_hlp_date_year = iv_date+0(4).
        lv_hlp_rest      = lv_hlp_date_year MOD 4.
        IF lv_hlp_rest = 0.
          EV_DAYS = lc_days_29.
          lv_hlp_rest = lv_hlp_date_year MOD 100.
          IF lv_hlp_rest = 0.
            lv_hlp_rest = lv_hlp_date_year MOD 400.
            IF lv_hlp_rest NE 0.
              EV_DAYS = lc_days_28.
            ENDIF.
          ENDIF.
        ELSE.
          EV_DAYS = lc_days_28.
        ENDIF.)
      ELSE.
    below bracket code calculating the days
    (   CASE iv_date+4(2).
          WHEN lc_jan. EV_DAYS = lc_days_31.
          WHEN lc_mar. EV_DAYS = lc_days_31.
          WHEN lc_may. EV_DAYS = lc_days_31.
          WHEN lc_jul. EV_DAYS = lc_days_31.
          WHEN lc_aug. EV_DAYS = lc_days_31.
          WHEN lc_oct. EV_DAYS = lc_days_31.
          WHEN lc_dec. EV_DAYS = lc_days_31.
          WHEN lc_apr. EV_DAYS = lc_days_30.
          WHEN lc_jun. EV_DAYS = lc_days_30.
          WHEN lc_sep. EV_DAYS = lc_days_30.
          WHEN lc_nov. EV_DAYS = lc_days_30.
          WHEN OTHERS.   CLEAR EV_DAYS.
        ENDCASE.)
      ENDIF.
    data: st_date(2) type c.
    st_date = '01'.
    ind = 0.
    ind = ind + 1.
    here i am passing the low value and high value.
    yto_charsel-chanm = '0CALDAY'.
    yto_charsel-seqno = 1.
    yto_charsel-sign  = 'I'.
    yto_charsel-opt   = 'EQ'.
    yto_charsel-LOW = st_date.
    yto_charsel-chanm = '0CALDAY'.
    yto_charsel-seqno = 1.
    yto_charsel-sign  = 'I'.
    yto_charsel-opt   = 'BT'.
    yto_charsel-high = ev_days.
    INSERT yto_charsel INTO sto_charsel INDEX ind.
    ETO_CHARSEL = sto_charsel.
    lto_value = sto_charsel.
    How can i pass user input value to read this exist ,some where again i have to write code or else??
    This is very urgent can you help me..

    Hi,
    Instead of two perform statements, use single perform.
    PERFORM get_value USING i_area
                              i_variable
                         CHANGING lw_varsel.
    Take the values from lw_varsel-low.
    FORM statement for this perform is as follows.
    DATA: li_varsel TYPE STANDARD TABLE OF upc_ys_api_varsel,
            lv_varsel TYPE REF TO cl_sem_variable.
      FORM get_value USING p_area TYPE upc_y_area
                           p_variable TYPE upc_y_variable
                     CHANGING
                           p_lw_varsel TYPE upc_ys_api_varsel.
        CALL METHOD cl_sem_variable=>get_instance
          EXPORTING
            i_area       = p_area
            i_variable   = p_variable
             I_CREATE     =
          RECEIVING
            rr_variable  = lv_varsel.
           EXCEPTIONS
             NOT_EXISTING = 1
             others       = 2
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
        REFRESH li_varsel.
    ****Getting the Value*********
        CALL METHOD lv_varsel->get_value
          EXPORTING
            i_user     = sy-uname
            i_restrict = 'X'
          RECEIVING
            rto_value  = li_varsel.
        CLEAR : p_lw_varsel.
        READ TABLE li_varsel INTO p_lw_varsel INDEX 1.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
      ENDFORM.                    "get_value
    Try this code.
    Bindu

  • Reading user input in console

    I want to read user information from the console.
    How can I flush the buffer before reading the next input from the user?

    buff = new BufferedReader(new InputStreamReader(
    System.in )); System.out.print("Enter
    Character:");
    System.out.flush();
    String s = buff.readLine();
    c=s.charAt(0);
    System.out.println("You entered " + c + " " + s);
    this is cleaner and more efficient. and is the flush
    to System.out realy neccesary? isn't System.out
    initialized so that any data written is automaticaly
    flushed?Always other ways of doing things, in this case, probably your way is superior. But ... if you do:
          st = new StringTokenizer(S);
          byte b = Byte.parseByte(st.nextToken());... you can make a quick switch for other kinds of data. You could also do:
          String s2 = s.substring(0,1);
          byte b = Byte.parseByte(s2);I suppose. Options ... have a great weekend;
    ~Bill

  • Reading user input from a form within a workflow and perform actions in workflow based on the input

    Sharepoint 2013
    Need to get input from a user based on some condition within a workflow and based on the input received continue with the workflow. It can be a form with a text box and button to which i can redirect and when user enters a value and clicks on the button
    ,I should come back to the workflow and perform other processing. I should also be able to manually start this workflow from VS.
    Tried different approaches like initiation forms ,user input action of SP2010 etc all of these approaches either add some tasks to task list or force me to click on the workflow link to get input from a user.
    Any suggestions on this?

    Hello
    Thanks for the code, but I don't need an array of beans. By the way this code make a bean and an arraylist everytime it's called?
    I was looking for something like this:
    <form action="myjsp.jsp" method="post">
    ...so after submitting the result will go to the myjsp.jsp file and in the myjsp.jsp file
    <jsp:useBean id="value" class"myBean">
    <jsp:setpropertiy name"value" ....>so everytime I click the add button the values will go the mysjp.jsp file and that will set them in the javabean file. this method uses two files but I was looking for doing this in the same jsp file and not sending it to another file.
    chers
    Ehsan

  • Trouble installing Flash 10 with Mac OSX 10.5.8

    I have a Powerbook running Mac OSX 10.5.8 and had Flash 8. I was unable to play a video and was directed to the website to update my player.  Flash 10 downloaded without difficulty but when I tried to install it, I got an error message:
    "The following install step failed: run preflight script for Adobe flash Player. Contact the software manufacturer for assistance."
    Where can I get this help or what can I do?
    Thanks, MJ

    Hello,
    Flash Player 10.3.183.90 is the last version to support OS X 10.5.8.  Go to http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html and download the 10.3.183.90 archive file.  Extract the content and use the file flashplayer_10_3r183_90_mac_intel.dmg to install Flash Player on OS X 10.5.8.
    Maria

  • Trouble installing Photoshop CS6 on Mac OSX lion

    I bought Photoshop CS6 extended and am trying to install it on my Mac OSX Lion v. 10.7.4 and I keep coming up with the install error of:
    Exit Code: 34
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 0 error(s), 0 warning(s)
    FATAL: Payload '{9FC6805B-9FD9-410A-A620-51D58644999D} Camera Profiles Installer_7.1_AdobeCameraRawProfile7.0All 6.0.98.0' information not found in Media_db.
    This comes up after I get the install bar and it only makes it to 1-2% installed.
    What can I do so that I can install the program on to my computer. I know that I have more than enough free hard drive space for the program (based on its requirements).

    Check these thread :-
    http://forums.adobe.com/message/4555826
    http://forums.adobe.com/message/4402184

  • I can't access "Advanced Options" in my User Account for Mac OSX

    I cannot access the "Advanced Options" menu when I right click on my user account in System Preferences.  When I right click, the option shows up, but nothing happens when I click on it.  It does allow me to access it for other users, as I am the administrator. 
    I think I have a problem with my login shell, because I also cannot access Terminal.  I was trying to access the Advanced Options to select a user shell.  Any ideas?

    Hi Will,
    You would simply need to create a new user account (with a different name) and then transfer all of the data from your current user account, to the new one.
    You could try a permissions repair first, or resetting the ACLs for your account.
    Open Disk Utility, and choose Macintosh HD, then 'Repair Disk Permissions' and let that run.
    For the ACLs:
    Insert the OS X install disc, restart and hold down 'C'. Once booted to the install disc, choose Utilities -> Reset Password. In the bottom of that window, you should see "Reset Home Folder ACLs", click 'Reset', then click the Mac OS X Install DVD" and choose 'Quit Installer'

  • Having trouble installing Photoshop & Illustrator on Mac OSX 10.7.4

    Hello Im having trouble installing Photoshop CS6 and Illustator CS6. I am geting the following errow while trying to install in Creative Cloud Download Manager:
    Exit Code: 34
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 0 error(s), 0 warning(s)
    FATAL: Payload '{9FC6805B-9FD9-410A-A620-51D58644999D} Camera Profiles Installer_7.1_AdobeCameraRawProfile7.0All 6.2.10.0' information not found in Media_db.
    What should I do? I've installed them before, but uninstalled them both. Now I am getting the following error. Thanks! Any help will be appreciated.

    It is difficult to determine the point of failure from your install log summary.  I would recommend reviewing the install logs in their entirety to locate the exact error.  You can find details on how to accompplish this at Troubleshoot with install logs | CS5, CS5.5, CS6 - http://helpx.adobe.com/creative-suite/kb/troubleshoot-install-logs-cs5-cs5.html.

  • Trouble installing Lightroom 4 to Mac OSX 10.6.3

    I just upgraded to OSX 10.6.3 and lightroom 4 still isn't installing. I keep getting a message saying "The operation couldn't be completed. (com.apple.installer.pagecontroller error-1.) Couldn't open 'Adobe Photoshop Lightroom 4.pkg'."  I noticed when I go to my order and click download it brings me to a page with 3 options. Mac/Win, English, Windows, Multiple Languages, and Mac, Multiple Languages. The first option, Mac/Win, English has a serial number assigned to it and the other two do not, but when I go to download the first option with the serial number says not applicable next to it. The other two are available for download, but don't have a serial number next to them, Maybe that's part of the problem? I don't know what to do! Please help! Thanks!

    Hi
    According to the minimum sytem requirements required for the
    Adobe Photoshop Lightroom 4
    Mac OS
    Multicore Intel processor with 64-bit support
    Mac OS X v10.6.8 or v10.7
    2GB of RAM
    1GB of available hard-disk space
    1024x768 display
    DVD-ROM drive
    Internet connection required for Internet-based services*
    So the Minimum required is MAC 10.6.8 or 10.7
    Hope It Helps
    Thanks

  • Trouble installing WMA & WMV for mac osx

    I just purchased my ibook 14" two weeks ago, I used to listen to radio programs online from international sites and some business sites. Both of these offer to download and intall WMA & WMV for mac but after I download I can't seem to get the stream??? I tried installing a VLC player, but I don't know how to make it my default player?? Can anyone help me with setting this up? I'm clueless!!

    Well, have you tried Windows Media Player for Mac? I have version 9.0.0 and I can access Internet Radio sites directly from the Application. Or must you use the other media player to listen to those broadcasts?
    Sorry i cant help more than that. I guess I am just limited in Mac knowledge!
    Nathan.

Maybe you are looking for

  • Sliding page interface - nav buttons

    Hello, I am creating a site for a client that involves a large movie clip with 9 different "pages" in a 3x3 grid. Each page is the same size as ths stage, so only one can be seen at a time. The use will click arrows to navigate up, down, left, or rig

  • 'Some images are missing because they were deleted from the document'

    Hi, I created a document in Pages v5.2 last week and have just opened it and received the following message: 'Some images are missing because they were deleted from the document' When I try and replace the missing images I get the following message:

  • Xorg.conf - Acer 2016W screen

    Hello, yesterday I bought a new screen (acer 2016W) and I'd like to know how I should reconfigure my xorg.conf to be able to use its maximal resolution (1680*1050). I suppose I should add a line in the modelines but I don't know how. By the alsa supp

  • Building Applicatio​n for SCXI 1530, App will not call 1530 properly

    Hello, I'm working on building an application for a SCXI 1530. I have a scxi 1000 module with a scxi 1600-usb card. In slot 2 is the 1530 for accelerometers and in slot 4 is a card for lvdts (1540). I'm using labview developer suite 8.2.1 on a deskto

  • Sorting by XML tag

    I am using Oracle 8i for storing XML files in a CLOB column and that column is intermedia text indexed. Is there any way to sort a query output based on an XML tag within that CLOB column. for eg., <price>10.22</price> is an XML tag, can i sort on pr