Bug in map HDPI

How to report a bug?

I have a Windows 10 machine with a k 4 monitor set to the 150% scaling. In the card module, whenever I have drag-and - drop a photo (or group) on the map, they get pinned below and to the right where I drop them - around 150%, compared to the upper-left corner of the map. Existing items appear to be made in the right position on the map.

Hi jgus,.

If you want to report a bug, please do so on the Web site: http://feedback.photoshop.com/

Kind regards

Tanuj

Tags: Photoshop Lightroom

Similar Questions

  • C++ API: is there a bug with Map::InvokeAll?

    Hello

    I try to use the input processors to do like 'put away cases', 'Delete where...

    I works very well except for return values. Everything that I do, the map returned by InvokeAll is always empty!

    This simple example:
    < coherence/net/cachefactory.hpp > #include
    #include < coherence/util/extractor/KeyExtractor.hpp >
    #include < coherence/util/filter/AlwaysFilter.hpp >
    #include < coherence/util/filter/LikeFilter.hpp >
    #include < coherence/util/filter/NotFilter.hpp >
    #include < coherence/util/filter/PresentFilter.hpp >
    #include < coherence/util/HashSet.hpp >
    #include < coherence/util/processor/ConditionalPutAll.hpp >
    #include < coherence/util/processor/ConditionalRemove.hpp >

    namespace ch = coherence::net;
    namespace cu = coherence::util;
    namespace cl = coherence::lang;

    namespace {}
    void dumpMap (cu::Set:View vSetResult, const std::string & message)
    {
    «std::CERR < < message < < ": «;»
    for (hIter cu::Iterator:Handle = vSetResult-> iterator(); hIter-> hasNext() ;))
    {
    CU::map:entry:view vEntry = cl::cast < cu::Map:Entry:View > (hIter-> next());
    CL::String:View key = cl::cast < cl::String:View > (vEntry-> getKey());
    CL::string:view val = cl::cast < cl::String:View > (vEntry-> getValue());
    ("std::CERR < <"("<< vEntry-> getKey() <<",) "< < GetValue vEntry - > < < '), '; '.
    }
    std::CERR < < std::endl;
    }

    void dumpCache (ch::NamedCache:Handle hCache, const std::string & message)
    {
    dumpMap (hCache-> entrySet(), message);
    }

    Sub initCache (ch::NamedCache:Handle hCache)
    {
    hCache-> clear();
    hCache-> put (cl::String:create("01"), cl::String::create("v:01"));)
    hCache-> put (cl::String:create("05"), cl::String::create("v:05"));)
    hCache-> put (cl::String:create("11"), cl::String::create("v:11"));)
    hCache-> put (cl::String:create("15"), cl::String::create("v:15"));)
    hCache-> put (cl::String:create("21"), cl::String::create("v:21"));)
    hCache-> put (cl::String:create("25"), cl::String::create("v:25"));)
    }
    }

    Sub testInvokeAll()
    {
    ch::NamedCache:handle hCache(ch::CacheFactory::getCache("first_cache"));)

    {
    std::CERR < < "== init" < < std::endl;
    initCache (hCache);
    dumpCache (hCache, "init");
    }
    {
    std::CERR < < "== emulation putIfAbsent" < < std::endl;
    Cu::map:handle = cu::HashMap::create() entries;
    entries-> put (cl::String:create("01"), cl::String::create("v:01MOD"));)
    entries-> put (cl::String:create("==="), cl::String::create("===MOD"));)
    entries-> put (cl::String:create("11"), cl::String::create("v:11MOD"));)
    entries-> put (cl::String:create("+++"), cl::String::create("+++MOD"));)
    CU::InvocableMap:EntryProcessor:handle processor = cu::processor:ConditionalPutAll: create)
    CU::filter:NotFilter:create (Cu::Filter:PresentFilter:GetInstance ())), entries;
    CU::map:view res = hCache-> invokeAll (cl::cast < cu::Collection:View > (entries-> keySet()), processor);
    BUG? must return a result set of 4 inputs but returns an empty set
    std::CERR < < ' size res ' < < res - > size() < < std::endl;
    dumpMap (res-> entrySet(), "res");
    The work has be done correctly
    dumpCache (hCache, "putIfAbsent");
    }
    {
    std::CERR < < "== emulation delete where key in ('11 ',' =') ' < < std::endl;
    Cu::set:handle cu::HashSet::create() = keys;
    keys-> add(cl::String::View("11"));)
    keys-> add(cl::String::View("==="));)
    processor Cu::InvocableMap:EntryProcessor:handle = cu::processor:ConditionalRemove:create (cu::filter:AlwaysFilter:getInstance (), true);
    CU::map:view res = hCache-> invokeAll (cl::cast < cu::Collection:View > (keys), processor);
    BUG? must return a result set of 2 inputs but returns an empty set
    std::CERR < < ' size res ' < < res - > size() < < std::endl;
    dumpMap (res-> entrySet(), "res");
    The work has be done correctly
    dumpCache (hCache, "Delete where");
    }
    {
    std::CERR < < "== emulation delete where key like 2% '" < < std::endl; "."
    should return tickets as the corresponding flag is set to true

    processor Cu::InvocableMap:EntryProcessor:handle = cu::processor:ConditionalRemove:create (cu::filter:AlwaysFilter:getInstance (), true);
    CU::filter:view f = cu::filter:LikeFilter:create (cu::extractor:KeyExtractor:create (), cl::String::create("2%"));)
    CU::map:view res = hCache-> invokeAll (f, processor);
    BUG? must return a result set of 2 inputs but returns an empty set
    std::CERR < < ' size res ' < < res - > size() < < std::endl;
    dumpMap (res-> entrySet(), "res");
    The work has be done correctly
    dumpCache (hCache, "remove where2" ');
    }

    }

    int main (int argc, char * argv)
    {
    Try
    {
    ch::CacheFactory::Configure(ch::CacheFactory::loadXmlFile("client-cache-config.xml"));
    testInvokeAll();
    ch::CacheFactory::Shutdown();
    }
    catch (const cl::Exception:View & e)
    {
    std::CERR < < "Ouch!" < < e < < std::endl;
    }
    return 0;
    }
    The output is:
    == init
    init: (11, v: 11), (v, 01:01), (25, v: 25), (v 05:05), (v, 21:21), (15, v: 15).
    is emulation putIfAbsent
    RES size 0
    RES:
    putIfAbsent: (=, = MOD), (11, v: 11), (v, 01:01), (25, v: 25), (+++, +++ MOD), (v 05:05), (v, 21:21), (15, v: 15).
    == emulation delete where key in ('11 ',' =')
    RES size 0
    RES:
    Delete where: (01, v: 01), (25, v: 25), (+++, +++ MOD), (v 05:05), (v, 21:21), (15, v: 15).
    == emulation delete where key like 2% '
    RES size 0
    RES:
    Remove where2: (01, v: 01), (+++, +++ MOD), (v 05:05), (15, v: 15),
    the cache is modified, as expected, but the cards returned by invokeAll are always empty!

    Is this a bug? I misunderstand documentation? Use the API incorrectly?

    Don't forget that when you are running code in the cluster - you actually run the Java code. That is to say. When you call / invokeAll, State of C++ processors gathered unmarshaled in the form of Java in the cache, and only then run.

    That is why - if the java ConditionalPutAll always returns the Null map (which does)... then your version of C++ will most probably also. (The return of a null map is for efficiency purposes)

    Once you recognize that and really really want to return values in a PutAll call - you can create / derive your own implementation of the Java ConditionalPutAll processor.

    The ConditionalRemove also works as advertised - but you should very carefully read the fineprint. Defining the fReturn returns a value only if the entry is NOT deleted.
    In your examples, your filter ALWAYS removes everything, so... nothing is returned.

    Like ConditionalPutAll, you can create your own version to return the deleted entries.

  • See the wizard bug of mapping object 'custom SQL query' attribute to JDeveloper 12.1.3.0.0

    I encountered a bug in JDeveloper 12.1.3.0.0 when working with custom views of SQL query. The bug manifests itself so that the wizard does not all SQL attributes add to the list of attributes. This is the query that I managed to recreate my original query that shows the bug:

    with with_clause as)

    Select ao.owner as variable_attr from sys.all_objects ao

    )

    Select

    0 as constant_attr,

    WC.variable_attr

    of with_clause wc

    The wizard creates only an attribute to "constant_attr" and not "variable_attr". Hit the "Requester" button in the wizard gives me the following error:

    error.png

    I don't think I need to stress is how problematic - creation all attributes by hand for a query validates is enough of a reason to go get another IDE because ADF assistants are the most useful features of JDeveloper, otherwise the only ones that are "hooked". In addition, it works very well in JDeveloper 11 g and JDeveloper 10 g - what happened to 12 c?

    Oracle has made some changes in this area in 12.1.3. If you have a support contract, you must file an SR with support.oracle.com. If you haven't you might want this folder on https://java.net/jira/browse/ADFEMG that has no attached ALS but at least the problem is registered and if it is accepted as a bug an official bug is triggered.

    Timo

  • Bug: (Composition widget), HDPI image Resolution

    I have a problem using the widget of composition in Adobe Muse CC.

    Embedded images to compose the show seem very pixelated

    even though I have checked HDPI images in my site properties for mobile.

    See example on this page.

    Any ideas?

    For any image to be HiDPI image loaded in Muse must be at least 2 x the size in which it will appear on your website. It seems likely, the original images were not big enough for Muse to create HiDPI versions, because the link you provided will contain images HiDPI.

    On a separate, by default, note the "convert Opaque PNG to JPEG" option is enabled in the properties of the Site. When a PNG image contains a chart of photographic nature, conversion to JPEG will generally reduce the size of the file by a factor of 5, so only active must faster page loading time. However, if opaque PNG is an image of synthesis with hard edges and areas of solid color, JPEG compression will introduce artifacts into the image that will appear to blur the edges between colors. You can enable this option to make these sharper images, priced at the page load slower.

    For vector drawings as the "Haus der Küche" graphics, file size and sharpness of the image would be better as an SVG, rather than a raster format (JPEG, PNG, GIF).

  • Mapping ragged hierarchy

    11.2 OlAP

    I'm trying to map a cube and dimension's ragged hierarchy (products) with 1, 2, 3 and 4 with 4 being the most granular levels. The product can exist at any one of these levels. According to this http://oracleolap.blogspot.com/2008/01/olap-workshop-4-managing-different.htmlblog, the fact table key must be mapped to all the columns in the cube dimension level in the mapping of the cube editor. When I try to do it and, mapping for all levels gets automatically turned off except for level 4. This has changed since this blog was written? Can someone please comment.

    Thank you

    Usman

    This is a bug of AWM

    BUG 16438778 - MAPPING IS NOT RECORDED IN THE CUBE WHEN THE MAPPING AT SEVERAL LEVELS IN THE DIMENSION

    There is no difficulty accessible as far as I know, but fortunately, there is a solution.  Suppose that your cube is named MY_CUBE and that your dimension is PRODUCED. The following PL/SQL should solve the problem.  You need to detach the AW of minutes before that shot.  (The best to save the cube to a XML template first, then close AWM.)

    Start
    dbms_cube.import_xml(Q'!)


     
      
     


    !');
    end;
    /

    If it returns an error, then compare the above XML fragment for the XML model for the cube.  You should see something similar in the model, but it will be MappedDimension = "PRODUCT. LEVEL_4' (or equivalent).  The key point is that you must set the MappedDimension on a null value (using an empty string in XML).

  • Error in replacement of the expression (mydatastore.mycol, ' ', ") on SQL ANSI

    I am trying to use an expression simple transformation on a target attribute of data with Oracle technology store: replace (COMMON_CIDADAO. APELIDO, ' ', ").

    So simple as that.

    When you run this mapping I got this error in a message box:

    «An error was encountered when parsing the expression: replace (COMMON_CIDADAO.» APELIDO, ' ', ").

    The default parser supports the ANSI SQL delimiters. If you want a nonstandard syntax, use delimiters form free expression / %% and %% / around the expression. »

    All the answers? Thanks in advance!

    José Nicolau

    Here is some info based on a Service request response.

    Bug 18610699 - ODI 12 c - REPLACE USER FUNCTION CAUSING the ERROR SQL ANALYSIS

    There is a similar Bug 17924215 - MAPPING VALIDATION has FAILED AFTER UPGRADE TO 11 G REPO because of ERROR of ANALYSIS already filed and DEV has indicated that it will be fixed in 12.1.3 release.

    I hope that 12.1.3 will be out soon!
    Kind regards
    Michael Rainey
  • 11.1.2.4 FDMEE bug? No validation of UD1 explicit mappings when importing the mapping

    Hi guys,.

    We came across a strange behavior in FDMEE 11.1.2.4.

    We have imported a map file that contains a line with an explicit mapping to a non-existent target UD1 member in HFM 11.1.2.4...

    .. .by mapping/All Load data mappings/import/all the mappings and the following parameters:

    FDMEE.JPG

    Strangely enough, it is: import through without errors. Although the 'Validate' has been enabled and importation must have failed.

    But when we push the button "Validate" tab in "Explicit", error message as expected:

    FDMEE2.JPG

    It seems so that the option validate during the import of UD1 is not working properly.

    We also tried to map to a member of PKI non-existent target: Validation works.

    We tried 11.1.2.3: it works.

    Does anyone have the same problem?

    See you soon,.

    Carmonte

    Bug seems to be fixed with the patch 100. It does not explicitly as fixed a Bug in the file read me well.

    However... mapping import validation works now.

  • credentials for map question, is this bug in products?

    Hello

    I created a new named MapTest identification card. WebLogic user group has been associated with a content server role. When I connect with this user to CS, I can't access rights according to the role mentioned in the mapping of credentials. After traveling with the contents of the forum, including ProviderCredentialsMap = < map_name > attribute is missing in the file ucm/cs/data/providers/jpsuserprovider/provider.hda. After adding this entry, reflect things and everything started to work very well.

    Now when we create an identification card why don't it does not update the provider.hda file directly? Is - this bug or just the way things work?

    Hello Mohan,

    It is not a bug and adding of entry into provider.hda is part of the stage to finish the configuration of an identification card.

    Thank you
    Srinath

  • Probable bug with decimal data type mapping in storage of XmlType relational object

    Hello

    I'm having a problem with what appears to be a bug me when Oracle creates the mapping object / relational schema for a data type "XSD: Decimal":

    I want to store geo codes 6 fractional digits, so I need to 3 digits to the left and 6 digits to the right of the decimal point.

    In the XSD data type restrictions, which would give me a 'fractionDigits' and a 'totalDigits' 9 6.

    Oracle must convert this number (9, 6).

    However, what Oracle made out that is a NUMBER (15.6)

    In order to get an Oracle to generate a NUMBER (9, 6), I need to qualify the 'totalDigits' 3, which is accepted by Oracle, but makes my schema invalid for virtually any other application XML, because it violates the official specs of XSD:

    http://www.w3.org/TR/xmlschema-2/#RF-fractionDigits:

    4.3.12.4 constraints on fractionDigits components of schema

    Schema component constraint: fractionDigits less than or equal to totalDigits

    It is an error for fractionDigits is greater than totalDigits.

    Is it possible to have the good totalDigits of 9 in my scheme and force the Oracle to translate that into NUMBER (9,6)?

    Maybe some attribute oraxdb I do not know yet?

    I'm surprised that this has not been found earlier.

    There was an announcement about this before, but he did not get the real answers:

    TotalDigits and fractionDigits to number conversion problem

    Here is my complete code example:

    -- Registering the schema
    BEGIN
    DBMS_XMLSCHEMA.REGISTERSCHEMA(
    'http://localhost/decimaltest.xsd',
    '<?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" xmlns:oraxdb="http://xmlns.oracle.com/xdb" oraxdb:storeVarrayAsTable="true" oraxdb:schemaURL="http://localhost/decimaltest.xsd">
      <xs:element name="dataTypeTests" oraxdb:SQLName="ZZZ_DATA_TYPE_TEST" oraxdb:SQLType="ZZZ_DATA_TYPE_TEST_TYPE" oraxdb:defaultTable="" oraxdb:tableProps="TABLESPACE CATALOG NOLOGGING" oraxdb:maintainDOM="false">
      <xs:complexType>
      <xs:sequence>
      <xs:element name="geoCode" type="geoCodeType" oraxdb:SQLName="GEO_CODE" oraxdb:maintainDOM="false"/>
      </xs:sequence>
      </xs:complexType>
      </xs:element>
      <xs:simpleType name="geoCodeType">
      <xs:restriction base="xs:decimal">
      <xs:totalDigits value="9"/>
      <xs:fractionDigits value="6"/>
      </xs:restriction>
      </xs:simpleType>
    </xs:schema>',
    gentables=>FALSE);
    end;
    /
      
      
    -- Display the auto-generated Oracle custom type
    describe ZZZ_DATA_TYPE_TEST_TYPE;
      
    -- Clean up
      
    begin
      DBMS_XMLSCHEMA.DELETESCHEMA(
      'http://localhost/decimaltest.xsd',
      DBMS_XMLSCHEMA.DELETE_CASCADE
      );
    end;
    /
    

    In the XSD data type restrictions, which would give me a 'fractionDigits' and a 'totalDigits' 9 6.

    Oracle must convert this number (9, 6).

    And that's where you're wrong.

    fractionDigits = 6 means at least 6 digits located to the right of the decimal point.

    This is different from the semantics of NUMBER (m, n), where n is exactly n fractional digits stored.

    123.456789 is a valid number by the XSD.

    123456789 is as valid a number, but of course it does not fit in a NUMBER (9.6).

    Oracle must create a NUMBER (15.6) to store any number of valid schema, it is a necessary condition.

    But this is not a sufficient condition: obviously, any number in a NUMBER (15.6) is not valid per the XSD, and this is where the schema validation occurs to enforce the constraints of two facets.

    Here are some examples:

    BEGIN

    DBMS_XMLSCHEMA. REGISTERSCHEMA)

    schemaURL-online "decimaltest.xsd."

    schemaDoc =>

    '

    http://www.w3.org/2001/XMLSchema"elementFormDefault ="qualified"xmlns:oraxdb ="http://xmlns.oracle.com/xdb"oraxdb:storeVarrayAsTable ="true"oraxdb:schemaURL ="http://localhost/decimaltest.xsd">" "

    '

    genTypes-online true

    genTables-online fake

    enableHierarchy-online dbms_xmlschema. ENABLE_HIERARCHY_NONE

    );

    end;

    /

    SQL > declare

    doc 2 xmltype: = xmltype)

    3'123456789"

    .createSchemaBasedXML('decimaltest.xsd') 4);

    5. start

    6 doc.schemaValidate ();

    7 end;

    8.

    PL/SQL procedure successfully completed.

    SQL > declare

    doc 2 xmltype: = xmltype)

    3'123456789.1'

    .createSchemaBasedXML('decimaltest.xsd') 4);

    5. start

    6 doc.schemaValidate ();

    7 end;

    8.

    declare

    *

    ERROR on line 1:

    ORA-31154: invalid XML document

    ORA-19202: an error has occurred in the processing of XML

    LSX-00215: value '123456789.1' whose total numbers exceed 9

    ORA-06512: at "SYS." XMLTYPE", line 354

    ORA-06512: at line 6

    SQL > declare

    doc 2 xmltype: = xmltype)

    3'12.3456789'

    .createSchemaBasedXML('decimaltest.xsd') 4);

    5. start

    6 doc.schemaValidate ();

    7 end;

    8.

    declare

    *

    ERROR on line 1:

    ORA-31154: invalid XML document

    ORA-19202: an error has occurred in the processing of XML

    LSX-00211: "12.3456789", including the fractional numbers exceeds 6

    ORA-06512: at "SYS." XMLTYPE", line 354

    ORA-06512: at line 6

  • Bugs in Google Maps

    Hello

    A few days ago, I inserted a Google Maps into my file Adobe Muse. When I open the preview of the Web site, no errors appear.

    Since this morning, the widget appear with gray lines alternating with the card.

    It is written on the gray lines: sorry we don't have any images here.

    Why this bug appears now what that means?

    Thank you

    Jennifer

    Hello

    The problem appears in Adobe Muse, for now that the site is not ready to be published, so I can't give you the URL.

    But for some unknown reason, the error disappears.

    Thank you

    Jennifer

  • Bug report: DW CS5.5 hangs every time on an Image Map

    I write this instead of contact Adobe support. I went to my account to send a bug report to Adobe and I was told that I had to contact support by phone. It's pretty crappy. As an authorized user who owned less than three months, there is no direct way to tell you that your software is broken?

    Here's the deal: I'm working on a landing page HTML with a single card attached to a picture frame. Literally, every time I make a change to the code near the (linked to the image map) image then click in the window of live preview, Dreamweaver CS5.5 accidents as a 70 on a bar of SOAP on the floor of the shower. It crashes hard. My only relief is to save the file before clicking in the live preview window. It's my only solution to the problem.

    But I am amazed left that I can plant it each time on a map, flicking the code on the preview pane. We could think about version 11.5, a minor thing like it wouldn't form the supposed cream the cream of web design software.

    Here's the code I'm editing that requires him to plant:

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    <? PHP

    require_once("/var/www/html/c/index.php");

    $recip_name = $subscriber ["FirstName"].' «. $subscriber ['last_name'];

    ? >

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    "< link href="/c/print.css "type =" text/css"rel ="stylesheet"media ="print">

    Special subscription - commitment No. < title > < /title >

    < / head >

    <? PHP / / link Google Tracking Code? >

    < script type = "text/javascript" src='/c/google-analytics-code.js "> < / script >

    <? PHP / / end link of Google Tracking Code? >

    <! - source file - >

    " < link rel ="stylesheet"type =" text/css"href =" http://YUI.yahooapis.com/2.9.0/build/reset/Reset-min.CSS ">

    < style type = "text/css" >

    Body {14px police: normal / 1.25em Georgia, "Times New Roman", Times, serif ;}}

    H1, h2, h3, h4, h5, h6 {make-weight: bold; color: #333333 ;}}

    H1 {make: normal 28px / 1.5em "Trebuchet MS", Arial, Helvetica, sans-serif ;}}

    H2 {make: normal 24 PX / 1.5em "Trebuchet MS", Arial, Helvetica, sans-serif ;}}

    H3 {make: normal 20px / 1.5em "Trebuchet MS", Arial, Helvetica, sans-serif ;}}

    H4 {make: normal 16px / 1.5em "Trebuchet MS", Arial, Helvetica, sans-serif ;}}

    H5 {make: normal 12px / 1.5em "Trebuchet MS", Arial, Helvetica, sans-serif ;}}

    H6 {make: normal 8px / 1.5em "Trebuchet MS", Arial, Helvetica, sans-serif ;}}

    a, a: link, a: visited, a: active {color: #0055FF ;}}

    a: hover {color: #002AFF ;}}

    #wrapper {auto margin: 0; width: 432px ;}}

    #header, #footer {margin: 20px auto; text-align: center; position: relative ;}}

    #footer {margin: 40px auto ;}}

    #coupon {position: relative ;}}

    #coupon, #coupon img {margin: 0 auto; text-align: center ;}}

    . Personalization {position: absolute; width: 100%; text-align: center; text-transform: uppercase ;}}

    .printcoupon {text-transform: uppercase ;}}

    < / style >

    < body >

    < div id = 'wrapper' >

    < div id = "header" >

    < h3 class = "printcoupon" > < a href = "javascript:window.print();" ' > click here to print your coupon < /a > < / h3 >

    < / div >

    < div id = "coupon" >

    < img src = "images/19415coupon - 01.jpg" width = "432" height = "432" / > <!-< div class = "personalization" style = "left: 0;" top: 818px; "> < h1 > <? PHP echo $recip_name;? > < / h1 > < / div >-->

    < img src = "images/19357coupon - 02.jpg" width = "550" height = "602" well = "#imagemap" class = "dontprint" / >

    < / div >

    < div id = "footer" >

    < h3 class = "printcoupon" > < a href = "javascript:window.print();" ' > click here to print your coupon < /a > < / h3 >

    < / div >

    < / div >

    < map name = "imagemap" >

    < area coords = "29,69,521,197" shape = "rect" href = "javascript:window.print();" ">

    " < area coords = shape ="rect"href =" 29,212,521,339"' http://www.Google.com "target ="_blank"onClick =" recordOutboundLink (this,' Home Page ','http://www.google.com'); return false; » >

    < / map >

    < / body >

    < / html >

    Bug and Feature Request https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform report

  • HP Envy x 360 15-aq000nb QWERTY: azerty keyboard driver bug for <>------generating ctrl instead of mapping

    "Nine" HP Envy x 360 with Belgian azerty keyboard

    2 right of the space bar, marked as <>key positions-generates these values, but generates the code for the CTRL key instead.

    This may be a virus or other problem, because it is a new system "comes out of the box". I really suspect of a "Bug" here to test available for this particular model azerty

    The keyboard driver is standard supplied with the operating system of microsoft, called "Belgian Azerty comma.

    The operating system is on the last patch level

    HP drivers are on the last patch level

    I guess it must be declared as 'a problem' and not an 'incident '.

    See you soon,.

    Stefan

    An update on this:

    The keyboard permanently sends the keyvalue 'CTRL RIGHT'. I wouldn't not because in the majority of keyboard layouts, the button to the right of the "ALT GR" is indeed the RIGHT CTRL. But not on this Belgian AZERTY keyboard. He the key on this post is marked > <------(you access the backslash pressing alt gr with the key, you access the > organizing the passage)

    So I guess it's a problem of HP and a defect of product in a lot of these PC.

    I used after derivation of the to solve for me (but I guess there is still a bug for HP):

    Using the free software SharpKeys. http://SharpKeys.codeplex.com/
    I remapped in the registry (E0_1D) right CTRL key 0 x 0056 (00_56)

    This solved it for me.

    Hope that HP takes knowledge to check if there is a production fault in this batch of HP envy

    See you soon,.

    Stefan

  • problem or bug with blackberry.system.hasPermission ('location.maps')

    Hey all.  Can someone help me understand why this feature (see code below) does not work as it should?

    Copy the following code returns false on my 9900... Even if the card is activated (I have the icon on my home screen) and applications like foursquare and Poynt can use / make calls to BB Maps.  I can even call BBMaps within my own app if I ignore the result of this function

    function checkIfBBMaps(){
    
        var rslt = blackberry.system.hasPermission('location.maps'); 
    
        console.error("checkIfBBMaps:  rslt is:"+ rslt);
    
        if(rslt === true){
            return true;
        } else {
            console.error("checkIfBBMaps:  WE DONT HAVE MAPS");
            return false;
        }
    
    }
    

    Thoughts?

    I'm a * beep *!

    hasPermission()! = hasCapability().

    Oh wow.

    Time for me to get more coffee, I think!

    Edit: really?  the word'd i t i 0' is censored!  Wow.

  • With regard to the bug in Blackberry Maps

    Hello

    Does anyone know how to change the color of Push-Pin in Blackberry Maps.

    Regarding

    Surfaces Sharma

    Use MapField and draw your own PIN.

    See MapFieldDemo in the distribution of JDE 4.7.

  • US map 48 series Bug Workaround?

    If someone met the following and is there a solution?

    XE Windows 10.0.2 APEX 4.0.2.007

    Scenario (this map has functioned well in 4.0 before the upgrade):

    USA/Country/states_48.AMAP with 3 series. The map will not display. Remove the third series and the map will then show. It doesn't seem to work for nothing past two series queries.

    Help, anyone? Thank you.

    Hi Scott,.

    Please provide details of your workspace. I took a glance at the map, and as I thought after reading your "+ it is a problem only when my results for the 3rd series exceeds 15 lines. +"comment, I checked"Lines Maximum"setting on the page of the series in the chart for this third series, and it was fixed at 15. So I changed that to 50 now and also removed +' and rated as "new %" + the query to retrieve all the 29 lines of this request. " The map shows all points correctly now.

    Kind regards
    Hilary

Maybe you are looking for