Bug or bad expressions?

screen.jpg

I have some problems with the expression. I can't understand why there is no shade on the largest triangle. Where is the problem?

I appreciate all help.

A quick estimate, try disabling effects on shape layers.

Tags: After Effects

Similar Questions

  • First HP axis line bug in Boolean expressions (Adv. Graphing App)

    When the graphic representation of an inequality and excluding a part of it using Boolean expressions, there is a bug where the first will be graphic axis lines are part of the solution by using 'AND NOT '.

    An example of this is that if you were to graph a circle of RADIUS < = 5 and remove a circle of RADIUS < = 4.

    Example:

    V1:=(X^2+Y^2<=5^2) AND NOT (X ^ 2 + Y ^ 2 < = 4 ^ 2)

    Axis lines X - there exist in the excluded (X ^ 2 + Y ^ 2 < = 4 ^ 2) and can be traced back as if it were part of the solution of V1.

    Interestingly, if V2 is set to be equal to V1 (X - 0.5, Y - 0.5), axis lines are no longer aligned with the axis of the grid, but are rather shifted-0.5 on the X and Y as well as the rest of the V2.

    In this case, the equation can be modified to work around the bug by removing the NOT and change the sign of the circle radius 4-more of:

    V1:=(X^2+Y^2<=5^2) AND (X ^ 2 + Y ^ 2 > 4 ^ 2)

    Does anyone know if there is a reported bug?  Where I might be able to look to see a list of known issues?

    Thanks for the detailed examples. It took me a while to see what you were talking about, but once I did I had the info the graphic calculator expert.

  • LV2010: bug in writing express vi?

    Hello

    I have software that works very well in LV8.6 and I got the (bad?) ideea upgrade to LV 2010. After make an exe with LV2010 this program is no more (the error is to save it to file express vi).

    I can reproduce this error on two different computers (LV 2010 with or without the patch of F4, before and after a complete reinstallation of the LV 2010, french Win32 XP, SP3).

    Can you confirm this error as well by doing this:

    Make a new vi

    Add to this vi an express vi for writing to a file (I have attached my here).

    The rebuild (ctrl + shift + arrow)

    the vi is now broken and many errors are displayed (the vi with errors is protected by Word).

    on the other hand, without having to recompile, make an exe: it works?

    Thank you

    N

    Hello

    The technical support engineers OR helped to found the problem. It is associated with the french and German LV2010 version. For those who have the same problem, here is the solution:

    http://digital.NI.com/public.nsf/allkb/3155ABE4DF942472862577920069D9CE?OpenDocument

    Thank you

    N

  • Bug really bad iframe, caused by the Magic Mouse or other design Apple entry

    Hello world.

    I found a very annoying bug that can be reproduced only by entry legacy Apple in Safari.

    If the parent container has a fixed height and overflow: scroll, then the inner iframe is not properly scrolling. He could only scroll down, or only to the top. But not at the same time.

    Video: https://www.youtube.com/watch?v=2IpjAbWgbuc

    Demo: https://s3-eu-west-1.amazonaws.com/plio/other/iframe_scroll_safari_issue.html

    I need to use the iframe to display the content of the documents converted to business customers. Many of them use Safari, it is really important.

    Tested in Safari Version 9.0.3, 9.1.1, OS X El Capitan 10.11.3.

    It is a forum for user help. You do not discuss Apple here.

    To submit your comments directly to Apple using this link http://www.apple.com/feedback/

  • Problem with microphone on iOS - bug or bad code?

    Hi all

    It seems that the use of the micro class freezes my Flex app. I provided the code below, but here is an overview:

    • This only happens on iOS - specifically my iPhone 4. I have not seen this problem on Android devices.
    • My code alternated recording and records don't not - 5 seconds to one, then 5 seconds of each other, then repeat over and over again.
    • I have reduced this to a 'minimum' example (see code below) which does this. It does not use data etc. coming the Microphone is not create or fill a ByteArray.
    • The application always crashes. In some cases, this happens when he worked only 2-3 minutes, in all cases, it happens in half an hour. I did 10 sets of tests and the average is 15 minutes.

    My application is a language learning app and recording and playback of the voice of the user is an important feature. It allows the user to hear how their pronunciation matches that of a native speaker. When recording / reading is marketed the software repeatedly plays a few sound recordings, the voice of the user, it reads, the more audio plays, etc.. In other words, it includes features similar to the minimal case code I included here. Users often use this feature 30 minutes or more. It is therefore a problem.

    I'm doing something wrong in my code? Just checking before I report it as a bug.

    You can download an FXP from here if you are interested:

    http://www.Brightworks.com/downloads/RecordingTest.FXP

    Alternatively, the important code is below. This is the display (only) of the sample application.

    Thank you

    Douglas

    Douglas McCarroll

    Brightworks, Inc.

    320.300.0220

    <? XML version = "1.0" encoding = "utf - 8"? >

    < s:View xmlns:fx = " " http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    creationComplete = "onCreationComplete().

    title = "Test recording" >

    < fx:Declarations >

    < / fx:Declarations >

    < fx:Script >

    <! [CDATA]

    private var _isRecording:Boolean;

    private var _iterationCount:uint = 0;

    private var _microphone:Microphone;

    private var _recordedSeconds:uint = 0;

    private var _timer:Timer;

    private function onCreationComplete (): void

    {

    NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE;

    }

    private void doNextPhase(event:TimerEvent_=_null):void

    {

    _isRecording =! _isRecording;

    If (_isRecording)

    {

    _iterationCount ++;

    displayOutput ("Recording");

    _microphone = Microphone.getMicrophone ();

    _microphone.rate = 44;

    _microphone.gain = 50;

    _microphone.setSilenceLevel (0, 2000);

    _microphone.addEventListener (SampleDataEvent.SAMPLE_DATA, onNewRecordingSampleData);

    }

    on the other

    {

    _recordedSeconds += 5;

    displayOutput ("Pausing");

    _microphone. RemoveEventListener (SampleDataEvent.SAMPLE_DATA, onNewRecordingSampleData);

    _microphone = null;

    }

    }

    private void onNewRecordingSampleData(event:SampleDataEvent):void

    {

    }

    private void displayOutput(phase:String):void

    {

    var freeMemoryMB:int = Math.round (System.freeMemory / (1024 * 1024));

    var privateMemoryMB:int = Math.round (System.privateMemory / (1024 * 1024));

    var totalMemoryNumberMB:int = Math.round (System.totalMemoryNumber / (1024 * 1024));

    phaseLabel.text = "Phase:"+ phase; "

    iterationLabel.text = "iteration:"+ _iterationCount; "

    recordedSecondsLabel.text = ' seconds saved: "+ _recordedSeconds;"

    freeMemoryLabel.text = "System.freeMemory MB:"+ freeMemoryMB; "

    privateMemoryLabel.text = "System.privateMemory MB:"+ privateMemoryMB; "

    totalMemoryNumberLabel.text = "System.totalMemoryNumber MB:"+ totalMemoryNumberMB; "

    }

    private function startTimer (): void

    {

    _Timer = new Timer (5000, 0);

    _Timer.addEventListener (TimerEvent.TIMER, doNextPhase);

    _Timer.start ();

    }

    private function onStartRecordingButtonClick (): void

    {

    If ((Microphone.getMicrophone ()))

    {

    startRecordingButton.enabled = false;

    startTimer();

    doNextPhase();

    }

    on the other

    {

    phaseLabel.text = 'No Mic' available;

    }

    }

    []] >

    < / fx:Script >

    < s:VGroup height = "100%".

    Width = '100% '.

    paddingBottom = "20".

    paddingLeft = "20".

    paddingRight = "20".

    paddingTop = "20" >

    < s:Label id = "phaseLabel".

    Width = "100%" / >

    < s:Label id = "iterationLabel".

    Width = "100%" / >

    < s:Label id = "recordedSecondsLabel".

    Width = "100%" / >

    < s:Label id = "freeMemoryLabel".

    Width = "100%" / >

    < s:Label id = "privateMemoryLabel".

    Width = "100%" / >

    < s:Label id = "totalMemoryNumberLabel".

    Width = "100%" / >

    < / s:VGroup >

    < s:HGroup width = '100% '.

    horizontalAlign = "center".

    Low = "10" >

    < s:Button id = "startRecordingButton".

    label = "Start Recording"

    a click = "onStartRecordingButtonClick()".

    Width = "60%" / >

    < / s:HGroup >

    < / s:View >

    The problem has been resolved with 3.8.0.730!

    http://forums.adobe.com/message/5399512#5399512 ;-)

    Thank you Adobe!

  • The expression using scaling

    I'm not a master of expressions, but I think I want to do something simple, but I can't understand how do. I want to have a single layer taken one-tenth the size of an animation layer put on the scale, then add in the original layer size, while the second layer is scaling up to a tenth of the speed of the initial layer.

    So I whipped across the second layer to the first and get this:

    thisComp.layer("multiplanemountains.jpg_2").transform.scale

    Now, I want to have this layer scaling to 1/10 scale of the control layer, so I added the expression to divide by 10:

    thisComp.layer ("multiplanemountains.jpg 2").transform.scale/10

    I still need to restore the original size, then that is just 1/10 greater than the control layer, so I thought I should be able to add 100, so I'm doing this:

    thisComp.layer ("multiplanemountains.jpg 2").transform.scale/10+100

    But it adds only the 100 to scale horizontally, not vertically. I tried bracketing what it off, but after said effects is a bad expression and it does not accept:

    thisComp.layer ("multiplanemountains.jpg 2"). (transform.scale/10) + 100

    I tried the bracketing on the 100 and he giving x and y values like this:

    thisComp.layer ("multiplanemountains.jpg 2").transform.scale/10+(100,100)

    He is still as the horizontal value.

    I know I should tell him to add the 100 times x and y, but I can not understand how do. Can someone help me?

    Thanks in advance!

    You have not found the array function. Maybe this will help. All properties with multiple values are arrays. A table is written inside square brackets. For example, if you write this as an expression of scale [50, 75] then the layer will evolve to 75% and 50% in X in Y. If you type .scale [0] in an expression, then that will return the X value of the scale. . Scale [1] is the value of it, and if you have a 3D layer then .scale [2] returns the z scale (it makes a difference in the position of the layer when the scale of a 3D layer)

    Let's look at your expression and set up some variables. Consider that multipleanemountains.jpg 2 is the main layer. Personally, I would rename this layer Master. Let's start by improving your syntax and simplify calculations by setting the property that you want to use as a variable.

    m = thisComp.layer("multiplanemountains.jpg_2").transform.scale;

    Now you can do your calculations on the variable "m" and it's much simpler. This is where I get into trouble with your application and your math. We will take your original theory. Divide by 10, then add 100. The correct way to do it would be to write the expression as follows:

    m/10 + [100, 100];

    Here is the result. If the main layer is 100% then the layer of the slave will be 110%, but if the original layer is 200% then the slave layer will be 120%. I don't think that's what you want. What I think you want is to multiply the main 1.1 layer so that the slave is 10% greater than the master. You who would write like this:

    m * 1.1

    Now, when the master is 100% the slave will be 110% and when the master is 200% the slave will be 220%

  • Bug in CF11 regarding the syntax of queries?

    So I decided to try CF11 due to a bug in exceptional CF10 official.

    Once I installed CF11, I get an error when you run the following code:

    < name = "Cfquery LOCAL.stat_questions" datasource ="#APPLICATION.dsn #" > "

    SELECT survey_questionID

    OF tbl_survey_questions

    ;

    < / cfquery >

    < cfset LOCAL.this_statID = 1 >

    < name = "cfquery LOCAL.subset" dbtype = "query" > "

    SELECT survey_questionID

    OF .stat_questions [LOCAL]

    WHERE survey_questionID = < cfqueryparam cfsqltype = "cf_sql_numeric" value = "#LOCAL.this_statID #" >

    ;

    < / cfquery >

    The error I get is: "syntax error query queries. "
    Met ';'.

    If I remove the semicolon... No error! Is this a bug, or bad, but simply ignored, has always been the point?

    Thank you


    Here is the Bug #3779331 - query of query and SQL statements that end with semicolon

    Kind regards

    Anit Kumar

  • Bug certview examing score reports

    I was invited to test Certview Score reporting this following reports of people having difficulties with display of basic reports in certview. Roughly at the time of this post I found the following bugs or bad behaviour in my humble OPINION. I use the Chrome Version 23.0.1271.95 m to a Windows Vista computer right now.

    A am able to get to the Certview - review history page titled "Oracle University review History.

    I see reviews I took here under oracle under both prometric and Pearson view certification program (I do not see previous examinations taken under the Sun / MySQL before recovery; although I see them on the certification page, that's all I expect).

    So, I have a table of review as follows:
    Test Start Date     Exam Number     Exam Title                      Grade Indicator     Score Report
    ...
    17-MAR-10     1Z0-047             Oracle Database SQL Expert      PASS                     View
    ...
    [1]

    When I click on the link 'view' to report results in a review of old previously taken under oracle when prometric was the provider I get a pop up page of tabs with the message:
    "There are no registrations associated with your student information."
                          _OK_
    I can understand what is happening here, if the message is not informative.

    [2]

    When I click on the view link of results reports to the foregoing review (taken under pearson notice) I get a background tab attempts to open a "Loading" message... "on the label... title that goes"Untitled"for a moment and then disappears completely. This tab nearly reached in the foreground, and I stay on the review history page.


    [3] I did a review for a decision after the new performance plan submitted in November 2012. but the other forum posters seem to have gotten at least a few questions here. I seem to remember blog links that were initially unsuccessful but later successful with exams taken recently.


    .....

    For me, the update to this area may not have been fully tested and may be happy to recommend the price of the extended stay in Bushtucker trials Australia with the opportunity to develop and test software of escape tunnels full of Bandicoot. Of course I am joke unfairly ;-)

    .....

    I have personally one is not too bothered about that, but others may be. I can lift a SR anyway and let the number here if I do. I understand that it's the weekend, and that the software updates take time to develop and test.

    .....

    If you encounter this kind of problem, please raise in Support of Certification Oracle http://bit.ly/KMsuH3. We continue to monitor and adjust the behavior of CertView to improve the user experience. The only way that we will know if there is a large problem of propagation is if candidates tell us.

    Kind regards
    Brandye Barrington
    Certification Forum Moderator

  • BAD RESULTS WITH OUTER JOINS AND TABLES WITH A CHECK CONSTRAINT

    HII All,
    Could any such a me when we encounter this bug? Please help me with a simple example so that I can search for them in my PB.


    Bug:-8447623

    Bug / / Desc: BAD RESULTS WITH OUTER JOINS AND TABLES WITH a CHECK CONSTRAINT


    I ran the outer joins with check queries constraint 11G 11.1.0.7.0 and 10 g 2, but the result is the same. Need to know the scenario where I will face this bug of your experts and people who have already experienced this bug.


    Version: -.
    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE    11.1.0.7.0      Production
    TNS for Solaris: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production

    Why do you not use the description of the bug test case in Metalink (we obviously can't post it here because it would violate the copyright of Metalink)? Your test case is not a candidate for the elimination of the join, so he did not have the bug.

    Have you really read the description of the bug in Metalink rather than just looking at the title of the bug? The bug itself is quite clear that a query plan that involves the elimination of the join is a necessary condition. The title of bug nothing will never tell the whole story.

    If you try to work through a few tens of thousands of bugs in 11.1.0.7, of which many are not published, trying to determine whether your application would be affected by the bug? Wouldn't be order of magnitude easier to upgrade the application to 11.1.0.7 in a test environment and test the application to see what, if anything, breaks? Understand that the vast majority of the problems that people experience during an upgrade are not the result of bugs - they are the result of changes in behaviour documented as changes in query plans. And among those who encounter bugs, a relatively large fraction of the new variety. Even if you have completed the Herculean task of verifying each bug on your code base, which would not significantly easier upgrade. In addition, at the time wherever you actually performed this analysis, Oracle reportedly released 3 or 4 new versions.

    And at this stage would be unwise to consider an upgrade to 11.2?

    Justin

  • error of Carpenter

    Hello

    When I join 2 tables columns in a Carpenter and validate, I get the error below...

    Please let me know

    an error occurred during validation of the expression.
    Bad expression return type

    Rgds
    s

    It is an error that you get when you click on validate the join expression. That means nothing. I even think it's a bug. Click ok and try to validate the mapping. This should not be a problem and mapping should work just fine.

  • Error when you try to validate the Join Condition

    In a map, I include a Carpenter and set the join condition. By clicking on the button post, I got the following error: "an error occurred during validation of the expression. Bad expression return type. »

    At first, we thought it was a problem when you create a new map. However, we returned to the existing mappings already validated successfully and each join now returns this error OWB. This occurs for each installed user with OWB. Mapping validate successfully in the end, but the join itself will not be validated during development.

    We currently use customer 10.2.0.4.36 OWB and OWB 10.2.0.4.0 repository. The latest patch is causing this problem? A way to solve this problem?

    Thank you
    Jennifer

    It's a bug, not a feature:

     09/17/08 03:26 pm
     Version & machine info: ========================
    OWB Client/OS: OWB 10.2.0.4.36/Windows
    OWB Design Repository Version: 10.2.0.4
    Runtime Repository Server Platform/Version: Windows XP/10.2.0.4.36
    Oracle Database/OS : 10.2.0.3/Windows XP
    SOURCE & TARGET on the same machine or different machine ? yes
    SOURCE database version/OS: 10.2.0.3
    TARGET database version/OS: 10.2.0.3 .
    Problem Description ======================== .
    Filter and Join Mapping Expressions always fail the Validation Check with the  following dialogue: "An error occured during expression validation. Bad expression return type". It does not matter what the expression is. . This is a new bug in 10.2.0.4. The same exppressions validate successfully in  10.2.0.3 . The code generates and deploys successfully after this message. . . . Reproducible Case (For All bugs) ================================= . 1)START OWB Design and connect  2)Import the uploaded OWB 10.2.0.4 MDL file: expression_validate_bug.mdl  3)OPEN the Project TESTCASE 4)OPEN The Oracle Module EXPRESSION_VALIDATE_BUG 5)OPEN the mapping EXPRESSION_VALIDATE_ERROR 8)Highlight the Filter 9)Open the Filter Condition Doialogue Box. 10)Select the validate button. 11)Observe error.
    
    BugNo: 7417869 vom 17.09.08
    

    Kind regards
    Detlef

  • Lenovo tab 3 7 Essentials screenshot

    With my Samsung devices, I can put my hand on the screen, then swip on the right side, screen is captured, which helps a lot to report bugs. However, there is no simple way to screenshot on this unit.

    Of course, internal ROM is 8GB, which does not limit the device using the micro SD card to store things. I think that Lenovo had probably not any QA engineer actually use every day. They probably use more high end items, so who do not really know how these bugs are bad reputation of Lenovo.

    The standard Android action for screenshots is pressed the power button / Stop + button low volume at the same time and their detention for a second or two. Works very well on this tablet and most of the other Android devices.

  • HP Jet 11: Old BIOS installers?

    We bought two 11 flow HP laptop computers for my girls for Christmas (11-r010nr and 11-r020nr). Theoretically at least, the only difference between them is that they are of different colors. However, we have a problem. The 010nr system starts Minecraft * much * better than the 020nr system. I have run windows update on the two, and made sure that all drivers are up-to-date. The only difference I can find when inspecting the system information of these two machines, is that the BIOs of the machine that is running the game is better F.03, while the less efficient system BIOs is F05 (most recent). I'm trying to find a download of the older bios F.03 somewhere to see if this is the reason why the system works better, but I can't find it anywhere. Someone know how I can find this?

    Thank you both for your comments, I will eventually find a solution unlikely, namely I rolled back graphics drivers on the slower machine to the iteration previous (v 10.18.15.4256 as of 17/07/2015).

    For some reason, the updated drivers were actually causing slow issues I saw. When I said that everything was the same I had badly expressed, apparently the fastest machine did not get the driver update that it had and it was the difference to slap me in the face

    This announcement and marking an answer in case anyone else is having issues as well.

  • Problems of Apple TV 2015 - work, Watched &amp; Autoplay

    Hello.

    Recently I bought the new Apple TV, and in the first 2 hours of use, I have seen a ton of bugs and bad implementations.

    1. why videos AutoPlay? Who got this idea? So when I fall asleep my Apple TV through the season and the mark as watched scrubs? How will I know the other day where I left off? (Who never had this idea isn't so bright)

    2. There are 2 LARGE VISIBLE BUGS which should not only have occurred in Apple. First of all, being the blue dot for unattended or video episodes. After watch you the episode the blue dot will not far (EVEN SAYING THAT THE VIDEO is not WATCHED). You have to go back a step and that still in the living room to see it deleted.

    3. THE most GRAND SECOND BUG VISIBLE and that I want to pull my hair out and return to the Apple TV all together is the! DISAPPEARANCE OF THE WORK FOR THE NEW SHOWS ADDED!  (IN THE MAIN HOME SCREEN)

    I use an application called iFlicks that intercepts all the metadata and the work of movies and tv shows. It works like charm on my Apple TV 3. I tested it immediately when I noticed this bug and ATV 3 works great.

    THE PROBLEM, IT IS THAT THE NEW APPLE TV DOES NOT WORK SOMETIMES, WHEN IT DIDN'T THERE HAS MORE THAN 1 SEASON.

    BUT RECENTLY, I have SEEN that HE does is not DISPLAY 1280x1280px JPG

    THE ONLY THING I CAN DO RIGHT IS NOW TOO draw ON the WORK of ITUNES, resize it to 900x900px, EXPORT AS. PNG AND CHANGE IT IN ITUNES ON THE EPISODE INFO. (then he finally shows)

    4. I use a Sony 5.1 surround sound and the new Apple TV has managed to disappoint me here as well.

    There is a mode in my system, when he receives his stereo, he mimics the sound surround. Not radically but subtle.

    THE AUTO SURROUND SOUND DOES NOT WORK. If you leave it in automatic mode it buy stereo music playback! NO! You must manually click the STEREO to listen to music in stereo.

    The only thing why I haven't yet because I hope that the updates will fix that and in my opinion, the video quality of the HD content is better than the quality of the Apple TV 3.

    Does anyone have these problems? Is there any fixes for the PROBLEM of the WORK? Why is it so hard for new mountain BIKING to work high display resolution when the former was perfection in this area.

    In addition, it provide an option where the user can change the theme of light in a dark for the interface. Like the option in Mac OS X.

    This Fund white and bright are distracting, bad for the effectiveness of TV and night viewing.

    Peace,

    Mauro Enass

    1. I can now tell me.
    2. Others complained about that too, I don't think it works as expected and will be hopefully resolved in the future. If you have any suggestions that you think might improve Apple TV, you can send Apple your your comments here.
    3. I can now tell me.
    4. In my opinion, it works as expected, but rather that you and many others expect something different. I suspect Apple are aware of this, they have already tinkered with it in the last (and only to date) update.
    5. Regarding the theme of the light/dark, I agree, I don't like the light. If you have any suggestions that you think might improve Apple TV, you can send Apple your your comments here.
  • Stripchart control, strange high CPU usage

    Hi all...

    I had a strange problem with stripchart control.

    In the past, I noticed that 'sometimes' different programs I wrote had an abnormal CPU utilization, not justified by any activity that they were really productive.

    Finally, I got the time to track down the problem and build a minimum sample code.

    This program has a panel with a stripchart control and two command buttons.

    Buttons simply erase the stripchart and add one point to the empty stripchart.

    int CVICALLBACK ControlCB (int panel, int control, int event,void *callbackData, int eventData1, int eventData2)
    {
        switch (event) {
            case EVENT_COMMIT:
                switch(control) {
                    case PANEL_BUG:
                        ClearStripChart(panel,PANEL_GRAPH);
                        PlotStripChartPoint (panel, PANEL_GRAPH, MAGIC_VALUE);
                        break;
    
                    case PANEL_NOBUG:
                        ClearStripChart(panel,PANEL_GRAPH);
                        PlotStripChartPoint (panel, PANEL_GRAPH, NOT_SO_MAGIC_VALUE);
                        break;
                }
                break;
        }
        return 0;
    }
    

    I found that adding 'special' values to the stripchart starts a background activity that consumes a significant amount of time processor.

    In this screenshot you can see what happens on my PC, when I click on the command button "Bug".

    The special value here 42.22 but I bet there are thousands other with similar behavior.

    At a single point, the le stripchart stripchart shows nothing else that changing the scale of the axis Y.

    By clicking on the button 'No Bug' command inserts the value of 100.0 and no bad behavior occurs.

    Just to confuse the ideas, if you press "No Bug" and then "Bug", the bad behavior does, too.

    It's probably an interaction between the autoscale to axis Y, the initial values and perhaps the "name of the scale. I don't have the time to explore all combinations and can be a minimum solution.

    In my applications, I finished by making the set "by hand".

    I tested the program on five different PC, Core 2 Duo CPU running XP, Vista, and 7 (Italian), compiled with CVI 2010 SP1

    It is the complete project.

    The kit distribution for the project (without sources) can be downloaded here: http://dl.dropbox.com/u/23913808/CPUeater.zip

    There was a bug in the map graphic/band code which could cause without end bike when you try to resize a chart axis that had a visible axis label. It has been fixed for the next version of the CVI so unfortunately you will have to wait a bit.

    There are two possible solutions:

    (1) disable the axis label. If it is not displayed, this loop can ever occur.

    (2) to activate the fixed plot area and play with the left and the width of the plot area for hover over everything to the right a little more. The problem was introduced when the Microsoft graph chart / think the label becomes too close to the border of the chart and tries to reposition the label. Unfortunately, the code was a bit buggy and etiquette have stood in the exact the same task, but we weren't checking to see if we had already tried to reposition the label, and so he cycled constantly.

    Sorry for the inconvenience.

Maybe you are looking for