Strange Behavior - need help!

Okay,
I'm running an iBook 600, 10.3.9 on a dial-up connection via the built in modem and seem to be having a very weird connection issue.
When connected, which is easily attained, etc., I have email and ftp capabilities but absolutely NO web (nothing via Safari, Netscape, Firefox or Explorer). No iTune's connection or Software Update. Has anyone else experienced this? If so, how can I get it fixed? Does my modem string need to be updated/fixed? Or is finally breaking down and getting my dsl installed in the house so I go wireless my only solution?
Btw, all works just fine via wireless connection so I know it's not the web browsers.
Thanks!...
Kari.
ebayless in Seattle

Eek! There have been people complaining about disabled dialup modems after moving up a major release of MacOS X, but usually it is about the modem not working at all because of a driver being changed. Your problem is quite weird.
It may well be your modem initialization string or a driver, but everything would seem to argue that the breakdown is at a higher level. Otherwise, why would FTP work?
So, try deleting your network and modem preferences and repairing permissions on your hard drive first. That unfortunately is the desperation answer, but it does in fact work quite often.
Sorry not to be able to help you more. You probably need to find a dialup modem expert, if such a person even exists nowadays.
Good luck.

Similar Messages

  • This is detailed: I lost my touch pad scroll ability on my desktop when I installed Firefox, I am having a terrible time trying to sync my new Android tablet to my desktop, my desktop Firefox is acting very strangly (I need help trying to use it)

    My Vista Home Premium desktop has not used Firefox for a long time. I just loaded it as well as on my Honeycomb Android. The statement that I made pretty much says what my problem is. I can use both of them at the same time and use a router with the air Verizon card installed.
    I'll repeat my question: This is detailed: I lost my touch pad scroll ability on my desktop when I installed Firefox, I am having a terrible time trying to sync my new Android tablet to my desktop, my desktop Firefox is acting very strangely (I need help trying to use it)

    My Vista Home Premium desktop has not used Firefox for a long time. I just loaded it as well as on my Honeycomb Android. The statement that I made pretty much says what my problem is. I can use both of them at the same time and use a router with the air Verizon card installed.
    I'll repeat my question: This is detailed: I lost my touch pad scroll ability on my desktop when I installed Firefox, I am having a terrible time trying to sync my new Android tablet to my desktop, my desktop Firefox is acting very strangely (I need help trying to use it)

  • Strange scenario - need help

    I have Skype on my Windows 8.1 laptop and on my Android tablet
    When I use the tablet for skype everything works great - except I am unable to create group calls which is absolutely eseential for my work.
    Therefore when I need to do group calls, I either get someone else to create the group or I try to use skype on the laptop.
    However this is when the problems start.
    Two common people I talk with are CJ and NT.
    CJ uses Skype on a Mac Laptop.
    NT uses skype on a Windows 8.1 laptop.
    * If I have a call with CJ on the tablet, everything works 100% fine
    * If I have a call with NT on the tablet, everything works 100% fine
    * If I have a call with CJ on the laptop, his sounds randomly cuts out (usually in 3-5 seconds blocks, maybe every 5-10 minutes)
    * If I have a call with NT on the latop, everything works 100% fine
    So... 
    * I thought the problem was with my audio output - but I never have the problem with NT?
    * I thought the problem was with CJs microphone - but I never have a problem when I talk with him on the tablet?
    I've tried...
    * Ehanced audio / non-enhanced audio
    * Re-install drivers
    * Headset / no headset
    It's really frustrating! Now my tablet is basically stuck as my skype phone however this means I cant do group calls which I really need.
    Please, anyone, help me solve this dilemna!
    I use skype every day.

    I've delved further into this testing am starting to see a trend...
    Other contacts of mine CC and HK are boths Mac users and they have similar problems to CJ mentioned above when on the laptop but never on the tablet.
    Meanwhile another contact AT is a windows user and they never have problems on both the tablet and the laptop.
    Therefore, the trend so far is that if I talk to a Mac User on my Windows 8.1 laptop I have audio problems, meanwhile every other scenario works fine!!
    P.S. These are regular contacts of mine which I NEVER had any problem on my Windows 7 laptop... wish I still had that laptop to re-test but I gave it away...

  • Scholar92 - Strange error Need help please

    Lecori Salutem
    The program I have a problem with is supposed to extract info from a DB. It extracts the info perfectly but I cannot access the info with my get commands from other classes.
    When i fire the program it says " [Ljava.lang.String;@1ba34f2 ". Can anyone help me to solve this problem please.
    ////////CODE STARTS HERE
    import java.sql.*;
    import javax.swing.*;
    /** Description:
    *  Die program word gebruik om al die metadata en paths wat getabuleer is
    *  op die Music DB te access en te stoor.
    *  @author Benni( [email protected])
    public class SQLImport
        private Connection connSQL;
            int tel = 2; // ID in SQL tabel begin by "2"
            String [] tName = new String [100];
    String [] tArtist = new String [100];
    String [] tGenre = new String [100];
    String [] tMood = new String [100];
    String [] tPath = new String [100];
    String [] tJavaPath = new String [100];
    String [] tID = new String [100];
    String [] tTime = new String [100];
    public SQLImport( )
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    connSQL = DriverManager.getConnection("jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=Music.mdb");
    JOptionPane.showMessageDialog(null, "Connection Successfully Established", "Notification",JOptionPane.INFORMATION_MESSAGE);
    catch (Exception sqlConnectionFailed)
    JOptionPane.showMessageDialog(null, sqlConnectionFailed, "ERROR:",JOptionPane.ERROR_MESSAGE);
    Statement statement = null;
    try
    statement = connSQL.createStatement( );
    catch (SQLException statementERROR)
    JOptionPane.showMessageDialog(null,statementERROR, "ERROR:",JOptionPane.ERROR_MESSAGE);
    char optionChoice;
    do
    optionChoice = getMenuChoice();
    if(optionChoice == 'A')
    try
    String querySQL = "SELECT * FROM tbl_ListedMusic ORDER BY ID ;";
    System.out.println(querySQL);
    ResultSet resultSet = statement.executeQuery(querySQL);
    while (resultSet.next( ))
    tID[tel] = resultSet.getString("ID");
    tName[tel] = resultSet.getString("TrackName");
    tArtist[tel] = resultSet.getString("TrackArtist");
    tTime[tel] = resultSet.getString("TrackTime");
    tGenre[tel] = resultSet.getString("TrackGenre");
    tMood[tel] = resultSet.getString("TrackMood");
    tJavaPath[tel] = resultSet.getString("TrackJavaPath");
    tPath[tel] = resultSet.getString("TrackPath");
    tel++;
    catch (SQLException infoImportError)
    JOptionPane.showMessageDialog(null,infoImportError, "ERROR:",JOptionPane.ERROR_MESSAGE);
    while (optionChoice != 'X');
    //NB! Strings are " " chars are ' '
    public String[ ] gettID( )
    return tID;
    public String[ ] gettName( )
    return tName;
    public char getMenuChoice( )
    String menu = "A) Import .mp3 info \n X) Exit";
    char choice = JOptionPane.showInputDialog(menu).toUpperCase( ).charAt(0);
    return choice;
    public static void main (String [ ] args)
    SQLImport sql = new SQLImport( );
    String [ ] blah = new String [10];
    blah = sql.gettID();
    System.out.println(blah);
    //Code ENDS
    How do I resolve the " [Ljava.lang.String;@1ba34f2   "  ? Much apreciated
    Regards,
    Bennu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    This forum is about the Messaging Server email server and related products. I think you have posted this question in the wrong forum.

  • Weird Trash Emptying Behavior, Need Help!

    I've read the apple support article for emptying trash, changing file permissions, etc.; I've also tried searching the apple discussions... So I hope someone can help me here!
    I recently deleted Adobe CS2 from my applications. A lot of files were dragged to the trash, and now there are two folders in the trash that won't delete.
    They are:
    1. a folder called "Adobe Illustrator CS2", containing a folder named "Legal", containing a file named "Tiếng Việt.html" (the name's characters seem to be from a different character set).
    2. a folder called "Adobe Photoshop CS2", also containing a folder named "Legal", also containing a file named "Tiếng Việt.html" (same as above).
    Here are the issues:
    1. When I try to empty trash, nothing happens, these files just don't delete.
    2. When I try to secure empty trash, I get the message: "The operation cannot be completed because the item 'legal' is in use."
    3. I have permission to read and write the files and folders. Just to be sure, I tried "apply to enclosed items" in "get info", I get this error message: "The operation cannot be completed because one or more required items cannot be found. (Error code -43). I can open the trash and look at the files. They are definitely there.
    4. I read somewhere that because the names contain weird characters, they may not delete. When I try to rename the files, I get this error: "An unexpected error occurred (error code -43)."
    5. I've tried "chflags -R nouchg " and "sudo chflags -R nouchg " in terminal, and I get errors saying the files do not exist (after I drag the folders into terminal.)
    Help! What should I do to try and fix this? I have no idea what is going on!

    The problem is the illegal characters in the file name. Try booting from your install disk, then go to the menu and select Disk Utility and run the First Aid-Repair Disk function. Restart, and you should be able to empty the Trash.
    Francine
    Francine
    Schwieder

  • Strange, but need help

    Hello all
    For some reason some of my songs on the itunes doesnt go on my ipod i.e i have Amy winehouse album on itunes but it doesnt show it on me ipod and the other thing is when you click on the artists on the ipod and you choose a artist to play it doesnt show all there songs just shows there album song??
    If your confused... im on msn messenger at [email protected]
    Thanks
    MaTt

    There are usually two things that contribute to songs not appearing under Artist on the iPod, both due to information either in or missing from the Get Info>Info tab against the song in iTunes. 1) the song has no album name associated with it or 2) the song is marked as part of a compilation.
    If tracks are missing an Album name in the Info tab, this information needs to be filled in. The no album one is a bit quirky as the songs will appear under certain circumstances but the simplest remedy is just add None or Miscellaneous to all the blanks in place of a title. See this link for more detail: I don't see some of my songs when browsing by artist on my iPod
    Also if the tracks are ticked in the Get Info>Info tab as part of a compilation, they will not appear under Artist on the iPod. Highlight a song in iTunes that you know is not appearing correctly on your iPod. Right click on it and choose Get Info and click the Info tab (alternatively choose Get Info from the File menu), if "Part of a Compilation" is marked untick it and afterwards update your iPod, you should find it now appears as normal. Compilations are stored in a separate folder in iTunes so the songs don't appear inside the normal Artist>Album folder.

  • Strange symptoms, need help to diagnose.

    My mid 2010 macbook pro has been acting up. I could use some help.
    1. 5 minute boot times
    2. Sometimes refusing to launch any apps
    3. Spinning beachball all the time or complete freeze
    I have plenty of Ram available, did a clean reinstall of snow leopard (problems seemed to start when I upgraded to Lion, so I went back), 280 gigs free on HD, very few non apple apps, in the past disk repair seemed to help some. (now I can't get it to run)
    Thanks everyone for your help.

    When you went back to Snow Leopard, did you erase the ENTIRE drive with the 10.6 disk first?
    Lion alters the partition map of the boot drive, if you didn't erase and format the entire drive with the 10.6 version of the GUID parititon map, Snow Leopard might be having a problem with the 10.7 version of the GUID.
    Clone the 10.6 OS X partiton off to a external drive with Carbon Copy Cloner,  check that your files are there.
    Hold c boot off the 10.6 disk and erase the entire drive (select the makers name and size on the far left) use the Zero Erase option, that will map off any bad sectors you might be having. Install 10.6 fresh, same log in name, Software Updater till clear.
    Reinstall your 10.6 programs from fresh sources and finally hook up the clone and transfer just the users file folders (music, pictures etc., not Library) into the same ones on the internal.
    This is know as a "Fresh Install" combined with the Zero Erase of the internal boot drive, should map off bad sectors and cure all your problems.
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents
    People don't know that Lion alters the GUID and creates a hidden Lion Recovery partition at the bottom of the drive, thus can cause issues as Snow Leopard doesn't know what the heck is going on.

  • Strange behavior of JTable..Help plz

    Hi,
    Assume i have 5 rows in my JTable. I wrote a function on right click i get a popup window with an option delete row, which deletes the row successfully,
    The problem is when i sort the data in JTable. on column click JTable is getting sorted, in which assume 2nd row got replaced with 4th row and vice versa.
    Now when i try to delete the 4th row, it is delete the 2nd row data, which was there at the place of 4th row before sorting. In this regard i am trying to print the row number before deleting. It is displaying as 4th, but deleting 2nd row.
    Hope i am clear. Please suggest me in solving this strange behavior of JTable sorting problem.
    Regards,
    Ravi

    MyTableModel tablemodel = new MyTableModel(colnames,values);
    TableSorter sorter = new TableSorter(tablemodel);
    JTable table = new JTable(sorter)
    tablemodel.removeRow(row); // last line is the code where i am deleting the row, it's deleting the wrong row.
    do i need to remove the last line code and make respective changes in TableSorter.java class.
    ore
    here itself do i need to do some changes. ?
    There is a method that will convert the view row to the model row private Row[] getViewToModel()
    my question is how TableSorter.java class comes to know that i am deleting the perticular row.

  • I'm affraid I lost my "Word" document of 30 pages. I can see only stars,squares and other strange figures. How can I recover this? Please I need help!!!

    I need help! My daughter is busy with her final studyprogram. Her "word" document changed into stars and other strange figures. Is there a possibility to recover this. I hope someone can help her!!!! thanks jvdharst

    Are you using the latest version of MS Word?  It’s possible you can restore the corrupt file from the last saved version or the automatically saved version.  Have you tried that?  MS Word uses a folder called Autorecover to store temporary versions of your file.  Hopefully there’s a good version in that folder.  Use Finder to search for Autorecover if needed.

  • Help with strange behavior starting a db on XP

    I have a db (9.2.0) on a W-XP machine (I am not a dba but I must handle these things because there is no dba). I dropped the instance and the db and created both again. Now I am having a strange behavior:
    When I start the windows service the database is not opened, but I need to do this if I want to connect as sysdba in order to launch the startup command. When I launch a shutdown the service is not stopped.
    I think this is not the normal behaviour because I think that, with the old db, the service used to open the db when it was started and used to close the db and instance when it was stopped.
    Some idea?

    try oradim command . e.g.
    oradim -STARTUP -SID orcl -USRPWD orclpwd -STARTTYPE srvc,inst

  • Need help on monitoring poor performance in BIWS

    Hello All,
       We have a strange behavior with all our Dashboard on SAP 4.0 SP5 FP3 with BIWS connexions.  1 time on 10 (approx.) the BI Web Service connexion take so long.  I mean in normal circonstance, it take 2 seconds, then it take 30 seconds, 1 minute and more to return the result.
    We build a Jmeter scenario to find a pattern without success.
    Just to help, by example it when we call this.
    /dswsbobje/qaawsservices/queryasaservice/biws?cuid=AVBUa5WAagZFmFxSbw77INI&authType=secEnterprise&locale=fr_CA&timeout=60&ConvertAnyType=true
    I know it depend a lot of things, and we try a lot of things too but I'm trying to isolate where it take so long.
    What we do so far.
    1) Close all services not needs.  That means at the end it keep only
        CMS, Input / Output, APS Visualization, APS Webi, WebiPS.  (No need Dashboard services...on only BIWS)
    2) I try to captures E2E traces but can't figure out what to check...Too much lines.
      Wow!
    3) One interresting test I made is try to open dashboard on production where the problem is and call BIWS on acceptance environnement where it's always fast.  The result it's still slow.  So, I don't think it's not the web services by itself which is slow.  It's probably the CMS, the network, the disk.
    We have a big environnement , we run thousand reports per day.  So it's probably not the disk or the network...But we never know.
    Any idea where to look ?

    Just to help (maybe) people with this problem which we think we find why it's slow in some cases.
    What we realize is the fact that if webi instance (last instance) where you consume the web service is big, and I talk here the hole instance , not only the block you define for your web service.  If the instance is big, it make all the difference,
    So, if you have a webi for 300,000 lines but your web service contain only 50 lines, BO will retreive all 300,000 first, like if you view last instance in lauchpad
    We try to understand why BO doing this.  And the only reason we can find is because in some cases you would like to filter on your web service outside of the block you define.
    BO should think about this and give us a way to disable the filtering outside.
    So the solution we try now is to build send the web service to excel, and build another web service on top of this.  This we finalize with only 50 lines.
    Hope it help

  • Strange behavior from a PB G4 (Part 2)

    On to my next issue. Often when I'm typing the insertion point will jump to someplace other than where it should be or just disappear all together. I'm not doing anything to cause it to do this. I've been being really carefull to not to do anything wrong. I'ts often enough to be a real nuisance. It happened 7 times during my first post (Strange behavior from a PB G4) and 3 times during this one. Please help. Thanks.

    Igor_G5 wrote:
    ... I thought about putting in a larger drive but when I looked up instructions for it i was surprized at how difficult it was.
    Did you use the iFixit website? It has excellent pictures and instructions that are easy to follow.
    Replacing any hard disk drive will be challenging for a paraplegic, but with someone's help it can be done fairly inexpensively. There are many tiny fasteners that require tiny tools. Use an egg carton to store them, separated by their location in the PowerBook.
    Earlier PowerBooks are easier to work on than later ones.
    I still use a PowerBook G4 on occasion, mostly for importing video for editing in iMovie. I upgraded its original 60 GB HD to a much larger one. If you were to do this you would need to locate the PowerBook's original System Install DVD to install and subsequently update OS X and all its original programs.
    If you ensure at least a few gigabytes free space, I think most of your problems will be fixed. When free disk space gets down to a few hundred megabytes or less, performance will suffer dramatically. You don't want it to ever get anywhere near that low. Strange things start to happen.
    Keep the number of icons on the Desktop to a minimum also. That makes a difference, for reasons that I do not fully understand.

  • Strange behavior with Firefox

    Hi Team,
    I am using HTMLDB V2.0 and Firefox V1.5.0.1. I used wizard to create a report/form application. However, when I press a button to update the form all the buttons line up in a vertical row and I then have to press the same button again.
    My application is 30412 at htmldb.oracle.com. The problem is occurring at page 4. Go to page 3 (2nd tab) and select any record. You will be directed to page 4. Then when you press any button (cancel, create, delete, apply changes) on page 4, page 4 is refreshed and the buttons strangely line up in a vertical column. I then have to press the same button again before the update occurs.
    I have the same report/form setup on pages 1 and 2 and it is working fine on those pages.
    This strange behavior is not occurring in IE. I also notice that the font size is bigger in IE .
    I would appreciate any help you might offer.
    I really enjoy working with HTMLDB.
    Thanks, Andy

    Sorry about that. I removed all the authorization schemes from the application. I also changed the authentication scheme to HTMLDB. Let me know if I need to do something more for you to get access.
    Thanks for looking at it.
    I think it may have something to do with the "button, alternative 3" template from theme 3 that I am using. When I switch to the "button" template from theme 3 then the strange behavior goes away in Firefox.
    Andy

  • Strange behavior with Bindings??

    Hello to all JavaFX 2 Binding experts,
    I have a strange behavior with Bindings in JavaFX 2.2 (Java 1.7 update 21). Please have a look at the following source code:
    package test;
    import javafx.application.Application;
    import javafx.beans.binding.BooleanBinding;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.fxml.FXML;
    import javafx.fxml.FXMLLoader;
    import javafx.scene.Parent;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.RadioButton;
    import javafx.stage.Stage;
    public class BindingVsProperty extends Application
        @FXML
        private RadioButton opt11;
        @FXML
        private RadioButton opt12;
        @FXML
        private RadioButton opt21;
        @FXML
        private RadioButton opt22;
        @FXML
        private Label lbl11And21;
      @Override
        public void start(Stage arg0) throws Exception
            FXMLLoader l_loader = new FXMLLoader();
            l_loader.setLocation(BindingVsProperty.class.getResource("BindingVsproperty.fxml"));
            l_loader.setController(this);
            l_loader.load();
            Scene l_scene = new Scene((Parent)l_loader.getRoot());
            arg0.setScene(l_scene);
            useBinding1();
            //useBinding2();
            //useBinding3();
            arg0.show();
        private void useBinding1() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding2() // OK - ChangeListener.changed(..) is called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            lbl11And21.visibleProperty().bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding3() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            new SimpleBooleanProperty(false).bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        public static void main(String[] args)
            launch(args);
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.paint.*?>
    <BorderPane id="BorderPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="371.0" xmlns:fx="http://javafx.com/fxml">
      <center>
        <AnchorPane prefHeight="200.0" prefWidth="200.0">
          <children>
            <Label id="lblAnd" fx:id="lbl11And21" layoutX="82.0" layoutY="121.0" text="Group1 Opt1 AND Group2 Opt1 is true" textFill="#41cc00" visible="false" />
            <RadioButton fx:id="opt21" layoutX="216.0" layoutY="24.0" mnemonicParsing="false" text="Group 2 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group2" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt22" layoutX="216.0" layoutY="67.0" mnemonicParsing="false" text="Group 2 - Opt 2" toggleGroup="$group2" />
            <RadioButton fx:id="opt11" layoutX="29.0" layoutY="24.0" mnemonicParsing="false" text="Group 1 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group1" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt12" layoutX="29.0" layoutY="67.0" mnemonicParsing="false" text="Group 1- Opt 2" toggleGroup="$group1" />
          </children>
        </AnchorPane>
      </center>
    </BorderPane>
    What I need for my application is the use case in useBinding1(), i.e., a BooleanBinding where several listeners are attached to. The problem is that I never get a callback in the ChangeListener if one of the RadioButton.selectedProperty() is changed.
    Now I tried what happens if I use the same BooleanBinding for another binding to a property plus the listener, now the listener gets callbacks as expected! (see useBinding2() )
    Than I thought may be Bindings must be bound in order to trigger listeners and tried useBinding3() where I bind the BooleanBinding to a new BooleanProperty, in this case the listener doesn't get callback anymore...
    And now I'm very frustrated and hope that anyone out there can help me to understand this strange behavior.
    Thanks a lot!
    WhiteAntelope

    All these work just fine for me: the listeners are all called as expected. Note that the listener is only invoked when the value of the binding actually changes, which doesn't happen every time a radio button is pressed. (For example, if both buttons are unselected, the binding is false. If one button is selected, the binding remains false and the listener is not invoked. When the second button is selected, the binding becomes true, and the listener is invoked.)

  • Strange behavior of system with enabled FileVault2, Roaming profile

    Hello,
    I have encountered strange behavor of my Macbook Air after some testing.
    Macbook Air 2012 was newly installed with 10.8.4 and joined network account server on 10.8.4 server with Roaming profile (synced with server home directory). After installing some basic apps like iWork I turned on FileVault.
    Then I start to have the strange behavior - iWorks are not displaying content of document - it seams blank - just white screen without any borders where should be at least lines in numbers or empty cells.
    Another display problem is in Safari. On same pages (even default Top SItes) it`s flashing and especially when scrolling.
    Did you encountered something similar? I`m not able to get rid of it.
    Computers was used for some time before turining on FIle Vault and problem started to occur after this action. Disabling of FileVault didn`t helped (properly restarted between steps).
    I didn`t found anything strange in Console or elsewhere..

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, or by corruption of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and Wi-Fi on certain iMacs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

Maybe you are looking for