In Grapher, can I make a graph's color after edits?

I see how to color a graph – you click the equation, than click the "Inspector", then the color box, etc.  My problem is that when I edit the equation, it the corresponding line graph goes back to black. Is there a way to make the color stick to the equation, even when it's edited? I'm trying to experiment with different variations of a curve, so I keep tweaking the equation, and I want to see them in different colors.
thanks,
Rob

Hi Robert
I know only one way to avoid going back to default settings of the Inspector when editing equations, that is to "Animate Parameter" as shown in the sceen copy.
No more then one animated parameter in an équation.
So long,
YB24

Similar Messages

  • How can I make the ipod stop itself after playing one song?

    How can I make the ipod stop itself after playing one song?

    When playing a song, are the controls at the top of the screen there? (Genius, Shuffle, Loop?)
    If not, tap the center of the page once to expose them
    now keep tapping the circle on the left part of the exposed controls untill a one (1) appears...

  • How can I make my wireless keyboard "discoverable" after replacing the batteries?

    How can I make my wireless keyboard "discoverable" after replacing the batteries? Bluetooth keyboard setup said my  "keyboard is not connected" when I turned it on today.....assuming the problem was batteries, I replaced them.

    I've got it working now.....

  • How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc?

    Hi,
    How can I make my Introduction_mc automatically disappear after 10 Seconds and load Home_mc (automatically)? I don't want user to change by himself this Introduction page. It should be done automatically.
    What is the procedure and code to achieve it, please?
    Thanks.

    Hi,
    I gues you are using AS2.0, then use setInterval, in AS3.0 user Timer Class.
    AS2.0
    var interval:Number = setInterval(doThis,10000);//in milliseconds
    function doThis():Void{
    //do something;
    AS3.0
    var timer:Timer = new Timer(10000, 1);
    timer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerCompleteHandler, false, 0, true )
    function onTimerCompleteHandler(event:TimerEvent):void{
    //do something;
    For details: http://blogs.adobe.com/pdehaan/2006/07/using_the_timer_class_in_actio.html
    Warm Regards
    Deepanjan Das
    http://deepanjandas.wordpress.com

  • Can you make core center automatically close after being called on startup?

    Can you make core center automatically close after being called on startup so it can set cpu fan speed to a slower fixed speed then exit?
    If core center really cant do such a simple task then can speedfan or another program?

    Quote from: bassmadrigal on 13-July-05, 07:42:36
    Why don't you want them running. Speedfan has a very small footprint.
    Just seems unnecesary seeming as it does its task as soon as it runs and its changes then stay applied. Speed fan is probably better but core center takes 10mb.
    Quote from: syar2003 on 13-July-05, 07:57:02
    You dont have to have it running to set a user specified fan rpm .
    Once it's set it is stored in the corecell/cmos chip on the motherboard .(until a cmos reset) .
    So to answer your question .
    There is no need to have it autostarted at each boot ...
    Thats how i have used it .
    Only reason to have it running is with MSI's "CnQ" control of the fan , varies with the load of the processor
    Thats strange for me the speed resets to default as soon as I restart my pc (about when the bios engages which is however tangibly after the graphics card fan revves up to its full speed). Depending on the temperature of the proccessor it goes to 3300rpm (less than 42c) or 4500rpm (too loud for ~45c IMO and MSIs "cool&quiet" option seems to agree, it doesn't even set it as high as 3300rpm)

  • How can i make text in 4 colors??

    Hello
    i'm making a short film in "premiere" and i want to add some text effect
    so i using "after effect" for the text effect...
    my question is how can i make text in 4 colors (which each letter get 1 diffrent colors from each corner)
    i know how to do it in the premiere  but i couldnt find this option in after effect
    Thanks

    Select the text you wish to adjust with the Text Selection tool. 
    Click on the text colour box in the Text Pallete and select a colour.
    Repeat with each new section of text.

  • How can i make perticular row or perticular cell Editable  of a JTable

    Dear al,
    can u help me by guiding me for the problem of...
    i am having a JTable, in which a (first)column of each row is having a checkbox field.
    If the checkbox is checked then and then i should able to modify the cells in that row where the checkbox is.
    I have created the table with AbstractTableModel of which the isCellEditable(int row, int col) method is overwriten. Whatever return value (true/false) reflects the perticular
    cells becomes editable/non-editable respectively.
    but at run time...(mean the table is created now) and now i want to make the cells editable/non-editable depending on the checkbox value...
    how can i implement it.........
    please suggest.........
    thank you.........

    here is the sample code from tutorial.......
    * TableRenderDemo.java requires no other files.
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import javax.swing.DefaultCellEditor;
    import javax.swing.JComboBox;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.AbstractTableModel;
    import javax.swing.table.DefaultTableCellRenderer;
    import javax.swing.table.TableCellRenderer;
    import javax.swing.table.TableColumn;
    * TableRenderDemo is just like TableDemo, except that it explicitly initializes
    * column sizes and it uses a combo box as an editor for the Sport column.
    @SuppressWarnings("serial")
    public class TableRenderDemo extends JPanel {
         private boolean DEBUG = true;
         public TableRenderDemo() {
              super(new GridLayout(1, 0));
              JTable table = new JTable(new MyTableModel());
              // table.setEditingColumn(0);
              // table.editCellAt(0, 0);
              table.setPreferredScrollableViewportSize(new Dimension(500, 100));
              // Create the scroll pane and add the table to it.
              JScrollPane scrollPane = new JScrollPane(table);
              // Set up column sizes.
              initColumnSizes(table);
              // Fiddle with the Sport column's cell editors/renderers.
              setUpSportColumn(table, table.getColumnModel().getColumn(2));
              // Add the scroll pane to this panel.
              add(scrollPane);
          * This method picks good column sizes. If all column heads are wider than
          * the column's cells' contents, then you can just use
          * column.sizeWidthToFit().
         private void initColumnSizes(JTable table) {
              MyTableModel model = (MyTableModel) table.getModel();
              TableColumn column = null;
              Component comp = null;
              int headerWidth = 0;
              int cellWidth = 0;
              Object[] longValues = model.longValues;
              TableCellRenderer headerRenderer = table.getTableHeader()
                        .getDefaultRenderer();
              for (int i = 0; i < 5; i++) {
                   column = table.getColumnModel().getColumn(i);
                   comp = headerRenderer.getTableCellRendererComponent(null, column
                             .getHeaderValue(), false, false, 0, 0);
                   headerWidth = comp.getPreferredSize().width;
                   comp = table.getDefaultRenderer(model.getColumnClass(i))
                             .getTableCellRendererComponent(table, longValues, false,
                                       false, 0, i);
                   cellWidth = comp.getPreferredSize().width;
                   if (DEBUG) {
                        System.out.println("Initializing width of column " + i + ". "
                                  + "headerWidth = " + headerWidth + "; cellWidth = "
                                  + cellWidth);
                   // XXX: Before Swing 1.1 Beta 2, use setMinWidth instead.
                   column.setPreferredWidth(Math.max(headerWidth, cellWidth));
         public void setUpSportColumn(JTable table, TableColumn sportColumn) {
              // Set up the editor for the sport cells.
              JComboBox comboBox = new JComboBox();
              comboBox.addItem("Snowboarding");
              comboBox.addItem("Rowing");
              comboBox.addItem("Knitting");
              comboBox.addItem("Speed reading");
              comboBox.addItem("Pool");
              comboBox.addItem("None of the above");
              sportColumn.setCellEditor(new DefaultCellEditor(comboBox));
              // Set up tool tips for the sport cells.
              DefaultTableCellRenderer renderer = new DefaultTableCellRenderer();
              renderer.setToolTipText("Click for combo box");
              sportColumn.setCellRenderer(renderer);
         class MyTableModel extends AbstractTableModel {
              private String[] columnNames = { "First Name", "Last Name", "Sport",
                        "# of Years", "Vegetarian" };
              private Object[][] data = {
                        { "Mary", "Campione", "Snowboarding", new Integer(5),
                                  new Boolean(false) },
                        { "Alison", "Huml", "Rowing", new Integer(3), new Boolean(true) },
                        { "Kathy", "Walrath", "Knitting", new Integer(2),
                                  new Boolean(false) },
                        { "Sharon", "Zakhour", "Speed reading", new Integer(20),
                                  new Boolean(true) },
                        { "Philip", "Milne", "Pool", new Integer(10),
                                  new Boolean(false) } };
              public final Object[] longValues = { "Sharon", "Campione",
                        "None of the above", new Integer(20), Boolean.TRUE };
              public int getColumnCount() {
                   return columnNames.length;
              public int getRowCount() {
                   return data.length;
              public String getColumnName(int col) {
                   return columnNames[col];
              public Object getValueAt(int row, int col) {
                   return data[row][col];
              * JTable uses this method to determine the default renderer/ editor for
              * each cell. If we didn't implement this method, then the last column
              * would contain text ("true"/"false"), rather than a check box.
              public Class<?> getColumnClass(int c) {
                   return getValueAt(0, c).getClass();
              * Don't need to implement this method unless your table's editable.
              public boolean isCellEditable(int row, int col) {
                   // Note that the data/cell address is constant,
                   // no matter where the cell appears onscreen.
                   // return false;
                   return true;
              * Don't need to implement this method unless your table's data can
              * change.
              public void setValueAt(Object value, int row, int col) {
                   if (DEBUG) {
                        System.out.println("Setting value at " + row + "," + col
                                  + " to " + value + " (an instance of "
                                  + value.getClass() + ")");
                   data[row][col] = value;
                   fireTableCellUpdated(row, col);
                   if (DEBUG) {
                        System.out.println("New value of data:");
                        printDebugData();
              private void printDebugData() {
                   int numRows = getRowCount();
                   int numCols = getColumnCount();
                   for (int i = 0; i < numRows; i++) {
                        System.out.print(" row " + i + ":");
                        for (int j = 0; j < numCols; j++) {
                             System.out.print(" " + data[i][j]);
                        System.out.println();
                   System.out.println("--------------------------");
         * Create the GUI and show it. For thread safety, this method should be
         * invoked from the event-dispatching thread.
         private static void createAndShowGUI() {
              // Create and set up the window.
              JFrame frame = new JFrame("TableRenderDemo");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // Create and set up the content pane.
              TableRenderDemo newContentPane = new TableRenderDemo();
              newContentPane.setOpaque(true); // content panes must be opaque
              frame.setContentPane(newContentPane);
              // Display the window.
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args) {
              // Schedule a job for the event-dispatching thread:
              // creating and showing this application's GUI.
              javax.swing.SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        createAndShowGUI();

  • How can I make a countdown timer using After Effects

    I'd like to make a video that has a timer that counts down one second at a time. I need one starting at 5:00 (five minutes). Is there a way to easily do this in After Effects without having to manually change the text every second?
    Thanks.

    I'm glad that you found a solution, but I thought that you might appreciate a suggestion of another approach.
    Colin Braley provides a tutorial and example project on
    his website that show how to use an expression on the Source Text property to animate text to overcome some of the limitations of the Numbers effect.
    There's a similar example in the
    "Example: Animate text as a timecode display" section of After Effects Help.
    Here are some Community Help searches that can lead you to some ideas, too:
    Community Help search for 'countdown timer'
    Community Help search for 'digital countdown timer'

  • Can we make a video one color background transparent

    I am capturing video from Camtasia and would like to make the background transparent, so I could do a quick change for the client.

    I have a question which is related to what's been discussed in this thread. Say I want to enhance a datasource (e.g. 0CS_OM_OPA_1) to include data at a finer granularity (e.g. notifications instead of orders). Can this be done by modifying the extract structure and a user exit? Why I'm asking is because records would have to be duplicated. As I'm not an ABAP programmer, I'm interested in knowing whether or not this is possible before I dig any deeper and possibly waist a lot of time for nothing.
    Thanks in advance,
    Markus
    Message was edited by: Markus Fahlén

  • HOW can I make a .SWF default load after its first load?

    When you have the SAME parent API on every page of an (X)HTML website, can a .SWF tell itself to load from a default position when a website user navigates to different HTML pages?
    Here's my parent API as it stands:
    http://www.playingthepoet.com/
    HOW can you tell the .SWF to load from a default position once the .SWF has loaded a first time? AND from any page of the website, not just the Home page? This is an advanced .SWF networking issue. And I'm not sure if the best solution is a Javascript of if there's a direct AS3 programming solution.
    The blurs and fade-ins are a bunch of timer variables and timer event methods timer event listeners. I want that intro ONLY ONCE. And NOT every time a user changes HTML pages. Please help, and MANY thanks for your time!!
    NT

    Hi ,
    You can set a variable say "count" on stage composition ready -
    sym.setVariable("count" , 0);
    On stage click , you keep checking the value of this variable -
    if(sym.getVariable("count") == 5)
      sym.$("Symbol_2").show();
    //Here "Symbol_2" is the next button that you want to appear on screen(which is initially invisible) when the symbol_1 is clicked say 5 times.
    Now, on click of a button , you keep updating the variable count -
    var countnew = sym.getVariable("count");
    countnew = countnew+1;
    sym.setVariable("count" , countnew);
    Attaching the sample for reference.
    Thanks and Regards,
    Sudeshna Sarkar

  • How can I make Photoshop Elements import files after it gives incorrect error code?

    I had 17,000 photos on my hard drive well organized in folders before installing Photoshop Elements 11 today. I was able to get it to import only 467 into the catalog. I tried browsing, searching, selecting files and no matter what I did to bring inthe remainders (including trying to bring in folders with only 60-80 in each, moving files into new folders, etc.) and still can't see them in the organizer view. It allows me to highlight the folders or highlight the photo jpg files separately, says it is getting media, but then comes back with message that "files are not in correct format or are in the catalog" but they ARE in normal format jpeg, can view in other programs, and they are NOT visible in the catalog. Very frustrating, especially after wasting hours downloading the program from Amazon Marketplace - took hours, then had errors and had to redo twice. Running WIN 7 on 6 month old Sony computer with 8 GB RAM and quad processors. Thanks for any help.

    You should try posting in the PhotoShop Elements forum, especially if no one else here has a better suggestion to offer.  It is possible someone else has encountered the same problem and you could search there to see.  If you post there and you do have an error message, you should include the details of that error message.
    http://forums.adobe.com/community/photoshop_elements

  • How can I make my iTunes work?  After update, it won't resond at all.

    I've tried EVERYTHING within my power. I need expert advise. Thank you for your time and consideration.

    If you only have one user account, create a second one and log in on that account and see if you can launch the program. Sometimes problems occur with an individual account. You can narrow down whether or not the account is the problem by logging in on another account and seeing if things behave the same way. Go to System Preferences and click on accounts. Just create a new account and sign in under the account. See if iTunes will launch.

  • My messages won't send, then all my messages disappear, I can't make or receive calls, then after a while everything's back to normal? Someone please help

    My phone takes forever to send a message, it then after reopening the messages app, will delete all of my texts and iMessages. The app will usually freeze and come up empty with 'create new message'. At the same time it won't let me receive calls, sometimes it will let me make a call but the phone app itself is also then frozen. After 15-45 mins everything will go back to normal and my messages all appear again. I then receive anything that I was sent to me during that time and all my messages then send. I've gone and got an early upgrade from a 4s to a 5s in the hope this would stop and it still hasn't. I heard somewhere that it could be to do with iCloud and it being bugged, would be great if anyone could help

    Go through these 4Rs troubleshoots if you haven't done already:
    Restart:
    1. Press and hold the Sleep/Wake button until the red "slide to power off" slider appears, and then slide the slider.
    2. Press and hold the Sleep/Wake button until the Apple logo appears.
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data
    Restore from backup
    Restore as new
    http://support.apple.com/kb/HT1414

  • Can we make ABAP programs Unicode enable after  SAP sys is converted to uni

    Hello Experts,
    Can we convert the Non Unicode ABAP programs to Unicode after upgrading non unicode SAP system to Unicode?
    Is there any serious problem?
    If Non Unicode SAP is upgraded to Unicode without converting all non unicode ABAP programs to Unicode.
    Thanks in advance.
    Hari

    Hi
    There is no need of correcting the programs from Non unicode to Unicode
    After migrating the system from non Unicode to Unicode you have to run certain Notes (which will be done by Basis) to take care of this.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Can I make a character in color while the background is in B&W?

    Hey,
    I am making a short film right now where I need the background to be in black and white while the main character remains in color. Is there any possible way that I can do this in FCE?
    -CSK

    Yes.
    Search this forum for Pleasantville.
    There is plenty of info available.
    Al

Maybe you are looking for

  • Is this a bug in 1.6 ??

    Hi everyone We have the following little Calendar Panel class that has been working fine in 1.5. When we switched to 1.6, the 'Month and Year combo boxes stopped working as they should. It seems like their action listeners are ignoring the mouse clic

  • When I export InDesign file to pdf, my graphics are negatives.

    I'm using Adobe CS4 and I've got greyscale photoshop elements in the layout.  When I export to pdf, for some reason, those psd's become negatives of what they are in my InDesign file.  I've gone through my file to see what setting is off on the image

  • Nokia N9 TV-out doesn't work

    My tv and projector doesn't recognise him at all. I tried to change settings in tv-out menu but it doesn't help. Both cable and phone are new, connectors are properly attached to phone and tv.

  • PLaylist problems with 5.01 PLease help

    Hi All, Not sure if its related to the version or not.....I have tried all sorts. I wiped the ipod and deleted the itunes folder, then did a fresh install.. I created some play lists and updated to the new ipod fine.....I then added some more playlis

  • Loading errors 2032, 2035, 2036 (seems random)

    Hi, I have a full-flash website, it loads many files. Depending on the extension, I use different classes : - Sound for mp3 - Loader for png and swf - URLLoader for bin When I test my site, I don't have any loading error, but I write logs on my serve