Subract bug or limitation

I have two values with exactly 1 unit difference, e.g. (X + 1 and X + 2), when I subtracted another number (Y) other results aren't exactly 1 unit of differece ((X + 2-Y) and (X + 1 - Y) isn't exactly a 1 unit difference), there are a few changes in some decimal numbers. In the attached VI number 18 after, is different. All controls/indicators have the same representation/precision. It seams to Yves that when I add 1. (and if the an either subtract the result is 1)

Can someone explain the reason why this case?

Very strange...

See attached example

Please see discussion of Greg McKaskle to epsilon for an explanation of what you see.

Ben

Tags: NI Software

Similar Questions

  • Model stopclass bug or limitation?

    Hello

    I tried to use the new class of model stop in Oracle12c but continues to have problems with it.

    I am trying to exclude indexing of numbers "decimal places" so I created this stopclass based on regular expressions:

    ctx_ddl.create_stoplist exec ('DOC_STOPLIST', 'BASIC_STOPLIST');

    exec ctx_ddl.add_stopclass ('DOC_STOPLIST', 'decimalnum', ' [[: digit:]] {1,} [-,-.] * [[: digit:]] {1,} "");

    My index is created as follows:

    CREATE INDEX TEMP_TEXT02 ON TEMP2 (FILEPATH)

    INDEXTYPE IS CTXSYS. FRAMEWORK

    PARAMETERS ("DATASTORE ctxsys.file_datastore

    LIST OF WORDS EMPTY DOC_STOPLIST

    SYNC (ON COMMIT)');

    This method works for small files (decimal numbers are not indexed) but failed for large files (decimal numbers have been indexed!).

    What is a class of model of stop bug or a limitation?  There is no work around for this?

    I have attached my sample file - a small works; While the big one is not.

    Any help is very appreciated.

    Thank you!

    It looks like a bug. If the file is no longer 16K size the regexp does not work correctly.

    See my attached unit test.  With a length of file of 16380 that I only get the word 'blah' indexed. With a length of 16386 file I get "blah" and "1.23" indexed.

    You can connect this bug yourself thanks to the support, or I can connect it. Customer bugs have tend to get looked at more quickly than those that I connect.

    Roger

  • not an expression GROUP BY - bug in Oracle 10 g?

    Hello
    I'm 00979. 00000 - "not a GROUP BY expression" error on Oracle 10g 10.2.0.4.0 - Production 64-bit.

    To illustrate my problem, I have created following the example.
    Think I have a shop with clothes. Whenever I sell something, I store this information in the database - storage in real time, type of clothing (pants, socks,...) and the size of the room (M, L, XL,...).
    Now, the system account statistics every hour. So he's going thru the table with parts sold and counts the number of pieces by clothing type and size from the start of the day. It is important to realize that it is since the beginning of the day. For this reason, the number of pieces sold in the statistical table grows every hour (or is at least on the same value as in the previous hour).

    Now, this table, I need to make new statistics. I want a statistic how many pieces by size, I sold every hour.
    I created this application for this:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY TRUNC(S1.TIME, 'HH24'), S1.xSIZE),0)) SOLD
    FROM(
    
    
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASC
    First I select the number of pieces sold by time and by size. To get the number of pieces sold for specific time, I need to subtract the value of number of pieces sold of the previous hour. I decided to do it with a parameter query.
    Runs the query like this I don't get "a GROUP BY expression" error. However, if I Uncomment 'ORDER BY DESC of 1' statement, the query works. I'm sure that he must do something with this line:
    AND TRUNC (S1. TIME, 'HH24') + 1/24 = S.TIME

    If you change the query like this:
    SELECT TIME, xSIZE, (SOLD  - NVL((SELECT SUM(S1.SOLD)
                                      FROM STATISTICS S1
                                      WHERE S1.xSIZE = S.xSIZE
                                        --AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
                                        AND TO_CHAR(S1.TIME, 'HH24') != '23'
                                        AND S1.xSIZE IS NOT NULL
                                      GROUP BY  S1.xSIZE),0)) SOLD
    FROM(
    
    SELECT TRUNC(S.TIME, 'HH24') TIME, S.xSIZE, SUM(S.SOLD) SOLD
    FROM STATISTICS S
    WHERE S.xSIZE IS NOT NULL
    GROUP BY TRUNC(S.TIME, 'HH24'), S.xSIZE
    --ORDER BY 1 DESC
    ) S
    ORDER BY TIME DESC, xSIZE ASC
    Join the removed occasionally truncated tables and grouping truncated at the time--> the query does not lack...
    And now the best... If you run the first query on Oracle 11 g (11.1.0.6.0 - 64 bit Production version), it works.
    Anyone know why the first query does not work on 10g? Are there bugs and limitations for this version of server?
    Please don't tell me to rewrite the query in a different way, I already did, to make it work on 10g more. I'm just curious as to why it does not work on 10g.

    Finally, here are some data for the test.
    CREATE TABLE STATISTICS(
      TIME DATE DEFAULT SYSDATE,
      TYPE VARCHAR2(20),
      xSIZE VARCHAR2(2),
      SOLD NUMBER(5,0) DEFAULT 0
    )
    
    
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'M', 10);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'M', 3);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'T-Shirt', 'L', 1);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'L', 50);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Trousers', 'XL', 7);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 2/24, 'Socks', 'XL', 3);
    
    
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'T-Shirt', 'M', 13);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'L', 60);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Trousers', 'XL', 15);
    INSERT INTO STATISTICS(TIME, TYPE, xSIZE, SOLD) VALUES(SYSDATE - 1/24, 'Socks', 'XL', 6);
    Edited by: user12047225 the 20.9.2011 23:12

    Edited by: user12047225 the 20.9.2011 23:45

    This is a known issue when the optimizer decides to expand the online display. You can add something (outside of ORDER BY you already used) in online mode to prevent the optimizer from its expansion. For example:

    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     10                           AND S1.xSIZE IS NOT NULL
     11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     12                                    S1.xSIZE
     13                      ),
     14                      0
     15                     )
     16          ) SOLD
     17    FROM  (
     18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
     19                   S.xSIZE,
     20                   SUM(S.SOLD) SOLD
     21             FROM  STATISTICS S
     22             WHERE S.xSIZE IS NOT NULL
     23             GROUP BY TRUNC(S.TIME, 'HH24'),
     24                      S.xSIZE
     25           --ORDER BY 1 DESC
     26          ) S
     27    ORDER BY TIME DESC,
     28             xSIZE ASC
     29  /
             SELECT  TRUNC(S.TIME, 'HH24') TIME,
                           *
    ERROR at line 18:
    ORA-00979: not a GROUP BY expression
    
    SQL> SELECT  TIME,
      2          xSIZE,
      3          (SOLD - NVL(
      4                      (
      5                       SELECT  SUM(S1.SOLD)
      6                         FROM  STATISTICS S1
      7                         WHERE S1.xSIZE = S.xSIZE
      8                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
      9                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     10                           AND S1.xSIZE IS NOT NULL
     11                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     12                                    S1.xSIZE
     13                      ),
     14                      0
     15                     )
     16          ) SOLD
     17    FROM  (
     18           SELECT  TRUNC(S.TIME, 'HH24') TIME,
     19                   S.xSIZE,
     20                   SUM(S.SOLD) SOLD,
     21                   ROW_NUMBER() OVER(ORDER BY SUM(S.SOLD)) RN
     22             FROM  STATISTICS S
     23             WHERE S.xSIZE IS NOT NULL
     24             GROUP BY TRUNC(S.TIME, 'HH24'),
     25                      S.xSIZE
     26           --ORDER BY 1 DESC
     27          ) S
     28    ORDER BY TIME DESC,
     29             xSIZE ASC
     30  /
    
    TIME      XS       SOLD
    --------- -- ----------
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    
    6 rows selected.
    
    SQL> 
    

    Or use the subquery factoring (WITH clause) + undocumented hint of MATERIALIZATION:

    SQL> WITH S AS (
      2             SELECT  /*+ MATERIALIZE */ TRUNC(S.TIME, 'HH24') TIME,
      3                     S.xSIZE,
      4                     SUM(S.SOLD) SOLD
      5               FROM  STATISTICS S
      6               WHERE S.xSIZE IS NOT NULL
      7               GROUP BY TRUNC(S.TIME, 'HH24'),
      8                        S.xSIZE
      9             --ORDER BY 1 DESC
     10            )
     11  SELECT  TIME,
     12          xSIZE,
     13          (SOLD - NVL(
     14                      (
     15                       SELECT  SUM(S1.SOLD)
     16                         FROM  STATISTICS S1
     17                         WHERE S1.xSIZE = S.xSIZE
     18                           AND TRUNC(S1.TIME, 'HH24') + 1/24 = S.TIME
     19                           AND TO_CHAR(S1.TIME, 'HH24') != '23'
     20                           AND S1.xSIZE IS NOT NULL
     21                           GROUP BY TRUNC(S1.TIME, 'HH24'),
     22                                    S1.xSIZE
     23                      ),
     24                      0
     25                     )
     26          ) SOLD
     27    FROM  S
     28    ORDER BY TIME DESC,
     29             xSIZE ASC
     30  /
    
    TIME      XS       SOLD
    --------- -- ----------
    20-SEP-11 L           9
    20-SEP-11 M           0
    20-SEP-11 XL         11
    20-SEP-11 L          51
    20-SEP-11 M          13
    20-SEP-11 XL         10
    
    6 rows selected.
    
    SQL> 
    

    SY.

  • Bug in the sorting matrix?

    Here is my code:

    for (var pNum:int = 0; pNum < = 144; pNum ++) {}
    var itemCount:Number = this [("P" + pNum)] .length;
    var left: Number = 58;
    . source.sortOn this [("P" + PNUM)] ("height", Array.DESCENDING);
    for (var theArray:int = 0; theArray < this [("P" + pNum)] .length; theArray ++) {}
    }

    If I have two items in my table, at height of 200 and the other to the tune of 80. The kind puts 80 to 200. If my point of heights are 80 and 40, it sorts correctly and put the 80 in front of the 40. If my point of heights are 140 and 100, then it sorts wrong, put 100 to 140. The sorting only works for numbers less than 100. Is it a bug, a limitation, or I do something wrong?

    Well, first of all looking at this block of code, I'd say that you might benefit from a bit of refactoring to simplify everything you do.

    for (var pNum:int = 0; pNum<= 144="" ;="">

    sortByHeight (pNum);
    }

    private void sortByHeight(index:int):void {}

    var itemCount:Number = this [index] .length;
    var left: Number = 58;
    Cette.source.sortOn [index] ("height", Array.DESCENDING);

    for (var theArray:int = 0; theArray< this[index].length="" ;="">
    }
    }

    You will maybe just do this instead of just "Array.DESCENDING", looks like it is sort your numbers as ASCII characters or something:

    Array.DESCENDING | Array.NUMERIC

  • Firefox 4 beta replace 3.6.9 or or them both still available?

    I want to try FF 4 beta but not if my work 3.6.9 version is replaced. What happens to the old installation when the beta is installed?

    Given that many people will ask on this issue, this issue should be addressed on the beta version download page and don't need to be asked.

    Firefox 4.0 beta versions are released for testing purposes and are disclosed unfinished with known bugs and limitations.

    You should not rely on them and always keep a regular release to use in case of problems.

    You should only use these test versions if you are experienced enough to deal with the issues.

    The beta version should install in a separate Directory and you must also create a new profile for this version avoid the alteration of the profile Firefox 3.6.x.

    See:

    http://kb.mozillazine.org/Profile_Manager
    http://kb.mozillazine.org/Testing_pre-release_versions
    

    You can also watch the daily discussions and other related topics as D2D in the forum MozillaZine Firefox Builds to follow the development of version 4.0.

    Firefox MozillaZine forum builds: http://forums.mozillazine.org/viewforum.php?f=23

  • E280 V03.01.11A &amp; Micro SD 16 GB memory card

    I read that people believe this combo works, but someone has actually tried this yet with a nearly full up to 16Gb micro SD card and is recognized by the player E280 Sana?

    Thanks in advance for any comments.

    Herman,

    P.S. I know that the Micro SD 8 GB card works.

    It works according to this poster. Why?  You have one that does not? There is a bug that limits the amount of files in the database about 4000 +/-so this limit could certainly be achieved easily with 16 GB card. Some have already experienced with the 8 GB.

    One thing I would however recommend that you update your firmware. If you still use the original version de.11, you don't have even the USB mode switch in your menu settings as well as a few other improvements. You can find the firmware from the links in the quick reference card (shaded messages) at the top of the Board. You will need to do this manually (instructions in the post) and force in MSC mode (since your f/w does not have the option).

    With your Player off, set the HOLD switch to the headphone jack. You will see the below orange bar. Now, press and hold the rewind |< button="" while="" at="" the="" same="" time="" plugging="" the="" cable="" into="" your="" sansa="" (cable="" already="" connected="" to="" the="" computer).="" it="" should="" power="" up="" in="" msc="" mode.="" if="" it="" doesn't="" open="" a="" windows="" explorer="" window="" automatically,="" open="" one.="" double-click="" on="" your="" player's="" icon/drive="" to="" open="" it="" and="" follow="" the="" instructions="" for="" manually="" loading="" the="" firmware.="" when="" done,="" slide="" the="" hold="" switch="" back.="" it="" should="" re-boot="" and="" you'll="" be="" all="" up="" to="" date!="">

  • How disable the full row select in Windows 7 Explorer?

    Keith Miller provided that a registry change works on Vista.
    http://social.technet.Microsoft.com/forums/en/itprovistadesktopui/thread/7101bb56-c0b7-48af-a493-2fb8c8ea0ead

    but it does not work on Windows 7.
    I tried the two editing the registry and run the script, Explorer still works with lots of Select line.
    Does anyone have the solution?

    OK, that's s little late, prob a waste of time.  I appreciate the work of the people who came with corrections to this stupid "design by" improvement of Microsoft.  My goal is threefold:

    1: to comment, this is not the first time, probably won't be the last, that the independent community is cleaning after the stupidity of Microsoft.

    2: to predict one of its "features" that will be integrated into windows 8: If you mistakenly triple - click on any file in windows Explorer .exe, the window will turn into a copy of the finder of Mac, and then morph into a ball of rotation range, then the operating system will remove half of its own files and shut down.   He will present another opportunity for people to find bugs and "work-arounds."  Microsoft, of course, will say that it is "by design", because no Windows user would never "triple-tap" on anything...

    3: to explain why these things happen: at least one of the Chief engineers/developers MS Windows has a recurring nightmare, playing the Nerd in a Mac ad, and the ' mac cool guy "is the one who had an affair with the first girlfriend of the Nerd... (long story), in any case Nerd therapist can help him much, so every morning Mr. Nerd wakes up in a cold sweat and starts to work thinking that the only way out is complete "Macification" of Windows.

    As one of apparently few people who use two operating systems extensively, I can see what is happening in the brain of the Nerd.  Unfortunately.

    It is true that Windows has had its stupid and unnecessary problems, and at the same time, Mac is more stable.  In addition, Windows can be maddeningly stupid sometimes.  However, after trying to actually do things or correct certain defects of system on a Mac for a few hours, it is absolutely Orgasmic to return to Windows, where there are usually real solutions, and you can make things work.  In the Mac world, when the BONE does stupid things (who does regularly and on a much larger scale than windows), they simply shake their heads to you unfortunately and whisper that you must have done something wrong, or tried to do something nasty...     In the Mac world, ALL bugs and limitations are "by design", and since the design is perfect, no problem that you have is to only you.

  • Conductor - impossible to access from endpoints H323

    Hi people,

    I just have one question: when you turn on the deployment of the conductor B2BUA VCS, can I do of the H.323 endpoints registered in the VCS to compose for meetings of a conductor? I guess that the dial plan is configured to route calls and interoperability is activated and functioning properly on VCS to allow dialing SIP H323.

    Currently, this configuration does not work for me. After making several attempts at solving problems and debugs, I came to the conclusion that there is some bug or limitation in the conductor, is why this configuration does not work. But I need to confirm if this integration is supposed to work or not, before opening a case of TAC. I found no specific information in the documentation.

    I have the following devices. All that they are running the latest version of the software:

    Conductor

    VCS

    TP server

    TC endpoints

    The problem does not exist when you compose of SIP endpoints to the driver. Also, if I dial conductor to H323 endpoints, it works normally with interoperability in VCS. The problem occurs only H323 endpoints to the driver.

    I'd appreciate any help. Thanks in advance!

    Concerning

    Paulo Souza

    Please note the answers and mark it as "answered" as appropriate.

    Hey, Paulo,.

    You did a good job of going through newspapers. As you pointed out, the problem is with the SIP options. The driver receives a VCS SIP Options, but never sends back a response. This causes the call to hang and then eventually timeout.

    There is a default for this, once the ID was generated I will let you know what it is.

    The solution is to turn on the profile of area to customized with 'automatically respond to the SIP research. " Let us know if the workaround works for you.

    Thank you, Adam

  • A problem I have with my rendering video.

    Hello everyone, so I worked on a video for a while now and I'm almost done with the video, but I'm having a problem with my video rendering. I have it in my video so that there are a few sounds that appear at certain points in the video, and when I play the video inside of sequelae (ram preview) everything works fine, the audio playback when I want to play and audio, it's self is FINE. However, when I made the video, I hear sounds that I don't even have use in my video, and nothing plays sometimes instead of a playing sound. It's a weird question, please let me know if there is more information to provide. I'll try to get you guys give an example of what happens

    The original video that I'm editing has music in it, I put it in place so there is a rattling at 00:10:00 and that there is a sound explosion at 00:15:00, when I look at the ram preview video, I could hear the sounds and everything's fine, when I made the video and I found that the music that was in the original video is fine and normal looked , but I found that do not work the sounds that I added for some reason, the rattling has changed and has become a strange noise, and the noise of the explosion doesn't work at all, please let me know if there is something I need to do to solve this problem. BTW, the audio files that I use are .mp3

    Operating system: Windows 10 home

    After effects version: 2015 13.7.1.6 CC (this is the latest from today, may 29, 2016)

    The computer specifications: ram and i7 16 GB 4th generation processor

    If there is more information I provide, please let me know and I will not fail to do so as soon as possible

    Edit: I just tried to make the video as AVI using after effects with adobe media encoder and the problem has been corrected, but the file is too large (because of the obvious reasons) and it would be difficult for me to upload it to Youtube. It seems that the problem might be due to the Adobe Media Encoder.

    Edit 2: I just tried to make the video using adobe media encoder, and for some strange reason the clicking sound now doesn't at all, while the sound of the explosion is very well (Note: I'm not changing anything at ALL in my composition, I just tried to make the same exact file once again.) I guess that the cause of this problem might not be after-effects. It might be SOUL)

    Post edited by: totally was not

    Edit: I just tried to make the video as AVI using after effects with adobe media encoder and the problem has been corrected, but the file is too large (because of the obvious reasons) and it would be difficult for me to upload it to Youtube.

    No trouble there. Nothing prevents you from him giving an additional encoding pass in the SOUL to produce a lean H.264 file. Ultimately it's what you have to understand - working with intermediate files is a common practice among professionals for a variety of reasons. Otherwise, the questions you see are just bugs and limitations of the current version of AE, combined to the fact that EI is not an audio, editing and mixing app in the first place.

    Mylenium

  • Orchestrator web client: using variables in one presentation to another page

    A workflow that works linking orchestrator does not running the web client because (after a repair) I found that the values of a page of the submission form is not available on the other.  For example, the user selects the string: templateName on the first page and the following pages using #templateName to call a function.   However, this variable is empty so can not be used.  However, it can access General variables with values hard-coded.

    Is this a bug? limitation? Are there workarounds?

    (I use vsphere client 5.5 build 2026576)

    Default value is set once while data binding must be updated each time that the first field is changed.

    Sometimes what happens is that when the workflow starts, the default value cannot be calculated because the parameter is not yet set.

    You can avoid making mistakes with the launch of the first privilege of actions: if (parameterName == null) return null;

    But I'm surprised the example that you gave does not work.

    Check the server.log file to verify if the action runs with the empty parameter en or if there is another error.

  • Illustrator, including Mac OS

    Hello

    Since the update to illustrator 18.1 today, I noticed that when you create an object by using the rectangle or rounded rectangle tool I'm get a bounding box.

    At first I thought that he had reset the option to hide the bounding box, but it is still active. I can create any other shape (ellipse, polygon, Star) or even the hand draw a rectangle and it

    Displays the boundary, but not with the tool box.

    Am I missing something or is this a bug?

    Polygon with the bounding box display

    Screen Shot 2014-10-06 at 11.43.52.png

    Rectangle show with limit bow on view, but not active

    Screen Shot 2014-10-06 at 11.44.12.png

    Thank you

    David

    David, other,

    An update:

    It seems that the Rectangle of live bug is limited to MAC versions starting from 10.7 and 10.8, but not 10.9 (Mavericks), see this thread linked below.

    https://forums.Adobe.com/thread/1595973

    Thus, a switch for the Mavericks with a reinstall might be the way to solve it here and now.

    It is possible to extend the live Rectangles for the normal old shaped rectangles.

    A way round that is to create normal old shaped rectangles, after running the free script created by Pawel, see this thread with download link:

    https://forums.Adobe.com/thread/1587587

  • What are the products available for integration of endpoint vShield?

    Hi all

    I noticed that this question was asked a few months ago, and the response at this time was 'TrendMicro Deep Security' is the only product available that integrates with vShield Endpoint.

    I was wondering if something changed recently? I searched Web sites and documentation for all well-known sellers of protection antiviruss and don't find any mention of other vShield produced endpoint that may be available.

    I noticed that a few days ago TrendMicro & VMware announced a closer alliance, this may indicate that other providers are not serious about vShield yet?

    http://trendmicro.Mediaroom.com/index.php?s=43 & news_item = 908 & type = Current & year = 0

    Thank you, actually

    Hello

    Take a look at Bitdefender EVS (www.bitdefender.com/sve), it s a new product, and it has bugs and limitations... After a lot of testing, we decided againts goes live with EVS.

    Michael

  • Fonts TrueType Adobe is missing from the created PDF


    When I create a PDF just by perfectly except the text of fonts TrueType Adobe is missing (Adobe Garamond Pro). It's used to work. File looks good on screen and prints well.

    If I switch to Garamond the PDF is created perfectly, now including all the missing text.

    Note Garamond Pro fonts are not TrueType and Adobe fonts. They are OpenType CFF fonts.

    Actually, this is perhaps the key to why they are not included in your PDF files.

    First of all, unlike the response of Bill@VT, while the standard joboptions for Adobe's PDF creation tools do not incorporate all the fonts, the fonts that are not incorporated are in a list of exceptions. Using these joboptions, members of the family of fonts Adobe Garamond Pro should integrate properly in the created PDF files either by printing (a) at the instance of PostScript printer driver Adobe PDF on Windows, (b) using the export PDF from Adobe graphics applications (Illustrator, InDesign, etc.) as long as you use not the joboptions smaller , or (c) for the use of Microsoft Office applications you use the Adobe PDFMaker option for creating PDF, save them as Adobe PDF files again as long as you do not use the joboptions of smaller size .

    That being said, the fact that Garamond fonts (I assume you mean the family of TrueType Garamond fonts as bundles of Microsoft with Windows and Office) incorporates and Adobe Garamond Pro police stir not leads me to believe that your real problem is that you create a PDF using the fairly defective save them in PDF format that is native to Microsoft Office on Windows. One of a number of bugs or limitations in creating PDF from Microsoft is that although it includes TrueType and OpenType TrueType fonts, it is unable to embed OpenType CFF fonts. Not only is not Microsoft include the fonts in the PDF file, but it is incorrectly referred to the fonts in the file PDF generated such that when you view or print these PDF files, even if you have Adobe Garamond Pro installed on your system, these fonts are not used for display or printing. (We have informed Microsoft of this bug, but they are apparently not interested in fixing their bug!)

    If you already have Acrobat installed on your system, use the Save as Adobe PDF (from the screen of the file) or create an Adobe PDF from the Acrobat tab in the Office Ribbon. Set preferences to a minimum Standard, but preferably Hiqh quality print joboptions and you will end up with a good PDF with the Adobe Garamond Pro (or all OpenType fonts) properly integrated)!

    -Dov

  • Jpg in the slideshow widget is converted to PNG

    I'm setting up a slide show to a series of JPG files that I don't want to NOT resized or altered in any way during the export.  If I PLACE a JPG image in a page, add a shadow and then export, I always get the JPG original and shadow is handled by CSS.  So far so good.  However, when I install a slideshow (with a picture frame that is larger than any of the incoming images so that no resizing of the image occurs), then add a shadow on the picture frame, then export, I get PNG files instead of the original JPG files .

    This is not good, since the PNG files are MUCH more important.  I do not understand why MUSE is inconsistent here... it seems to me that if the PLACE can result in the shadow is handled by CSS, so why not in the slide show?

    Is it possible to have a shadow (via CSS) in a slideshow widget and also export the JPG of origin instead of a PNG file?

    When a picture does not fill it is not the whole framework, the region, which it does not is considered to be transparent. In the current implementation of Muse, Muse no particular case a rectangular opaque region (which may cast a shadow using a CSS shadow) and a non-rectangular (which can not throw the correct shadow systematically in all popular browsers using CSS). So Muse converts the image into a PNG image to add the drop shadow.

    Call it a bug, a limitation or simply something that we have not learned to yet, but if the rectangle containing the images of bits is smaller than the frame it is displayed in, when a shadow is cast it true by converting the bits in PNG and adding shadow (even if in the case of image pieces rectangular simple CSS drop shadow would work and be preferable).

  • event handler onMouseClicked does not

    I'm currently playing with Netbeans 7.0 and JavaFX 2.0 beta (Java 1.6.0_26, Windows XP operating system) and noticed, that the handler onMouseClicked doesn't seem to work properly.

    I have added one to the scene, but he triggered only very visit, when I hit the button on the mouse several times very quickly. On the other side onMousePressed and onMouseReleased managers work as expected.

    I also tried to add a click event handler to other nodes such as a Rectangle or a component, but it's always the same behavior.

    What is a (known) bug or limitation of version beta or am I missing something here?

    Here's a short example:
    public void start(Stage primaryStage) {
            primaryStage.setTitle("JavaFX");
            
            final BorderPane root = new BorderPane();
            final Scene scene = new Scene(root, 800, 600, Color.BLACK);
            scene.setOnMouseClicked(new EventHandler<MouseEvent>() {
                public void handle(MouseEvent event) {
                    System.out.println("click");
                }
            });
            primaryStage.setScene(scene);
            primaryStage.centerOnScreen();
            primaryStage.setVisible(true);
    }
    Kind regards

    Kai

    Edited by: 865264 the 11.06.2011 13:29 (thanks for the tip, Darryl)

    This is a known bug, see http://javafx-jira.kenai.com/browse/RT-13968 for explanation.

Maybe you are looking for