debugging xy charts

Hello

recently, I was stuck with the code where I traced different sets of data on a xy graph: plot 1 used low x axis and the y-axis from left, parcel 2 high x axis and the right y axis. If the parcel 1 was eliminated, I wanted to make the axis y right inivisible and reallocate the conspiracy 2 for the y-axis on the left using SetPlotAttribute (to reduce the complexity of the graph).

Unfortunately, I did not see a possibility to get the behavior of scaling (manual, autoscale) and the transfer of the parcel (spindle left/right) during debugging: after the program execution stops at a breakpoint it would be nice to have the opportunity to review these properties, similar to the ability to use the variables Editor: If such a device exists?

Thank you very much!

Hello

Sorry for the wrong message, but there is no function to examine these properties after you have set a breakpoint.

A possibility that you can do is you can write the attribute into a variable and read these variable with the variables editor on.

Best regards

Maria

Tags: NI Software

Similar Questions

  • of WPF XY scatter chart

    I'm trying to display a WPF graph where each data point corresponds to a constant fractional delta along the asis x. E.. g. (0.15, 1), (0.30, 5), (0.45, 3.6),...

    My best guess is that I want to draw an array of Points that contain values such as above because I do not understand how to inform the chart control that each value to plot represents a value of delta-X which is not 1 (e.g. 0.15).

    When I try to update the dependency property of the data source of the graph through data binding (for example to call the event handler property change with the name of the property of code-behind), I get the following exception:

    I have sought examples of graphics 2D point clouds using the WPF chart without success control. Note that this is a different problem from that of several plots on the same graph display.

    Thank you in advance for your help!

    -Paul.

    Currently, we have an example called 'XYPlotting' that shows dispersion of the data in the chart in WPF. You can find this with the WPF examples that have been installed with Measurement Studio.

    Pointis the most common type that provides data from point clouds, although like other types ComplexDouble or ChartCollection would also work (see how: map and graphic topic for a list of all supported data types).

    About the exception, this is the expected behavior during the initialization of a data type. Note that it is a "first chance exception", which means that this dialog box appears immediately when the exception is thrown, even if it is subsequently managed. If you continue execution, you will find that the exception is handled, and the graph shows data.

    "Warnings of exception are controlled in Visual Studio through the Exceptions dialog box, accessible by the Debug" Exceptions... menu. "First chance" corresponds to the column up; Unmanaged user represents the exceptions that spread to your code:

    To explain a bit more on the reason why the exception occurs: all the types supported by the chart controls is expandable and not fixed before hand. When a data type is encountered for the first time, we search to determine the best descriptor to use. The initial version of WPF controls, we chose to rely on the .NET, verification of the arguments type system generic, but since there is no method "such would be valid?" we must build the type and manage type load failures that occur. Because we cache the result, these exceptions do not often appear, but it is something we intend to improve in the future.

  • rounded values in chart

    I have a multiplot xy graph with as input a range of x values and the values y of 5.8 to 6 which are doubles.

    However, once the graphic display all values there are rounded to 6.

    I guess it must be a matter of setting somewhere that the values in the chart are not integers, but I can't find it there.

    I have already changed in the graphics settings-> format and precision-> digits of precision for 8, but I still get rounded up to 6?

    Where is the magical setting for this?

    Figure autoadjusts for the type of data connected directly on it. If connect you to a local variable, you do not get this feature for good reasons.

    Most likely, you had a whole one wired to Terminal curve at some point in the past and LabVIEW who remembered.

    The first choice should always be connect directly to the Terminal. Do not think that local variables and the 'variables' in the code of the text, they are not and should not be used as such. Local variables break the flow of data, can cause race conditions, complicate debugging and force copies of additional data in memory (can be very expensive for xy charts!), so there is a big difference. Local variables should be used if there is a very good reason.

    (See also this link and many other similar discussions)

  • jqPlot Charting - WebView.evaluateJavaScript)

    I played arround with jqPlot (http://www.jqplot.com) to activate the graphics capabilities in my BB 10 app. So far, I've been able to generate most of the graph required except for the graphics containing tables of date/time data types. When I insert the timeChart.html of files, as in found in the home of chart.zip, the graph will generate without any hitch.

    The point of failure is when I try to load the chart.html and generate the javascript required via C++, I then switch to Web view and run the evaluateJavaScript() that the graph does not, I get an empty graph...

    Below, a snippet of code to explain the backend processing that takes place...

    Page
    {
        // Property
        property int recordId
    
        Container
        {
            WebView
            {
                id: webViewChart
                objectName: "webViewChart"
                url: "local:///assets/htmlChart/charts/chart.html"
                verticalAlignment: VerticalAlignment.Fill
                horizontalAlignment: HorizontalAlignment.Fill
                settings.viewport: {"width" : "device-width", "initial-scale" : 1.0  }
    
                onLoadingChanged:
                {
                    if (loadRequest.status == WebLoadStatus.Started)
                    {
                        console.debug("Load started.")
                    }
                    else if (loadRequest.status == WebLoadStatus.Succeeded)
                    {
                        // Page has successfully been loaded, now we can draw the chart.
                        console.debug("Load finished.");
                        myDataModel.generateChart(recordId);
                    }
                    else if (loadRequest.status == WebLoadStatus.Failed)
                    {
                        console.debug("Load failed.");
                    }
                }
            }
        }
    
      attachedObjects: [      MyDataModel      {            id: myDataModel            onChartLoaded:             {                      console.debug("onChartLoaded()");                   var result = webViewChart.evaluateJavaScript(chartScript, JavaScriptWorld.Normal);                   console.debug("result: " + result);            }      }]
    
    
    
    void MyDataModel::generateChart(const int& recordId)){  ... 
    
      // Generate the chart javacript  QString chartScript = generateChartByType(recordId, chartTitle);  qDebug() << "chartScript: " << chartScript;  emit chartLoaded(chartScript);}
    
    QString MyDataModel::generateChartByTime(const int& recordId, const QString& chartTitle)
    {
       qDebug() << "generateChartByTime()";
    
       // Initialization
       QString chartScript;
    
       // Build the javascript
       chartScript = "(function()"
               "{"
               "  var line1=[['2008-05-30','1950-01-01 00:10:12'], ['2009-06-30','1950-01-01 00:09:45'], ['2012-07-30','1950-01-01 00:09:12'], ['2014-08-30','1950-01-01 00:09:00'], ['2008-09-30','1950-01-01 00:10:23']];"
               "  var plot1 = $.jqplot('chart1', [line1],"
               "  {"
               "    title: 'Time Chart',"
               "    pointLabels:{ show:true },"
               "    rendererOptions:{ smooth: true },"
               "    seriesDefaults:"
               "    {"
               "      showMarker:true,"
               "      pointLabels:{ show:true },"
               "      markerRenderer: $.jqplot.MarkerRenderer,"
               "      axes:"
               "      {"
               "        xaxis:"
               "        {"
               "          label:'Date',"
               "          renderer:$.jqplot.DateAxisRenderer,"
               "          tickOptions:{formatString:'%b %#d, %y'},"
               "          min:'January 30, 2008'"
               "        },"
               "        yaxis:"
               "        {"
               "          label:'Time',"
               "          renderer:$.jqplot.DateAxisRenderer,"
               "          tickOptions:{formatString:'%M:%S'},"
               "          min: '1950-01-01 00:05:00',"
               "          max: '1950-01-01 00:15:00',"
               "          tickInterval: '5 minute',"
               "          autoscale: false"
               "        }"
               "      }"
               "    }"
               "  });"
               "})();";
    
       return chartScript;
    }
    

    If I replace the line1 with integer value table, as shown below, the graph will generate... but for this table I need date time values is there a constraint UN documented regarding the function of evaluateJavaScript()?

    var line1 = [14, 32, 41, 44, 40, 47, 53, 67, 87];
    

    Found this question... javascript is incorrect!

  • BB10 WebWorks Debug Error - Please enter a valid application id

    Need help to solve a WebWorks BB10 issue when debugging.

    Packaging error question

    The command line, I ran the command standard packing

    bbwp [location of project].zip -d -o [locationofoutput]
    

    Resulting in:

    [INFO]       Populating application source
    [INFO]       Parsing config.xml
    [INFO]       Error: Please enter a valid application id
    

    Here is my file config.xml, I'm actually building the sample bbUI.js

    
    http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.2">
      App name
      A sample description
      My Name
      
      
      
        
      
      
      http://chart.apis.google.com" subdomains="true" />
      
      
      
      
      
      
      
      
    
    

    issue of token bbwp. Properties & debug
     

    Also... I know in the previous SDK WebWorks, you edit bbwp.properties and add a line pointing to the location of your debugging token.

    Question:

    • Where is the bbwp.properties file in the new SDK? Where can I specify my symbolic debug location?

    Thank you!

    Hello

    The id is an alphanumeric property of the principal element of the .  It cannot contain spaces or

    
    http://www.w3.org/ns/widgets" xmlns:rim="http://www.blackberry.com/ns/widgets" version="1.0.2" id="yourIDhere">
    

    You don't need to edit the bbwp.properties file.  The Debug documentation token specifies where to put the debugging token file.  To enable debugging symbolic support, simply build your application with the d flag.

    Hope that helps!

  • Zoom on chart to the report - filter does not report value

    Hi, I created a graphic for the type of item.  I would like to click the chart element, and it brings me to the report point but filtered by item type.  Currently, he clicks through but not filtered by type of item but pulls the whole report.

    I'm following the general syntax:

    The syntax of the URL of a link is:

    f? p = App:Page:Session:Request:Debug:ClearCache:itemNames:itemValues:PrinterFriendly

    My specific link of the syntax is:

    Select ' f? p = & APP_ID.:2 :'|| : app_session |': P2_hw_type_id: "link,

    HT. Model label,.

    Count (h.ID) value1

    from h, hw_type ht hw

    where h.hw_type_id = ht.id

    Ht.model group

    Where am I missing the operation passes the value clicked in the report?

    TIA

    Pass information through the parameter is only half of the work, as you have discovered you need to add a clause where clause to limit the rows.

    If you want to return the results, if the value is not given, a solution is to use a where clause such as clause:

    where mycol. = coalesce (: P1_PARAM, mycol.)

  • Names of the lines of the chart

    Hello

    can I put a value of an element as a line chart?

    Once I chose to selection lists I press the "submit" button to create lines of the graph with the new settings. I would like that the display of selection list value can stand instead of the 'Graph 1' region in the table.

    Like on this photo marked in red.

    http://www.deviantpics.com/images/2013/07/12/apex.jpg

    Hello

    I've added an example for my Example of Application on apex.oracle.com, which we hope will help you achieve the behavior you are trying to reach. As Howard suggested above, it is possible to get what you're looking for by using the function returning a SQL query - just make sure the syntax that you use generates a valid SQL query.  So if you start your page with active debugging (be it by using the 'YES' in the position of the debug URL parameter or simply by clicking on "Debug" in the developer toolbar) and view the debug information for your graph page, you should be able to see the SQL query that is run for the graph and determine whether it is valid or not.

    I hope this helps.

    Kind regards

    Hilary

  • Accuracy of the Gantt chart

    I use Apex on top of Oracle 11.2.0.3 4.2.1.00.08

    I want to set up a gantt chart resource with minutes on the axis instead of from the default.
    I tried to introduce a key xml < anygantt > < settings > < sequence > < scale > < interval > < type interval = interval 'Hour' (or 'Minute') = 1 > without success.
    What happens then is an unending "Loading Data"
    The number of lines configured should be sufficient. When the XML to defalult reset all data are displayed.

    When checking a little more away all graphics date information truncated to the part of the day of the date indication.
    So, how can I configure the Gantt chart in order to have the minutes below the limit.
    Worms and from the db column is of type DATE MM and SS.

    BR

    Hi BR,

    Looking at the XML table you have included in your message, it may or may not be a typo, but the figure is expected to be wrapped in quotes i.e.

     
    

    Without the quotes around the number 1, you will certainly get the "Loading Data" message. If that ever happens, the best thing to do is to run your page in debug mode and click on the "View XML" link which will appear under your graph. Cllicking on the link displays the XML file associated with your chart. However, it will show also any error was captured during the generation of the XML table. This could be useful, especially when you work with custom XML where it is very easy to misplace tags or omit the quotation marks.

    Regarding the time for your Gantt chart information, in order to generate Gantt charts when the accurate time information are used, then the graphical query must make reference to
    TIMESTAMP columns. If you take a look at the example in my sample application (see http://apex.oracle.com/pls/apex/f?p=36648:83) it might be useful.)

    Let me know how you go.

    Kind regards
    Hilary

  • Send the value of the element to IR flash chart

    Hello developers,
    I have a way to query.
    On a page, I have 2 parts: a flash chart, a single interactive report and a hidden element attached to the chart area. When the user clicks on flash graphic, the IR must have a filter automatically set as IR_COLUMN = VALUE. So I put in action link to go to the same page and fixed in article IR_COLUMN and the value "& P_HIDDEN_ITEM.". Surprise, value is not passed, on the contrary if I use: APP_ID. or another string of standard substitution or #VALUE # #MAX_VALUE # the value or it passes. Note that I don't want to send all the values in the chart. I also try to put a substitution string to properties of the Application and try to pass the value but still does not work. I use APEX 4.0.2.
    Thank you.

    Hi "user11978562"

    You mention that you have attempted to reference your item hidden in the field 'Value' in the region of action link. The entry of the names of elements in this area is not supported, and the value of this element will not be retrieved or used in the URL. Depending on the type of graph, a set list of substitution strings are accepted for example #LABEL #, and also the references to the FLOW_ID APP_ID, SESSION, are managed. If you want to reference the element hidden, then you could update your graphic to include the link, similar to the following query:

    SELECT 'f?p=&APP_ID.:2:&SESSION.:IR_REPORT_12345678:&DEBUG.:RIR,CIR:IR_JOB:&P2_HIDDEN_JOB_ITEM.' LINK,
           ENAME LABEL,
           SAL VALUE
    FROM   EMP
    ORDER  BY ENAME
    

    .. where the link includes a reference to page 2, the same page as my graphic and interactive report; demand IR_REPORT_12345678 identify my interactive report; the interactive report for WORK column, IR_JOBfilter; and a reference to my article on hidden page P2_HIDDEN_JOB_ITEM. Just ensure that your hidden item has a value in session state, and then by clicking on an element of your theme astral should define the IR filter. If you do not want to go to the IR filter of the column, instead of referencing an element hidden, then you could do just a graphical query value replace the reference to the element hidden by a column reference, similar to the following:

    SELECT 'f?p=&APP_ID.:2:&SESSION.:IR_REPORT_12345678:&DEBUG.:RIR,CIR:IR_JOB:'||JOB' LINK,
           ENAME LABEL,
           SAL VALUE
    FROM   EMP
    ORDER  BY ENAME
    

    .. where I added a reference to the JOB column in the column of the query LINK.

    In response to your comment that you tried to "+ set a string substitution to properties of the Application and try to change the value, but did not always work +", only a defined set of chains of substitution are accepted for graphics, and they are referenced using item-level associated with the 'value' point on the action link region.

    I hope this helps.

    Kind regards
    Hilary

  • Cannot change dataprovider of a pie chart

    Hiya

    I'm sure I'm a little dense, but I don't seem to be able to update a dataprovider of a pie chart.  The plan is to filter the results... but one thing at a time!

    In any case

    I have two arraycollections: RagPie and RagPieDrill (this isn't really a drill - ignore the terminology) I've debugged to check and they were given at the time when the page loads.

    All I'm trying to do is to pass the data in the chart.  The second captain is created when the page loading and data available.

    Here's my mxml;

    < mx:PieChart id = "pcBuildSummary".

    creationComplete = "{PodContentBase.RagPie ()}" "

    dataProvider = "{PodContentBase._RagPie}".

    itemClick = "imhittingit (event)" >

    < mx:series >

    < mx:PieSeries id = "pcBuild.

    field = "Volume".

    name = "RAG".

    explodeRadius = "0.05".

    fillFunction = "PieFilling" >

    < / mx:PieSeries >

    < / mx:series >

    < / mx:PieChart >

    And AS it's destiny to be updated: (its in a hitData to allow me to filter the second AC later)

    private void imhittingit(e:ChartItemEvent):void {}

    pcBuildTeamBuildSummary.dataProvider = PodContentBase._RagPieDrill;

    pcBuild = new PieSeries;

    pcBuild.field = "Volume";

    pcBuild.nameField = "default";

    pcBuildTeamBuildSummary.validateNow ();

    trace ("field" + pcBuild.field)

    trace ("name" + pcBuild.nameField)

    }

    Can anyone help?  Thank you very much

    Andrew

    Hi Andrew

    I looked a little like you, but I can't really understand.

    There are some items that you need to explain a little more if I have to help.

    As:

    PodContentBase

    PodContentBase._RagPie

    pcBuildTeamBuildSummary vs pcBuildSummary

    See you soon

    Martin

  • sending objects java to create a flex chart

    Anyone know the best practice to transfer data from a database to generate a flex chart?

    I have a Java class axis with these variables:

    String ID;
    Date of departure;
    End date;
    int min;
    int max;
    int incr;
    String title;
    Signal chain;
    String type;
    List of data;

    And the list is an array of points defined in a class called DataPoint:

    public Date point1;
    public long point2;

    I pass an array of Axis objects to the Flex application and try converting it to actionscript object:

    package factory.data {}
    [Bindable]
    [RemoteClass(alias="factory.data.Axis")]
    public class AxisObject {}

    public var ID:String;
    public var: Start Date;
    public var: End Date;
    public var min:int;
    public var max: int;
    public var incr:int;
    public var title: String;
    public var signal: String;
    public var type: String;
    public var: data table;
    }

    and I for example accesses the title, but is unable to get the array of data point in the chart. Moreover, when I debug it gives me the following errors:

    ReferenceError: Error #1056: cannot create factory.data.AxisObject endDate property.
    ReferenceError: Error #1056: cannot create dataList to the factory.data.AxisObject property.

    Thanks for any help you can offer.

    It seems that your Java class properties have expanded by default. Please make sure that the getters and setters for the properties are public and follow Java beans, naming conventions. Can you also try to create a DataPoint class in the Flex application and map it to the respective Java class. One more thing, it is that can you change the type of variable 'data' in the Flex application to collection ArrayCollection.

    I hope this helps.

  • Flash Debug Player questions

    Hello

    I'm relatively new to Adobe Flash even though I have extensive experience in software and database design. I recently started to learn and to use ActionScript (works with version 2.0 not 3.0 yet) and have simply become aware of the use of the Flash Debug Player. It is an indispensable tool in my opinion. However, I have a problem with it, which can be the result of a lack of knowledge. I recently ran with a large enough Flash animation and complex. The film has been developed by a type of very accomplished figure who knows a lot about the graphic aspects of Flash, but does not get in ActionScript a lot. Some parts of this movie are also purchased components. I got a lot of warnings that trouble me. Things like "addEventListener is not a function" and 'Broadcastmessage' is not a function. When I open the fla file in the Flash IDE and research of these I can't find anything. In addition, these appear to be Adobe provided Flash functions and are documented in the Flash help system. What happens here?

    Any help understanding this issue would be most appreciated.

    Thank you
    G. M.

    Hi gmitchell7,

    Flash is a tricky beast when it comes to code nested. With Flash CS 3
    (ActionScript 3.0), usually these instructions would be in
    external as files. This is the first place to look for the two Flash
    8 and Flash CS 3 source code. Major programs such as FlashDevelop or SEPY
    allow you to search recursively through subdirectories for occurrences of
    These channels. Simply indicate the root directory and let them go.

    Also, within Flash, things can be hidden on the elements of library and one
    variety of places that are not visible on the main timeline. Select
    "Edit-> find and replace" and search for the text in the current
    document. It may be on a library point, on a button or movie clip or in
    a whole bunch of other places that may be difficult to find in my hand.

    About mistakes, maybe it's that you try to micro upward
    incompatible versions of ActoinScript. 'addEventListener' is a function,
    but in ActionScript 3.0 requires that you import a number of packages
    (or classes) while Flash knows that it is a function. Check publish it
    settings for the FLA, and if there are any associated as files, check
    see if you can find keywords like 'parcel', 'protected', 'int', and
    "final". These were not available in Flash 8 (ActionScript 2.0) for you
    may be trying to push a square in a round bilge (AS3.0 components room
    in an AS2.0 FLA).

    Good luck
    Patrick

    gmitchell7 wrote:
    > Hi,.
    >
    > I'm relatively new to Adobe Flash even though I have extensive experience in
    > software design and database. I recently started to learn and use
    > ActionScript (works with version 2.0 not 3.0 yet) and just realised
    > using the Flash Debug Player. It is an indispensable tool in my opinion.
    > However, I have a problem with it, which can be the result of a lack of
    > knowledge. I recently ran with a large enough Flash animation and complex.
    > The film was developed by a very accomplished chart type that knows a great
    > agreement on the graphic aspects of Flash, but doesn? t enter ActionScript
    > much. Some parts of this movie are also purchased components. I got a lot of
    > warnings that trouble me. Things like? addEventListener is not a function? and
    > ? BroadcastMessage? is not a function. When I open the fla file in the Flash IDE
    > and look for these I find nothing. In addition, these seem to be Adobe Flash
    > supplied functions, as well as in the Flash help system. What is happening
    > here?
    >
    > Any help to understand this issue would be most appreciated.
    >
    > Thank you,
    > G. M.
    >

    --
    http://www.baynewmedia.com
    Fast, easy, better... ActionScript development taken to new heights.
    Download the BNMAPI today. You'll wonder how you ever did without it!
    Available for ActionScript 2.0/3.0.

  • How can I create a chart that creates new series each year when the data are not collected on a daily basis?

    I collect numbers "occasionally" of my solar system and to create a standardized chart that shows that the generation on an annual basis, so I can compare fall in the fall of each year, etc..

    Because the information is not strictly 'daily' (just whenever I get to it), I don't know how it normalize for several years.

    For example, if I had

    Date - Kw/day

    15/01/10 - 14

    03/04/10 - 18

    18/04/10 - 17

    01/06/10 - 19

    21/09/10 - 15

    03/12/10 - 9

    07/02/11 - 13

    02/05/11 - 16

    17/08/11 - 18

    01/11/11 - 12

    02/11/11 - 12

    05/01/12 - 9

    04/06/12 - 12

    and so on.

    What I'd like to see is a line graph for each year from January to December with these datapoints on it. I have much more "incremental data" that I presented above, but it's on "random dates" during the last 8 years, and I'm just trying to see how each year compared to other years.

    To be at the front, I tried to understand how this in Excel as well, but he could not understand where the other.

    DRM for any tips/tricks/tips!

    Steve

    This might work for you...

    I placed your data in a table named "Data."

    Create a second (in this example, titled 'Table 1')

    In the table 'Table 1' months are in the first column and the first row (which is a header row) contains the years - add columns to add new year:

    B2 = if (SUMIFS (data: $B, data: $A, "> =" & (B$ 1, $A2, 1), DATE data: $A, "<" & EOMONTH(A1,0) will GET (DATE B$ 1, $A2, 1, 0) "" "") > 0, SUMIFS (data: $B, given: $A, "> =" & (B$ 1, $A2, 1), DATE data: $A, "<" & EOMONTH(A1,0) will GET (DATE B$ 1, $A2, 1, 0) "" ""), "")

    It's abbreviation dethrone select cell B2 and type (or copy and paste it here) the formula:

    = IF (SUMIFS (data: $B, data: $A, "> =" & (B$ 1, $A2, 1), DATE data: $A, "<" & EOMONTH(A1,0) will GET (DATE B$ 1, $A2, 1, 0) "" "") > 0, SUMIFS (data: $B, given: $A, "> =" & (B$ 1, $A2, 1), DATE data: $A, "<" & EOMONTH(A1,0) will GET (DATE B$ 1, $A2, 1, 0) "" ""), "")

    Select copy of cell B2

    Select the cells B2 at the end of F13, dough

    now select cells A2 through F13 and add a graphic (the XY scatter diagram)

    Add new year add one (or more) new columns for "table 1", then add the year to the top:

    Now alone, click the chart to activate the chart.  then click on the button 'change data references '.

    now, drag the data reference control handle to the right to add the new year to the table:

    You can add several years to the time, so you don't have to it very often

  • Match color of series for a table and a chart?

    I created a table with 4 sets of data.  Then, I created a graphic line with this information.  I noticed that when I select the line graph the data in the table becomes highlighted with a lighter version of colors used in the chart.  Each series Gets a corresponding really nice color to match the graph.  As soon as you select any where else these colors disappear.

    Is there a way to automatically match line chart series color color of the card?  If this isn't the case, I see this as the colors that appear in the table so that I can put in manually?

    Select the series by clicking on the graph, then any "point":

  • Permit "Disable the web process per tab" under debugging, now Safari crashes whenever I try to start it.

    How can I Reset Safari Debug options when Safari does not work? Is there some command line options?  I enabled "Disable web of per-tab processes" and now whenever I try to start Safari crashes.

    Hi WellingtonWlfmn,

    Please update to Safari to the latest version: https://support.apple.com/en-us/HT204416

Maybe you are looking for

  • Downloads of disappear after completing?

    So about 5 days ago, this problem started. I tried everything, uninstalling, reinstalling, installation of older versions of Firefox, everything in the help file to this topic, in going about: config to set scanning to false, uninstalling my anti-vir

  • Calendar import failed, now what?

    I've updated El Capitan, but I guess that did not open my calendar because I did it. Today, I opened it everything get a message that the 'calendar Import Failed' or "could not be updated" and now I seem to have a brand new application from scratch.

  • HP Envy 7640: HP Envy 7640 Panel does not when touched

    On the powers and control panel displays, but when touch none of the controls (copy, fax, scan, etc.), nothing happens.  I can print and scan from my computer. The wireless light when connected to WiFi. I tried to turn the power off and then turn it

  • Maximum current NOR 9280 absolute

    I would like to know the absolute maximum current for NI 9208 through AI1-AI15 rods. The operating instructions and the PDF specification claims that the absolute maximum current through the Vsup stems is 2A. The typical input range is from + / 22mA,

  • Slow data transfer during the reading of the GPIB (Horiba CCD 3000) device

    Hello to everyone. I'm trying to connect with a CCD camera (CCD 3000 - company Horiba (formerly Jobin Yvon))) The connection is made on the GPIB (PCI) The CCD device is old enough and will not support orders GPIB standard (p. ex. * IDN?) The problem