Half ellipse button?

Hi,
i have to make a Button which has the form of a half ellipse. I saw how i can overwrite JButton to make a round button or ellipse button, but those are all predefined forms in graphics and graphics2d. And this doesnt help me to make button with half ellipse from (half circle is also a possibility but i guess it is something similar).
Do you have any suggestions?
Regards

Hi,
import java.awt.*;
import java.awt.geom.*;
import javax.swing.*;
public class RoundButtonTest {
  public JComponent makeUI() {
    JPanel p = new JPanel();
    p.add(new RoundButton("aaa"));
    p.add(new RoundButton("bbbbbbbbbb"));
    return p;
  public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
      @Override public void run() {
        createAndShowGUI();
  public static void createAndShowGUI() {
    JFrame f = new JFrame();
    f.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
    f.getContentPane().add(new RoundButtonTest().makeUI());
    f.setSize(200, 100);
    f.setLocationRelativeTo(null);
    f.setVisible(true);
class RoundButton extends JButton {
  public RoundButton(String title) {
    super(title);
    setContentAreaFilled(false);
    setFocusPainted(false);
    setBackground(Color.ORANGE);
  private Shape shape;
  private Shape getButtonShape() {
    if (shape == null || !shape.getBounds().equals(getBounds())) {
      int w = getWidth()-1;
      shape = new Arc2D.Double(
          -w, 0, w*2, getHeight()-1, -90, 180, Arc2D.Double.CHORD);
    return shape;
  @Override protected void fireStateChanged() {
    ButtonModel model = getModel();
    if(!model.isEnabled()) {
      setBackground(Color.GRAY);
    } else if(model.isPressed() && model.isArmed()) {
      setBackground(Color.RED);
    } else if(model.isSelected()) {
      setBackground(Color.GREEN);
    } else if(isRolloverEnabled() && model.isRollover()) {
      setBackground(Color.PINK);
    } else {
      setBackground(Color.ORANGE);
    super.fireStateChanged();
  @Override protected void paintComponent(Graphics g) {
    Graphics2D g2 = (Graphics2D)g;
    g2.setColor(getBackground());
    g2.fill(getButtonShape());
    super.paintComponent(g);
  @Override protected void paintBorder(Graphics g) {
    Graphics2D g2 = (Graphics2D)g;
    g2.setColor(Color.CYAN);
    g2.draw(getButtonShape());
  @Override public boolean contains(int x, int y) {
    return getButtonShape().contains(x, y);
}

Similar Messages

  • The 10.4 upgrade smart playlist editing has removed the ellipse as the 3rd button option along side the adding or removing a parameter. Why? And can we get it back?

    I just did the iTunes update to 10.4 (80) from 10.3 on a MacPro OS X 10.6.8 . I am extremely nervous and saddened by a subtle change to the smart playlist editing features. I have 178.26gb of music, and a very extensive array of playlists and smart playlists taking full advantage of all the wonderful features and complexity someone has taken the time to develop. I have taken years of time developing my library, and this one little change will set me back substantially. The change? Removing the ellipse as the 3rd button option along side the adding or removing a parameter. The button allowed one to  create levels or groups of parameters within the dialogue window that could act independently within one smart playlist. For example, songs from artist "A" needs at least 2 stars to be included, while songs from artist "B" need three stars, and they both can be in the same smart playlist which has its first level of complexity. I have lists that go dozens of layers beyond. And dozens more that cross reference. Is there any way we can get the hierarchy back, ie. Reintroduce the ellipse button? Or is there something new I do not know about? Thanks!

    I would like to second this.
    This subtle yet life-changing removal is a total loss for advanced users that (used to) take full advantage of "logical and hierarchical" playlists. It tremendously impairs the "smartness" of the feature, effectively removing the possibility of mixing "and" & "if" parameters—which was the real beauty of the whole concept of "smart playlists" à la iTunes.
    Here's a simple example. I would like to create a playlist combining two genres (rock and electronic) with only songs that have a rating higher than 3. I cannot do that anymore. I need to create two playlists:
    a first playlist (A) that displays [Rock] OR [Electronic] (note that this playlist will never be played, it's an intermediary step required for B)
    then a second playlist (B) that displays [songs from playlist "A"] AND [with a rating higher than 3].
    It's a pain. And it clutters up browsing lists on my iPad/iPhone a lot.
    Smart playlists should get the ellipse button back!
    Moreover, the possibility of creating / editing smart playlists on iOS via a nice menu would be just… awesome. I would have thought Apple was going in that "smart" direction with iTunes. In hoping it's just a delay… until iOS 5 maybe?

  • HT4528 power button stuck

    is anyone else having a problem with the power button getting stuck? i have had the iphone 4 for less then a year and only half the button works

    iPhone Warranty is full year, so make Genius reservation or set up service and take or send to Apple for resolution under Warranty. Try Virtual Power Button, Settings App > General > Accessibility > Assistive Touch > ON > tap new white screen button > Device > Lock Screen. This can even be used to turn iPhone OFF. To turn iPhone ON, connect to power, charger or USB of computer.

  • With IE UIX buttons are not displayed correctly

    Hello there,
    We have developed an application using UIX. While browsing application using Internet Explorer I noticed that many of the buttons are not displayed correctly. Only some part of the button is displayed. Same thing happens while displaying some of the page logos and stuff. Did anyone have same problem? What's solution?
    Thanks,

    Hi Andy,
    sometimes half of button is displayed and sometimes the whole button image is distorted. if you refresh the page, it becomes perfectly fine. sometimes nothing is displayed but if you put mouse at the place where there should be a button, you would know that there is a button...
    it happens with random buttons...
    i haven't seen this problem in mozilla. its quite frequent in IE.
    our customer is very annoyed by this problem :(

  • JTextField/JTable-cell Button

    Is there any known efficient methods of creating the JTextField or JTable-cell Button as like in Forte's Component Inspector window where you click on the property value field and the value is displayed just left of a small button labelled "..." ie: [some text field with value][...] also referred to as the "ellipsis" buttons, or will most answers to this question simply describe the layout of a JField-JButton combination? The action from clicking on the [...] button aligned right of the JTextField simply invokes or displays a larger input interface in which upon completion of the entered data, returns the input to the related JTextField.
    Thanks to anybody for any help with this, and perhaps in return, I may be able to answer any non-gui java questions, or some not so unfamilliar GUI questions.

    Hello StanislavL and Lutianxiong,
    I remember asking this question some time ago, and the time has come again for me to seek this functionality. I have finally achieved the functionality and thought I would post the answer for anybody else. I had not realized that I had recieved a solution/reply to my original question as I come here to post the answer, and in fact, my solution does appear to be very similiar to your reply, StanislavL. As for you, Lutianxiong and other seekers of this info, here is my solution with a JFileChooser style input for the 3rd column which only shows gif,jpg and png files:
    <code>
    ------------- TableCellFileInput.java -------------------
    public class TableCellFileInput extends javax.swing.JPanel {
    private String extensions[];
    public TableCellFileInput(String fileExtensions[]) {
    extensions = fileExtensions;
    self = this;
    initComponents();
    private void initComponents() {
    valueField = new javax.swing.JTextField();
    fileButton = new javax.swing.JButton();
    setLayout(new java.awt.BorderLayout());
    valueField.setText("jTextField1");
    add(valueField, java.awt.BorderLayout.CENTER);
    fileButton.setText("...");
    fileButton.setMargin(new java.awt.Insets(0, 2, 0, 2));
    fileButton.addActionListener(new java.awt.event.ActionListener() {
    public void actionPerformed(java.awt.event.ActionEvent evt) {
    fileButtonActionPerformed(evt);
    add(fileButton, java.awt.BorderLayout.EAST);
    private void fileButtonActionPerformed(java.awt.event.ActionEvent evt) {
    String filePath = valueField.getText();
    if(filePath != null && filePath.length() > 0) {
    filePath = new java.io.File(filePath).getParent();
    javax.swing.JFileChooser chooser
    = new javax.swing.JFileChooser(filePath);
    chooser.setFileFilter(new ImageFilter());
    int returnVal = chooser.showOpenDialog(this);
    if(returnVal == javax.swing.JFileChooser.APPROVE_OPTION) {
    valueField.setText(chooser.getSelectedFile().getAbsolutePath());
    class ImageFilter extends javax.swing.filechooser.FileFilter {
    public boolean accept(java.io.File f) {
    if(f.isDirectory()) return true;
    String fName = f.getName();
    if(extensions != null) {
    for(int i=0;i<extensions.length;i++) {
    if(fName.endsWith(extensions[ i ])) return true;
    return false;
    public String getDescription() {
    return DESCRIPTION;
    class CustomCellEditor extends javax.swing.AbstractCellEditor
    implements javax.swing.table.TableCellEditor {
    public Object getCellEditorValue() {
    return valueField.getText();
    public java.awt.Component getTableCellEditorComponent(javax.swing.JTable table, Object value, boolean isSelected, int row, int column) {
    System.out.println("fileEditor");
    if(value == null) valueField.setText("");
    else valueField.setText(value.toString());
    return self;
    public void setColumn(javax.swing.table.TableColumn column) {
    column.setCellEditor(new CustomCellEditor());
    private javax.swing.JButton fileButton;
    private javax.swing.JTextField valueField;
    private static final String DESCRIPTION = "Image File Filter";
    private java.awt.Component self;
    ------------- TestTable .java -------------------
    public class TestTable extends javax.swing.JFrame {
    public TestTable() {
    editorField = new javax.swing.JTextField();
    String fileExts[] = {"gif","jpg","png"};
    fileEditorField = new TableCellFileInput(fileExts);
    initComponents();
    javax.swing.table.TableColumn column
    = jTable1.getColumn("Title 3");
    fileEditorField.setColumn(column);
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jTable1 = new javax.swing.JTable();
    addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(java.awt.event.WindowEvent evt) {
    exitForm(evt);
    jTable1.setModel(new javax.swing.table.DefaultTableModel(
    new Object [][] {
    {null, null, null, "cats"},
    {null, null, null, "dogs"},
    {null, null, null, "mice"},
    {null, null, null, "birds"}
    new String [] {
    "Title 1", "Title 2", "Title 3", "Title 4"
    Class[] types = new Class [] {
    java.lang.Object.class, java.lang.Object.class, java.lang.Object.class, java.lang.String.class
    public Class getColumnClass(int columnIndex) {
    return types [columnIndex];
    jScrollPane1.setViewportView(jTable1);
    getContentPane().add(jScrollPane1, java.awt.BorderLayout.CENTER);
    java.awt.Dimension screenSize = java.awt.Toolkit.getDefaultToolkit().getScreenSize();
    setBounds((screenSize.width-400)/2, (screenSize.height-300)/2, 400, 300);
    private void exitForm(java.awt.event.WindowEvent evt) {
    System.exit(0);
    public static void main(String args[]) {
    new TestTable().show();
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTable jTable1;
    private javax.swing.JTextField editorField;
    private TableCellFileInput fileEditorField;
    </code>

  • Smartshape buttons not consistent in HTML5 output

    I have toggle buttons I created using Smart Shapes and advanced actions. They work fine and predictable in SWF output, but in HTML5 output, sometimes only half the button is hot and sometimes the a button won't be hot at all. There appears to be a dead spot in the top middle of the screen. If I move the buttons out of this zone, they work. Is this a known bug with HTML5 output?

    Ok, so i tried unchecking Advanced Project Compression, still no luck.
    One thing that I did that made the objects show up was move them directly to the center of the project (which breaks the design and navigation constraints the client has.)
    Is there any reason why buttons and text near the edge of a project might be invisible in the output in Chrome? I am looking in the assets/js/... folder to see if there's anything there that might "hide" objects that are near the borders of the project. Any thoughts there?
    Update: I found an older published HTML5 output of the same project that doesn't lose those elements in a full screen chrome. It was done before the most recent updates to Captivate 6. I compared the CPLibrary.js and found there are significant portions of code that have been changed / and or removed. I took the CPLibrary.js from the old project, and put it into the assets/js folder of the new project and it caused the missing items to show up in chrome. Not sure if this error will be fixed in the next update for captivate?

  • I can't sync a movie onto my ipad because I can't click the button

    I downloaded it onto my phone but I can't seem to sync it onto my ipad because there is only half the button there and it is unclickable!

    Settings -> Store -> Apple ID
    In the future, please search before posting asy our qeustion has been asked and answered dozens of times in the past.

  • $50 BOUNTY for a working close/exit button in Explorer 8

    I will pay $50 to the first person that shows me a way using Javascript or the like, to make a working close button, that closes the current Captivate window in Explorer 8.
    "Problematic at best" is not a solution.
    I've searched and cannot find a working solution, but one has to exist since Lectora can and does do it in Explorer 8.
    I have code that works in Explorer 6 and 7 but it does not work in 8.
    --      window.opener='X'; window.open('','_parent',''); window.close();
    So, if you have a TRUE working way to make a button in a Captive project, close a Explorer 8 browser window then I have $50 for the person with the first working solution. If they do not object, I will share the solution with the rest of the community.
    Thanks, rt

    Hi there
    I'm quite happy to accept anything you will throw my way, but it's really not necessary. My goal was just to illustrate the issue. But if you insist, I log into PayPal using my email address of rstone75 (at) kc.rr.com. (@ symbol replaced with (at) to obfuscate and avoid SPAM)
    You are more than welcome to share any code. Especially if it will help another developer out.
    The example depicts two methods of operating. One method configures the Captivate project to close as it completes. I've outlined how to accomplish that on many occasions. You essentially click Edit > Preferences > Project > Start and End and configure the Project End Options to Close project. Then if you want a button to close the project, you configure the button to jump to the last slide. You configure the last slide to be super short. Perhaps .1 seconds. Note that I also demonstrated two different ways of opening the window presenting the Captivate movie with the buttons. One way simply opened the Captivate. So if you already had an instance of IE running or if it just opened Captivate in a fresh instance of IE, you were prompted first with a message that the window was about to be closed. The other link opened the Captivate created HTML page allowing you to view the Captivate as a Full Screen presentation. In this case, the HTML page scripted a child window. Because the Captivate presentation was presented within a Child window, it closed without issue and without notification mentioned earlier. And therein is the trick I believe. I believe things like Articulate and whatever else presents Captivate where the window always closes without issue are presenting that Captivate in a child window.
    The JavaScript solution involves configuring the Button as follows:
    You assign the action to be "Execute Javascript". Then you click the Ellipsis button (Captivate 4 and earlier and it looks like ...) or you click the "Script Window" button (Captivate 5) and you insert the following code into the window:
    javascript:window.opener='x';window.close();
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • N91 - buttons dont work!!!

    i bought my n91 a few months back.
    has been working fine until a few days back.
    i dont know what i did but now half the buttons dont work!!
    i can do barely anything ( i cant check messages, contacts etc)
    PLEASE HELP!!!

    27-Oct-200703:19 PM
    trixielicious wrote:
    i have the same problem...
    NONE of my buttons work. i can't do anything!!! only the on/off and lock/unlock buttons work.
    i've tried reprogramming it, turning it on and off... nothing works.
    it really sucks, i've been going to so many nokia care centers and they've been making me go around in circles.
    i'm gonna try again tomorrow. it's really hard because my messages come in but i can't do anything. i can't read any of them! i can't even read my contacts. i can't even back up the info stored inside because it requires me to press buttons!!!
    For your case the nokia care centres are the main help source for you. It's very sad they are circling you around.

  • SWF file doesn't load images correctly and buttons do not always work properly.

    YO!
    I have a big problem - I decided to make a website using flash as I am good with photoshop and thought it would be fairly easy to construct in flash using tutorials. All went well except now the website is published, weird things happen. The homepage works fine but when you click on "portfolio" some of the buttons don't appear and when you try the buttons, some images don't appear. Occasionally some of the buttons take you to the wrong place also. When I test the movie in flash, everything works fine so I can't work it out. PLEASE HELP! Ps. I am a complete novice so advice will have to be spelt out in black and white.
    Thanks in advance. Website is here:
    www dot branadesign dot com

    This tends to happen when i press the portfolio button (note only half the buttons on the side appear):
    This sometimes happens when I press the services button (doesn't go to services page and shows buttons down side when it shouldn't):
    I have published the flash file as a SWF and assume all the images are embedded in the file. If you keep pressing buttons repeatedly, the website starts to work which makes me think they are all there but only work once the web browser has cached all the images. I have tried it in firefox and IE with similar effects.
    Pab

  • How do I escalate a call when tech support lose intere

    -----Original Message-----
    From:
    Sent: 24 March 2005 7:6
    To: 'CLE Customer Support'
    Subject: FW: How long do you expect me to wait for a reply?
    Do I have to go to trading standards to get you to honour this warranty? This is a disgrace - sort it out. This is extremely poor customer service and a breach of your warranty.
    -----Original Message-----
    From:
    Sent: 22 March 2005 08:5
    To: 'CLE Customer Support'
    Subject: RE: CLE - Technical Support Request (KMM563096I2452L0KM)
    How do I escalate this call? I have a card that is not working under warranty and you seem unwilling to answer my mails any more. I hate to be the bearer of bad news but you have to. This card must be fixed or replaced, and it would be nice if that happened sooner rather than later. Why am I doing all the chasing by the way, you're a big enough supplier to get this sort of thing right, aren't you?
    Rob.
    -----Original Message-----
    From:
    Sent: 7 March 2005 08:40
    To: 'CLE Customer Support'
    Subject: RE: CLE - Technical Support Request (KMM563096I2452L0KM)
    Hello, it's me again, not heard from you for 5 days. Are you planning to reply? You have obligations of warranty which you are summarily failing to carry out here. Please sort this out!
    Rob.
    -----Original Message-----
    From:
    Sent: 3 March 2005 7:28
    To: 'CLE Customer Support'
    Subject: RE: CLE - Technical Support Request (KMM563096I2452L0KM)
    Situation changed. Having restored settings to previous state after doing all the below, about a day later I now have no sound at all for no reason whatsoever. I have rebooted, re-checked all connections etc etc, sound has just disappeared in the middle of the day without changing anything. It was fine this morning and now it's completely silent and PC's been on all day. This card is definitely dead, what else would do that?!?!
    Cheers,
    Rob.
    -----Original Message-----
    From:
    Sent: 2 March 2005 6:03
    To: 'CLE Customer Support'
    Subject: RE: CLE - Technical Support Request (KMM563096I2452L0KM)
    Hi,
    OK, I can't test on another PC as I don't have access to one, and I really dohope this is the last set of tests incidentally. It worked, then it stopped one day. A complete reformat and clean driver install didn't fix it. Re-seating the card didn't fix it. Seems pretty straight forward to me the card has failed, and I do need it replacing.
    I have however done everything else below as requested. If I select CMSS, I get no output for rear-left/rear-right using channel test. If I select CMSS2, I get output from the front speakers for rear-left/rear-right channels, but nothing from the rear.
    If I configure to 5. and enable CMSS I get output from jacks and 3 (orange & green)of the soundcard in the left headphone earpiece.
    Hear from you soon,
    Rob.
    -----Original Message-----
    From: CLE Customer Support [mailto:[email protected]]
    Sent: 2 March 2005 03:7
    Subject: RE: CLE - Technical Support Request (KMM563096I2452L0KM)
    Dear Rob
    Thanks for your reply
    Please test the soundcard on another PC(With different motherboard) Ensure onboard soundcard is disabled.
    Run creative diagnostic test, any problems?
    Go to device manager, is there any problem with soundcard?
    Configure the speaker setting as 5..
    Please enable CMSS and play MP3.
    Use a earphone and connect to line-out of soundcard.
    Any sound?
    Now please try on line-out3, any sound?
    Please verify the correct jacks you are connecting..
    CMSS is an option that allows you to play your audio to all 5. speakers even if you are not playing a true 5. encoded audio file. For example, if the sound is a stereo sound, it will duplicate the front channels, and send them to the rear channels. Then it will mix the left and right signals to create a center channel. Turning CMSS on basically simulates
    5. audio.
    TO TURN ON CMSS IN Mediasource
    . Open MediaSource (Start, All Programs, Creative, Creative MediaSource, Creative MediaSource Organizer).
    2. There should be an EAX button underneath the Record button at the bottom of the screen, towards the left. Beside this button, there should be a small ellipsis button (. . .) that you can press. Click on this.
    3. Go to the CMSS 3D tab and check the box next to "Enable CMSS 3D"
    4. Place a dot next to either CMSS or CMSS2. Whichever sounds better to you.
    It is important to remember that if you do wish to play a 5. encoded file, you will need to turn CMSS off. Otherwise you might not receive each discreet channel.
    Please retain all the previous correspondence when replying to this email.
    Best Regards
    Creative Customer Support Services
    Creative Labs Europe
    To provide feedback on your "Creative Experience" and our service please click on the following link:
    http://www.**bleep**.com/support/con...asp?r=CLE&d=TS
    Please do not use this link to submit technical queries
    Original Message Follows:
    Hi,
    Tried all that and still no joy unfortunately. Everything ok except output from rear-left and rear-right.
    Always disable onboard sound nad have just reformatted XP and reinatalled with drivers from creative website, so I know installation is not corrupt and up-to-date. I also had this problem before re-installation of XP, so suspect hardware rather than software failure.
    Have removed all traces of card/drivers and tried again and moved PCI slots with same results.
    Cheers,
    Rob.
    -----Original Message-----
    From: CLE Customer Support [mailto:[email protected]]
    Sent: 0 March 2005 03:37
    Subject: RE: CLE - Technical Support Request (KMM5590925I2452L0KM)
    Dear Rob
    Thanks for your reply
    Rear center is fine in speaker test...
    Anyway if you have test the speaker with another device and no issue for rear channels, there is no problem with speaker system now...
    Please insert the soundcard on another PCI slot, and make sure it is firmly inserted. Please disable any onboard sound card if available through BIOS.
    Go to Control Panel, Add Remove Programs and un-install all listings related to your audio card. Do not restart your computer when prompted so.
    Go to Control Panel, and switch to Classic View. Click System, Hardware tab, Device Manager button and delete all sound cards entries in Sound, Video and Game Controllers as well as any previous sound card entries from the Device Manager.
    Reboot the computer and cancel out of any driver installation if you are prompted. Insert the Creative Sound Blaster installation CD into your CD-ROM dri've. Exit from the installation wizard if it autoruns.
    Click Start, Run and then Browse. Browse to Z:\Audio\Drivers\CTZAPXX.EXE, where Z represents the CD Rom Dri've.
    Choose YES if you receive a prompt "Overwrite existing shared creative audio driver files?"
    Select Driver un-installation for WDM drivers and click OK.
    When prompted to restart, say No.
    Click Start, Run, type MSCONFIG and press Enter.
    Check the box next to Selecti've Startup and deselect Load Startup Items.
    Select the SERVICES tab and select Hide All Microsoft Services.
    Uncheck all results and click OK.
    Browse to the C:\Temp folder and C:\Windows\TEMP (if it exists) - all files and folders in the temp folder need to be either deleted or moved to a new folder.
    Browse to Program Files, Creative and delete the Sound Blaster Folder - if you get a file that won't delete, right click on the file, click Properties and clear all the attributes. The file should then be able to be deleted.
    Empty the Recycle Bin, and reboot the computer.
    If you wish to reinstall your software & drivers, do this now. For more information on how to install your product, please visit the Product Guide page for installation instructions. Otherwise, go to the next step.
    Click on Start, Run. Type MSCONFIG and press Enter.
    Select Normal Startup, and press the OK button.
    Reboot the computer
    Run creative diagnostic test, any problems?
    Configure the speaker setting as 5.
    TEST CARD WITH HEADPHONES
    . Run speaker test
    2. Plug headphones into the front out jack 3. Click on the speaker test button 4. In the headphones you should hear a voice for front left, and front right.
    5. Plug headphones into the rear out jack 6. Click on the speaker test button 7. In the headphones you should hear a voice for rear left and rear right.
    8. Do you hear sound from each channel?
    Any sound from rear channels?
    Please retain all the previous correspondence when replying to this email.
    Best Regards
    Creative Customer Support Services
    Creative Labs Europe
    To provide feedback on your "Creative Experience" and our service please click on the following link:
    http://www.**bleep**.com/support/con...asp?r=CLE&d=TS
    Please do not use this link to submit technical queries
    Original Message Follows:
    Hi,
    I have done the below, and get output via a walkman connected directly to the sub on both front and rear speakers no problems at all.
    I have reconnected the cables from the sound card, run channel test again in speaker settings, and still get no output from rear-left and rear-right.
    I should have mentioned before that rear-centre is fine.
    Any further help will be greatly appreciated.
    Cheers,
    Rob.
    -----Original Message-----
    From: CLE Customer Support [mailto:[email protected]]
    Sent: 09 March 2005 08:40
    Subject: Re: CLE - Technical Support Request (KMM557969I2452L0KM)
    Dear Rob
    Thanks for contacting Creative Technical Support.
    Please use an external cd player and connect to the front input on the subwoofer.
    Play the CD, any sound?
    Now try on the rear input.
    Play the CD, any sound from the speakers?
    Now please connect back the speakers to the PC.
    Ensure you have connected properly.
    Ensure you have configure 6. speaker setting, run a speaker test.
    Any sound from rear channel?
    Ensure the balance control is configure properly as well
    Please retain all the previous correspondence when replying to this email.
    Best Regards
    Creative Customer Support Services
    Creative Labs Europe
    To provide feedback on your "Creative Experience" and our service please click on the following link:
    http://www.**bleep**.com/support/con...asp?r=CLE&d=TS
    Please do not use this link to submit technical queries
    Original Message Follows:
    =======================
    Subject: CLE - Technical Support Request
    Name:
    E-mail Address:
    Self Description:
    ID(3) Advanced PC User
    Country: United Kingdom
    Support Inquiry: ID(3) My Creative hardware stopped functioning correctly
    Product: Sound Blaster? Audigy? 2
    Purchase Date: 4/3/2004
    Serial Number:
    Operating System: Windows XP
    Creative Model Number: SB0240
    Computer Brand/Model: self built
    Processor/CPU: Athlon 3200+
    Memory: 2xgb DDR400 Dimms
    BIOS Type/Revision: Phoenix - rev 008
    System Board/Chipset: ASUS A7N8X Deluxe rev2.0
    Detailed Problem Description:
    Typical, following months of trying to get a replacement remote control cable for my inspire 6. 6700 the 2 rear speakers on the set don't play sounds any more. I have done a clean XP install to ensure no driver corruption, but no difference. It's not the subwoofer as I have a spare, unused sub and that gives the same results.
    I have also checked all cabling, mixer/volume settings and nothing unusual is showing.
    Of course, my audigy 2 card is my guess as the culprit, I can't be positi've though. All other speakers operate perfectly, can even hear background hiss through the rear-left and rear-right speakers which won't play sounds/music/games or anything at all. But when I select "Creative Speaker Settings" to test the channels individually, they don't play a test sound here either.
    Any help greatly appreciated.
    Cheers,
    Rob.
    PS: Please remove the technical support advisor name when posting quote from the email.Message Edited by Jason-CL on 03-30-2005 06:7 AM

    Hi qwerty,
    Dun tink that creative customer support sucks cos I had been dealing with them in the past and I can say that their service are quite gd and fast. If you wanted a refund, I tink you need to contact the store that sells you the product. Dun tink creative will refund you though.

  • Calendar & File Upload Components - Threadinar6

    Hi All,
    This is the sixth in the "Threadinar" series , please see Threadinar5 at
    http://swforum.sun.com/jive/thread.jspa?threadID=99473 for details
    In this Threadinar we will focus on the
    "Calendar" and "File Upload" Components
    Let us begin our discussion with the Calendar Component.
    Calendar Component
    You can drag the Calendar component "calendar component icon" from the Palette's Basic category to a page open in the Visual Designer to create an entry field with an integrated calendar pop-up to help the user pick dates for the field.
    You can also drop the calendar on a container component, like a table cell or group box.
    After dragging the component to the Visual Designer, you can work with the following useful properties of the Calendar Component:-
    General
    * id. Type: String
    The name of the Calendar component in the page bean and the JSP file.
    Appearance
    * columns. Type: int
    The number of character columns used to render the component. The default value is 20.
    * dateFormatPattern. Type: String
    The format of the date to be entered by the user. It is not usually necessary to set this property because a pattern is chosen automatically based on the locale.
    If you prefer to specify a date format, click the ellipsis button (...) to the right of the property and select a predefined date format from the property editor's list. You can also add your own formats. If you add a format, the values you can enter are limited to some combination of yyyy for the year, MM for the month, and dd for the day separated by separator characters. Typical separator characters are / (slash), . (period), and - (dash). For example, the following date formats are acceptable:
    o MM/dd/yyyy
    o yyyy.MM.dd
    o MM-dd-yyyy
    * dateFormatPatternHelp. Type: text
    Text that appears below the date entry field and shows the format pattern that the date entry field accepts. If you have not set the dateFormatPattern property, the help text is chosen automatically for you. If you have set the dateFormatPattern property, you should bind the dateFormatPatternHelp property to a localized string that matches the setting for each locale you want to support.
    * label. Type: String
    A label that appears next to the text entry field, typically describing what the user is supposed to enter.
    o Note: The label property is not as flexible as the Label component. You can use the Label component if you want more control over the label's appearance, such as positioning of the label relative to the component.
    * labelLevel. Type: int
    A number that affects the appearance of the label. 1 (Strong) is larger and bold. 2 (Medium), the default, is smaller and bold. 3 (Weak) is smaller and normal (not bold). This property takes effect only if the label property is set.
    * style. Type: String
    Cascading Style Sheet rules (CSS level 2) to be applied to the component. For example:
    position: absolute; left: 288px; top: 312px
    You can enter values directly or click the ellipsis (...) button to use the Style Editor.
    o Note: This property overrides any settings in the theme or the project CSS file for this component. If a style specified in this property does not appear to take effect, it is because an area of the component is obscured by a child component that has different style settings.
    For a list of CSS2 style attributes, see the web page at
    http://www.w3.org/TR/REC-CSS2/propidx.html
    * styleClass. Type: String
    A space-separated list of CSS2 style classes to be applied when the component is rendered. The style classes must be defined in the project's style sheet or in the theme's CSS file. If you click the ellipsis button (...), you see a list of all styles you can add to this property. For information on adding CSS classes and rules to the project's cascading style sheet, see CSS Editor.
    o Note: See the note above under the style property description for an explanation of why a class added to this property might appear to have no effect on the component.
    o Note: If you add a CSS style class from the current theme to your project CSS file and you redefine the style class, the change affects all components that use this style class. However, you can add your own style classes to the project CSS file that redefine the default style classes, and then when you add them to this property, the changes affect only this instance of this component.
    For the defaulttheme.jar CSS style classes for this component, see Calendar Component CSS Classes.
    Data
    * maxDate. Type: java.util.Date
    The last date that the user can select. The default value is four years from the date set in the minDate property, for a total span of five years.
    * minDate. Type: java.util.Date
    The earliest date that the user can select. The default value is the value of the selectedDate property, which defaults to the current date if that property is not set.
    * required. Type: boolean
    If selected, the user must enter a value for the calendar before the page can be submitted. If you add a Message component to the page and link its for property to this component, an error message will be displayed if the user tries to submit the page without entering a value.
    * selectedDate. Type: Date
    A java.util.Date object representing the calendar date selected by the user. If you right-click the component and choose Bind to Data, you can bind this property to a data provider or object that can process the user entered value on the server.
    When the component displays initially, if this property is not set, its value defaults to the current date. If you provide values for minDate and maxDate, you can also provide a value for this property that initially displays a date in that range.
    * validator. Type: MethodBinding
    Indicates the JavaServer Faces validator that is called when the value is submitted. A validator ensures that the correct value is entered by a user. Choose a validator from the drop-down list. If you choose (null), no validator is called. If you choose a validator, also select the required property to ensure that the validator is used. For descriptions of JavaServer Faces validators, see the list of topics at List of Validators.
    o Note: If you define your own validate method, for example, by right-clicking the component and choosing Edit Event Handler > validate, any value you might have set in this property is overridden.
    File Upload Component
    You can drag the File Upload component "file upload component icon" from the Palette's Basic category to the Visual Designer to create an entry field and a browse button that opens a file chooser dialog on the local system, enabling the user either to select a file or to type a file name into the entry field. When the page is submitted, a copy of the file's contents is sent to the web application.
    The component is similar to an HTML <input type="file"> element.
    * Note: This component is neither supported by nor available in portlet projects due to security reasons.
    * Note: The size of the component in the Visual Designer might not match the size of the component when it is rendered in a web browser, making the component appear to line up correctly in the Visual Designer, but not when the page is rendered in the user's web browser. Also, the rendering of this component can differ depending on the web browser. Be sure to test the component in the web browsers that you expect your users to use. For example, if you add a width setting to the style property that is smaller than the setting in the columns property, Internet Explorer observes only the width setting, while the Mozilla browser ignores it and sets the width according to the number of characters in the columns property.
    The File upload component uses a filter, a com.sun.rave.web.ui.util.UploadFilter object that is configured for you in the web application's deployment descriptor. The UploadFilter uses the Apache commons fileupload package. You might need to change these settings in the following two cases:
    * The server holds the uploaded file in memory unless it exceeds 4096 bytes; otherwise, the server holds the file contents in a temporary file. You can change this threshold by modifying the sizeThreshold parameter for the UploadFilter filter entry in the web application's web.xml file.
    * By default, the File Upload component can handle files up to one megabyte in size. You can change the maximum file size by modifying the maxSize parameter for the UploadFilter filter entry in the application's web.xml file.
    o
    A negative value for the maxSize parameter indicates that there is no file size limit. Setting the parameter to a negative value is not recommended for security reasons. For example, if you allow unlimited file sizes, a malicious user could mount a denial of service attack on your site by using extremely large files
    * To change the settings for the UploadFilter object in the web.xml file:
    1. In the Files window, expand project-name > web > WEB-INF.
    2. Double-click the web.xml node to open the file in the XML editor.
    3. Click the Filters toolbar button.
    4. In the UploadFilter section under Initialization Parameters, you can change the values for the maxSize and sizeThreshold parameters.
    The contents of the uploaded file, together with some information about it, are stored in an instance of com.sun.rave.web.ui.model.UploadedFile. By using this object, you can get the content of the file as a String or write the contents to disk, as well as get properties such as the name and the size of the file. In the interest of conserving memory, the contents and file data are only available during the HTTP request in which the file was uploaded. To access the contents of the uploaded file, bind the uploadedFile property to a bean property of type com.sun.rave.web.ui.model.UploadedFile. Have the setter or an action method process the file.
    The UploadedFile interface has methods for getting the name and size of the file, determining the file's MIME type (such as text/plain or image/jpeg), getting the file's contents as bytes or as a String, and writing the contents to disk. To learn more, in the Java editor, right-click on UploadedFile in a declaration statement and choose Show JavaDoc from the pop-up menu.
    * To set the component's properties, select the component and edit its properties in the File Upload Properties Window.
    * Right-click the component and choose one of the following pop-up menu items:
    o Edit validate Event Handler. Opens the Java Editor with the cursor positioned in the component's validate method so you can insert code to validate the value of the component.
    o Set Initial Focus. Gives this component focus when the user opens the page.
    o Auto-submit on Change. Causes the form to be automatically submitted if the value of the component changes. Sets the component's JavaScript onclick property to common_timeoutSubmitForm(this.form, 'component-id');. At runtime, this code causes the form to be automatically submitted if the user changes the component value. Once the form is submitted, conversion and validation occur on the server and any value change listener methods execute, and then the page is redisplayed.
    A component configured to Auto-submit on Change can use virtual forms to limit the input fields that are processed when the form is submitted. If the auto-submit component is defined to submit a virtual form, only the participants in that virtual form will be processed when the auto-submit occurs.
    o Bind to Data. Bind the component's text property to an object or to a data provider. For more information, see Bind to Data Dialog Box.
    o Property Bindings. Bind any of the component's properties to an object or data provider, such as the uploadedFile property to a bean property of type com.sun.rave.web.ui.model.UploadedFile.
    o Configure Virtual Forms. Enables you to add the component to a virtual form.
    For more details on using the "File Upload Component" Please see this tutorial
    http://developers.sun.com/prodtech/javatools/jscreator/learning/tutorials/2/file_upload.html
    Please share your comments, experiences, additional information, questions, feedback, etc. on these components.
    ------------------------------------------------------------------------------- --------------------

    Of interest relating to file upload component to users : "Saving Uploaded Files Uploaded by the File Upload Component " Check the blog:
    http://blogs.sun.com/roller/page/divas

  • List View Web part not showing all available views for list

    We have added a list view web part to a page, and we get the "Current View" link in the web part...which is configurable when modifying the actual web part.
    What we'd like to see (instead of having to click the ellipses button/context menu to get the other views) is the views displayed horizontally like when you are viewing the list itself.
    When viewing the list itself, we see "All Items" "View 1" "View 2", etc.
    Is this possible in the list view web part to display all available views in a horizontal/breadcrumb layout?  Please advise.

    The below works via alert, just need to now assign data to a <DIV> or element for display.
    Trying this in simple webpart code snippet to get back all views:
        <script>
        var viewCollection = null;
            function runCode() {
                var clientContext = new SP.ClientContext.get_current();
                if (clientContext != undefined && clientContext != null) {
                    var web = clientContext.get_web();
                    var listCollection = web.get_lists();
                    var list = listCollection.getByTitle("MyListName");
                    this.viewCollection = list.get_views();
                    //var viewInfo = new SP.ViewCreationInformation();
                    //viewInfo.set_title('MyView');
                    //this.viewCollection.add(viewInfo);
                    clientContext.load(this.viewCollection);
                    clientContext.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceeded), Function.createDelegate(this, this.onQueryFailed));
            function onQuerySucceeded() {
                var viewInfo = 'Tasks list current views: \n\n';
                var viewEnumerator = this.viewCollection.getEnumerator();
                while (viewEnumerator.moveNext()) {
                    var view = viewEnumerator.get_current();
                    viewInfo += view.get_title() + '\n';
                alert(viewInfo);
            function onQueryFailed(sender, args) {
                alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
        </script>
        <a onclick='return runCode();'>Click here</a>
                            

  • Audigy 2 Tech support little help for n

    Original Message Follows:
    Subject: CLI - Technical Support Request
    Self Description: ID(3) Advanced PC UserSupport Inquiry: ID() I am installing or using the product for the first timeProduct: Audigy 2 ZSOperating System: Windows 2000Creative Model Number: SB0240Computer Brand/Model: Home builtProcessor/CPU: P4 3.0ghzMemory: .024gigBIOS Type/Revision: Award Bios SPE000 Pro-G.ESystem Board/Chipset: GA-8IPE000/Intel 865PE Host/AGP/Controler ICH5 IO
    Detailed Problem Description:I have recently made a purchase from e-bay form your company for Creative Sound Blaster Audigy 2 Sound Card http://cgi.ebay.com/ws/eBayISAPI.dll...92950&tc=photo I have install this product to go along with my Creative Labs Inspire P5800 5. speaker system. I am having the following problems.
    . I can only get output from 2 speakers front left and front right.2. I cannot get my microphone to work at all. Its plugin to the proper port. It worked with the old sound card. It works on other pc's I have at my residence. So its not the microphone. I checked all the connections and they are correct. I have been to the knowledge base with no luck. I have been through the forums searching and the majority of the forum responses are users helping users with very little input from Creative labs. (disappointed)I have installed/un-installed/re-installed without any luck, the software that came on the cd. I have also retrieved the last software downloads from your web site without any luck.So either I am missing something here, or I got a defecti've sound card.
    REPLY/Answers inline:
    Jason, My answers are inline.
    > Thank you for contacting Creative Technical Support. > With regards to the issue you are having, may I know the model and > serial number of the product you are having? It should start with CT or SB followed by 4 numbers >found on the sound card. As for the serial number, it can be found on the sticker and the ink stamp >which is printed on the back of the card. SB0240 > Below is a link that may help with the location of the model number. Thanks. Run a keyword search for > SID2456 from the link below.> http://us.creative.com//support/kb/> > For the 2 speakers output issue, may I know are you using digital or analog connection for your >speakers? I assume its an analog connection Creative Insprire P5800 as I don't have anything like a EAX control module that goes in between. Also I have no sound at all til I go to the speaker setting control panel andde-select digital output only.
    I have 3 wire connection Green Line out (front) Black line out 2 (rear) and Orange line out 3 (center subwoofer) These connect from the back of the sound card directly into the subwoofer. Green (front) black (rear) orange (center subwoofer)
    My old sound card RealTek`AC97 worked fine and I had sound in all my speakers. Yes I have removed the old card and un-installed the old drivers for it. Also the mircophone worked with the old sound card so I know thats not an issue. > Sorry for any inconvenience caused. > We'll need this information so that we can provide you with the correct remedy.
    Reply/Answers Again Inline:
    > May I know have you enabled CMSS?Yes I have this enabled, disabled and re-enabled to try and get this to work. > . Open MediaSource (Start, All Programs, Creative, Creative MediaSource, Creative MediaSource >Organizer).> 2. There should be an EAX button underneath the Record button at the bottom of the screen, towards >the left. Beside this button, there should be a small ellipsis button (. . .) that you can press. >Click on this. Doing this locks up my pc as soon as I hit the (....) tab. The pc spikes to 00% and the only thing I can do is hit the reset button on the pc to hard boot it. I have tried this several times with the same results. Note: I DO NOT have anything running in the background as anti virus programs and such. I don't even have anything like that installed on my pc. NOTE: I can press the EAX button itself to make it from high lighting green on the button to not high lighting green. This has had no effect on the problems I am having. > 3. Go to the CMSS 3D tab and check the box next to "Enable CMSS 3D" The only way I can get to this is by: Start>Program Files>Creative Media>Source>Creative Media Source Go, then the GO button>Product Settings>EAX Console. I have enabled, disabled and re-enable the CMSS 3D with no changes to my problem.> 4. Place a dot next to either CMSS or CMSS2. Whichever sounds better to you. I have tried CMSS and CMSS2, I have the same results with either enabled or even with CMSS 3D enabled or disabled. I only get sound out of 2 of my speakers. I know its not the speaker system (Creative Inspire P5800) because all the speakers worked with my old sound card. > It is important to remember that if you do wish to play a 5. encoded file, you will need to turn CMSS >off. Otherwise you might not receive each discreet channel. This has been Noted ref. to 5. encoded. But I would like to just play anything at this time and have all my speakers work.
    > For your microphone, I wil need you to do a mic test.>CHOOSE THE RECORDING SOURCE> . Double click on the Windows Volume Control (generally on task bar) to load the mixer> 2. Go to Options > Properties > 3. Select adjust volume for: Recording, and hit OK> 4. Place a check mark under the proper recording source (Microphone) in the Recording Control box. Done, already checked this. And doubled checked it to make sure. > TEST RECORD THE AUDIO> . Go to Start > Programs > Accessories > Multimedia > Sound Recorder.> 2. Click the Record button (red dot)> 3. Talk into the microphone > 4. Let it record the source for a little bit> 5. Hit the Stop button (black square)> 6. Hit the Play button (single black arrow pointing right)> 7. You should now hear the audio that you recordedNo sound recorded what so ever. I tested 3 different mircophones and none worked. I ran this test on the two other pc's I have at my residence and the mircophones worked and windows recorded just fine. YesI have it plug into the proper slot. > Does it help?I wished it did. > Please get back to us on your findings. Thanks.
    Reply/Answers inline:
    Dear Creative Labs,DO YOU PEOPLE EVEN READ THE PRIOR CORESPONDCE FROM THE PRIOR E-MAILS SINCE YOU APPARENTLY HAVE MUTLITPLE PEOPLE WORKING THE SAME SUPPORT TICKETS.
    I WILL REPLY IN ?CAPS? TO MAKE SURE YOU DON?T MISS ANYTHING THIS TIME??. MY REPLIES ARE INLINE AND IN CAPS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    > Thanks for the reply. I need you to know that SB0240 is the Sound Blaster Audigy 2. AS STATED IN MY PRIOR E-MAIL YES IT IS AN AUDIGY 2 SOUND CARD SEE INFORMATION BELOW. Support Inquiry: ID() I am installing or using the product for the first timeProduct: Audigy 2Model: SB0240Blaster Audigy 2 Sound Card http://cgi.ebay.com/ws/eBayISAPI.dll...92950&tc=photo ARE WE CLEAR ON THIS NOW? > Please try the following cleansweep and re-installation procedure, to see if it works:-> . Click START / RUN / Type MSCONFIG and press ENTER. AS STATED BEFORE I AM RUNNING WINDOWS 2000 MSCONFIG.EXE DOES NOT COME WITH WINDOWS 2000 AS DEFAULT. SO TO MAKE SURE I FOLLOWED YOUR DIRECTIONS TO THE ?T? I WAS ABLE TO GET THE MSCONFIG.EXE MICROSOFT. THE COMMON USER WOULD NOT HAVE KNOWN THIS AS THEY WOULD HAVE TRIED ABOVE AND GOTTEN AN ERROR MSG THAT MSCONFIG COULD NOT BE FOUND. > 2. Insert a check to the left of SELECTIVE STARTUP and deselect 'LOAD STARTUP ITEMS'. DONE! > 3. Select the SERVICES tab and select HIDE ALL MICROSOFT SERVICES. DONE! > 4. Uncheck all results and click OK. DONE! > 5. Click OK and reboot when prompted. DONE! > 6. Enable the WINDOWS XP STARTUP MENU by rebooting your computer and tapping F8 once >every second OR holding the SHIFT key while rebooting. I AM RUNNING WINDOWS 2000 AS STATED BEFORE, IF YOUR GOING TO USE TEMPLATES MAKE SURE THEY REFER TO THE OPERATING SYSTEM THE USER HAS. BUT F8 STILL IS THE DEFAULT KEY TO GET TO THE WINDOWS 2000 STARTUP MENU. > 7. When the menu is displayed, select SAFE MODE and press ENTER. DONE! > 8. Once in SAFE MODE, insert the sound card's installation CD and exit out of the installer DONE! > 9. Click START / RUN. DONE! > 0. Type "X:\AUDIO\DRIVERS\CTZAPXX.EXE into the OPEN field (replace X with the applicable CD->ROM dri've letter). DONE! > . Click OK. DONE! > 2. When the CREATIVE DRIVER UPDATE UTILITY opens, select DRIVER UNINSTALLATION under >UPDATE OPTION. DONE! > 3. If two out of the three options are disabled or grayed out under DRIVER TYPE, click OK. >Otherwise, select WDM. You will then be prompted to reboot, but please do not do so. DONE! > 4. Click START / SETTINGS / CONTROL PANEL / ADD/REMOVE PROGRAMS. DONE! > 5. Remove all Creative SB Audigy 2 programs. DONE! > 6. Close all windows, and reboot the computer normally (ENTER NORMAL MODE). DONE! > 7. The Audigy 2 will be detected by Windows. Cancel the ADD NEW HARDWARE WIZARD when >able. DONE! > In order to install your soundcard properly, I recommend you to ensure the following for the audio >installation and test:
    >- The card is the only card installed other than the Graphics card. THE ONLY CARDS THAT ARE INSTALLED ON MY PC ARE THE SOUNDCARD AND GRAPHICS CARD WHICH IS IN A APG SLOT. > - The card is at least one empty slot away from the Graphics card. THE CARD IS ON THE 3 SLOT FROM THE TOP AND SLOT FROM THE BOTTOM WITH NO OTHER CARDS INSTALLED. >- Place the soundcard away from all the others. NO OTHER CARDS ARE INSTALLED >- That the card is seated properly in the PCI slot. YES THE CARD IS PROPERLY SEATED THIS A BASIC A+ CERTIFICATION TASK >- Move the PC's internal wires away from the soundcard. NO WIRES ARE NEAR THE SOUND CARD I.E. POWER CONNECTORS > - That the on-board sound on your motherboard is disabled through the BIOS. CORRECT THIS WAS DONE BEFORE INSTALLING THE SOUND CARD > - That the on-board gameport is disabled through the BIOS. CORRECT THIS WAS DONE BEFORE INSTALLING THE SOUND CARD >- That your motherboard BIOS is up-to-date. MOTHERBOARD IS RUNNING THE LATEST BIOS, ITS ONLY 2 MONTHS OLD. > - That the operating system is up-to-date with the latest service packs and patches. WINDOWS UPDATES ARE UP TO DATE WITH THE LATEST PATCHES > - That there are no background applications open when you attempt the solution. CORRECT AS I STATED BEFORE > - That the anti-virus program is disabled. > NONE LOADED ON THE PC AS I STATED BEFORE > - That if you are over-clocking your system, return all options to their recommended settings. I HAVE NEVER OVERCLOCKED ANY OF MY PC?S > - That you access the PC with administrator rights. CORRECT I AM THE ONLY USER > 8. Perform an installation via the CTRUN program on the CD (X:\CTRUN\CTRUN.EXE where X is the >dri've letter of your CD dri've that has the installation CD). DONE! > 9. Reboot if prompted. DONE! > 20. Please obtain the latest updates for your Audigy 2 card from our website:- http://us.creative.com//support/downloads/
    DONE! > 2. Once you are prompted to OPEN FROM CURRENT LOCATION or SAVE TO DISK, select SAVE >TO DISK and download the update to MY DESKTOP.
    DONE! > 22. When the file has completed the phase of being transferred to your computer, locate the file on >your desktop and double click the file. DONE! > Do a speaker and diagnostic test. Do you have 5. output? DO I HAVE 5. OUTPUT? NO STILL THE SAME PROBLEM > I also need you to check the Speaker selection setting in Start | Programs| Creative | Sound Blaster >Audigy 2 | Creative Surround Mixer and ensure that it is set to 5. Speakers. Also set 5. at the Control CORRECT SEE LINKS FOR DESKTOP PICTURES http://vibig.rachost.com/desktop/DESK.jpghttp://vibig.rachost.com/desktop/DESK2.jpghttp://vibig.rachost.com/desktop/DESK3.jpg > Panel Speaker Settings.> On speaker systems that are equipped with a Fader or Rear channel volume controls, check to see >that these controls have not been set to use the front channels exclusi'vely. CHECKED! > Do reply back to me if you are still having problems with any error messages prompted. Thanks.
    > PLEASE READ! AFTER FOLLOWING THE ABOVE INSTRUCTIONS! I REFERED BACK TO THE PRIOR E-MAIL AND DID THE TEST AS REQUESTED THE RESULTS WERE THE SAME WITH MINOR FIX. > . Open MediaSource (Start, All Programs, Creative, Creative MediaSource, Creative MediaSource >Organizer).> 2. There should be an EAX button underneath the Record button at the bottom of the screen, towards the left. Beside this button, there should be a small ellipsis button (. . .) that you can press. Click on this. > > Doing this locks up my pc as soon as I hit the (....) tab. The pc spikes to 00% and the only thing I >>can do is hit the reset button on the pc to hard boot it. I have tried this several times with the same >>results. THIS NO LONGER LOCKS UP MY PC, I AM ABLE TO HIT THE (?) AND IT BRINGS UP THE EAX CONSOLE SCREEN TO ENABLE CMSS 3D THIS HAS BEEN ENABLED ? DISABLED ? RE-ENABLED WITH THE SAME RESULTS. > CHOOSE THE RECORDING SOURCE> . Double click on the Windows Volume Control (generally on task bar) to load the mixer> 2. Go to Options > Properties > 3. Select adjust volume for: Recording, and hit OK> 4. Place a check mark under the proper recording source (Microphone) in the Recording Control box. > > Done, already checked this. And doubled checked it to make sure. > TEST RECORD THE AUDIO> . Go to Start > Programs > Accessories > Multimedia > Sound Recorder.> 2. Click the Record button (red dot)> 3. Talk into the microphone > 4. Let it record the source for a little bit> 5. Hit the Stop button (black square)> 6. Hit the Play button (single black arrow pointing right)> 7. You should now hear the audio that you recorded > > No sound recorded what so ever. I tested 3 different mircophones and > > none worked. I ran this test on the two other pc's I have at my > > residence and the mircophones worked and windows recorded just fine. Yes> > I have it plug into the proper slot. THIS IS STILL AND ISSUE AS IT STILL DOES NOT WORK. THE SPEAKERS ARE STILL NOT WORKING RIGHT AS I ONLY CAN GET SOUND OUT OF THE FRONT 2 SPEAKERS.NOTHING HAS CHANGED AS WE ARE BACK TO SQUARE ONE AGAINIf someone could help me or shed some light on this situation I would be very grateful. !!!
    Thanks,
    Capt.

    Support have to go over some things first to make sure you've tried them. If it hasn't helped, just mail them back and let them know. It sounds like like you have the settings correct (CMSS, 5. in speaker selection), so there must be something wrong in the installation or configuration of the software.
    The CleanBoot troubleshooting page on Microsoft's Kbase might help, although, it sounds like you covered a clean install aswell so that would normally help.
    These forums are for user-to-user interaction, rather than Support from Creative. We monitor these forums and reply to some posts, but we can't reply to every topic and offer everyone support (that's what the phone and e-mail support are for).
    Cat

  • How separate and rotate pieces of an object in preparation for creation of a GIF in After Affects?

    Here is the image that I'm working with...
    I want to make this object rotate a tight 90 degrees in After Effects and then separate. If you're wondering why I put this up under Photoshop it is because I need to have this model in addition to 2 others, one of the top half and one of the bottom half and button, both turned 90 degrees [preferably clockwise] in order to create the GIF. I need these 3 pieces before I can even consider creating the GIF in After Effects... so if somebody either wants to try and do it for me or to try and help me to do it on my own, either one would be extremely helpful

    Don't worry guys, I actually found the answer all on my own what I needed was to separate the image into 3 files, something I was probably going to do anyways to make exporting and importing the images easier and rotating the two top and bottom half images here's what I have right now (per background removal)Thanks for trying to help... but I think I'm ready to move on to After effects with this one The reason I'm moving it to after effects is simply because I understand simple movement/animation there already... if you're curious as to what I plan on doing with these images, the complete ball will sit in a hole in my border, turn a sharp 90 degrees right and then be replaced by the two half images, the bottom one will fade slowly out while the top is lifted off screen to the right... it's a fancy reveal for my upcoming project thanks again

Maybe you are looking for