Move the contacts in the segment directly to shared list - E10 filter

E9, it is easy to run a contact filter, view contacts, then move them to a contact group.  I don't see a feature like this in E10.  E10, when I run a filter in a segment, I see no way of moving these contacts directly to a list that is shared without the tedious process to export contacts and the re-import a list shared.  Is there no easier way to do this in E10?  Not sure if I'm missing something.

Thank you

Vince

Hi vford. You can create a shared list of a filter by flattening.

If you click on the gear icon while your filter is selected you will have the possibility of flattening. This will create the list. You then have the option to share the list and this will create the shared list.

Hope that helps.

Tags: Marketers

Similar Questions

  • MOVE THE SEGMENT

    Hello

    We have a tool that move segments of tablespaces to rearrange space (no need to expdp/impdp). This tool works very well as long as the tablespaces have the same block size.

    If we move the segment between 2 tablespaces with different block size, the ORA-14520 error is raised.

    We have not found this restriction in the Oracle (http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_3001.htm#i2126284) documentation

    Does anyone know if this is possible?

    See the documentation for the partitioned objects and restrictions relating to multiple block sizes.

    http://www.Oracle.com/pls/db102/print_hit_summary?SEARCH_STRING=partitioning+restrictions+for+multiple+block+sizes

    Concerning
    Jonathan Lewis

  • move the lob segment fails with invalid identifier

    Why this fails:

    SQL > desc APPLSYS. WF_INBOUND_TABLE
    Name Null? Type
    ----------------------------------------- -------- ----------------------------
    Q_NAME VARCHAR2 (30)
    MSGID NOT NULL RAW (16)
    CORRID'ART VARCHAR2 (128)
    PRIORITY NUMBER
    NUMBER OF THE STATE
    TIMESTAMP DELAY (6)
    NUMBER OF EXPIRY
    TIME_MANAGER_INFO TIMESTAMP (6)
    NUMBER OF LOCAL_ORDER_NO
    NUMBER OF CHAIN_NO
    NUMBER OF THE CSCN
    DSCN NUMBER
    ENQ_TIME TIMESTAMP (6)
    NUMBER OF ENQ_UID
    ENQ_TID VARCHAR2 (30)
    DEQ_TIME TIMESTAMP (6)
    NUMBER OF DEQ_UID
    DEQ_TID VARCHAR2 (30)
    NUMBER OF RETRY_COUNT
    EXCEPTION_QSCHEMA VARCHAR2 (30)
    EXCEPTION_QUEUE VARCHAR2 (30)
    NUMBER OF STEP_NO
    NUMBER OF RECIPIENT_KEY
    DEQUEUE_MSGID RAW (16)
    USER_DATA SYSTEM. WF_PAYLOAD_T
    SENDER_NAME VARCHAR2 (30)
    SENDER_ADDRESS VARCHAR2 (1024)
    NUMBER OF SENDER_PROTOCOL
    ANYDATA USER_PROP


    SQL > alter table APPLSYS. WF_INBOUND_TABLE move TABLESPACE APPS_TS_TX_DATA;

    Modified table.

    SQL > ALTER TABLE APPLSYS. WF_INBOUND_TABLE MOVE LOB (USER_PROP) STORE DID (TABLESPACE APPS_TS_TX_DATA);
    *
    ERROR on line 1:
    ORA-00904: "USER_PROP": invalid identifier

    user600570 wrote:
    Well, no matter what the type is be, how to move to this segment?

    The segment does not move when the corresponding table is moved to new tablespace?
    At least that's what I see.

    SQL> select * from v$version ;
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    CORE     10.2.0.4.0     Production
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    
    SQL> create table t nologging as select * from applsys.wf_inbound_table where 1 = 2 ;
    
    Table created.
    
    SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;
    
    DBMS_METADATA.GET_DDL('TABLE','T')
    --------------------------------------------------------------------------------
    
      CREATE TABLE "APPS"."T"
       (     "Q_NAME" VARCHAR2(30),
         "MSGID" RAW(16),
         "CORRID" VARCHAR2(128),
         "PRIORITY" NUMBER,
         "STATE" NUMBER,
         "DELAY" TIMESTAMP (6),
         "EXPIRATION" NUMBER,
         "TIME_MANAGER_INFO" TIMESTAMP (6),
         "LOCAL_ORDER_NO" NUMBER,
         "CHAIN_NO" NUMBER,
         "CSCN" NUMBER,
         "DSCN" NUMBER,
         "ENQ_TIME" TIMESTAMP (6),
         "ENQ_UID" NUMBER,
         "ENQ_TID" VARCHAR2(30),
         "DEQ_TIME" TIMESTAMP (6),
         "DEQ_UID" NUMBER,
         "DEQ_TID" VARCHAR2(30),
         "RETRY_COUNT" NUMBER,
         "EXCEPTION_QSCHEMA" VARCHAR2(30),
         "EXCEPTION_QUEUE" VARCHAR2(30),
         "STEP_NO" NUMBER,
         "RECIPIENT_KEY" NUMBER,
         "DEQUEUE_MSGID" RAW(16),
         "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
         "SENDER_NAME" VARCHAR2(30),
         "SENDER_ADDRESS" VARCHAR2(1024),
         "SENDER_PROTOCOL" NUMBER,
         "USER_PROP" "SYS"."ANYDATA"
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "APPLSYSD"
     OPAQUE TYPE "USER_PROP" STORE AS LOB (
      ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
      CACHE
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))
    
    SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
      2  where table_name = 'T' ;
    
    OWNER                          TABLE_NAME
    ------------------------------ ------------------------------
    COLUMN_NAME
    -----------------------------------------------------------------------------------------------------------------------------------
    SEGMENT_NAME                   TABLESPACE_NAME
    ------------------------------ ------------------------------
    APPS                           T
    USER_PROP
    SYS_LOB0000365381C00035$$      APPLSYSD
    
    SQL> alter table t move tablespace APPLSYSX ;
    
    Table altered.
    
    SQL> select dbms_metadata.get_ddl('TABLE','T') from dual ;
    
    DBMS_METADATA.GET_DDL('TABLE','T')
    --------------------------------------------------------------------------------
    
      CREATE TABLE "APPS"."T"
       (     "Q_NAME" VARCHAR2(30),
         "MSGID" RAW(16),
         "CORRID" VARCHAR2(128),
         "PRIORITY" NUMBER,
         "STATE" NUMBER,
         "DELAY" TIMESTAMP (6),
         "EXPIRATION" NUMBER,
         "TIME_MANAGER_INFO" TIMESTAMP (6),
         "LOCAL_ORDER_NO" NUMBER,
         "CHAIN_NO" NUMBER,
         "CSCN" NUMBER,
         "DSCN" NUMBER,
         "ENQ_TIME" TIMESTAMP (6),
         "ENQ_UID" NUMBER,
         "ENQ_TID" VARCHAR2(30),
         "DEQ_TIME" TIMESTAMP (6),
         "DEQ_UID" NUMBER,
         "DEQ_TID" VARCHAR2(30),
         "RETRY_COUNT" NUMBER,
         "EXCEPTION_QSCHEMA" VARCHAR2(30),
         "EXCEPTION_QUEUE" VARCHAR2(30),
         "STEP_NO" NUMBER,
         "RECIPIENT_KEY" NUMBER,
         "DEQUEUE_MSGID" RAW(16),
         "USER_DATA" "SYSTEM"."WF_PAYLOAD_T" ,
         "SENDER_NAME" VARCHAR2(30),
         "SENDER_ADDRESS" VARCHAR2(1024),
         "SENDER_PROTOCOL" NUMBER,
         "USER_PROP" "SYS"."ANYDATA"
       ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS NOLOGGING
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
      TABLESPACE "APPLSYSX"
     OPAQUE TYPE "USER_PROP" STORE AS LOB (
      ENABLE STORAGE IN ROW CHUNK 8192 PCTVERSION 10
      CACHE
      STORAGE(INITIAL 40960 NEXT 40960 MINEXTENTS 1 MAXEXTENTS 505
      PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))
    
    SQL> select owner, table_name, column_name, segment_name, tablespace_name from dba_lobs
      2  where table_name = 'T' ;
    
    OWNER                          TABLE_NAME
    ------------------------------ ------------------------------
    COLUMN_NAME
    -----------------------------------------------------------------------------------------------------------------------------------
    SEGMENT_NAME                   TABLESPACE_NAME
    ------------------------------ ------------------------------
    APPS                           T
    USER_PROP
    SYS_LOB0000365381C00035$$      APPLSYSX
    
    SQL> drop table t purge ;
    
    Table dropped.
    

    If you want to be able to move the segment to a different tablespace to the table, I guess that's not possible. Oracle only allows LOB to be stored in a separate tablespace as the corresponding table provided that they are defined as the LOBs explicitly during the creation of the table, unlike the LOB created by oracle internally because of the column datatype being ANYDATA as in this case.

  • Flattening of the Segments

    Can someone explain the features in segments of flattening, fusion and which intersect. Or a point in the right direction of the documentation? The PDF out Eloquas Knowledgebase segment did not specify the meanings and features.

    Hi Robert,.

    Here is a general breakdown of the terms that you have identified for clarification:

    Flatten - converts the Segment criteria in a list (Contact)

    Fusion - combines multiple segment criteria in a single list (Contact)

    Intersection - similar to a ven diagram, where he creates a list of members that meet various criteria selected (using CTRL)

    Please let me know if you need additional information.

    Thank you

    ~ Ali

  • My mouse pointer moves in the opposite direction, I intend when I use the touchpad on my laptop. It works fine when I use my docking station and external mouse. How can I fix it?

    I'm using Windows Vista with a Sony Vaio laptop.  At the office, I have a docking station with keyboard and external mouse.  Everything works fine with this Setup.  But when I unplug the docking station and use the touchpad on the laptop, my mouse pointer moves in the opposite direction, that is my intention.  I move my finger and the pointer down.  I move to the right and the pointer goes left.  How can I fix?

    Go to start /Control Panel, and then double-click the icon '' mouse. '' When this window opens, select the tab "Touch Pad" at the top. There's a box near the bottom called "Touch sensitivity", click on that. Change the settings a little bit lower than what they are currently at.

  • How can I move my contacts from "Windows Mail" app list in Vista to Windows Live Hotmail online? I can't find the Contacts file to download.

    How can I move my contacts from "Windows Mail" app list in Vista to Windows Live Hotmail online? I can't find the Contacts file to download. Why is it so difficult?

    Hi JohnKoelling,

    When you use Windows Live Hotmail and the question you have posted is related to Windows Live, so it would be better suited in the Windows Live community. Please visit the link below to find a community that will provide the best support.

    Windows Live Solution Center Hotmail Portal

    http://windowslivehelp.com/product.aspx?ProductID=1

     

    I hope this helps.

  • The cursor moves in the opposite direction

    Original title: "slider issue"

    about 40% of the time after the start of my laptop, the cursor moves in the opposite direction. If I restart, it usually solves the problem, but sometimes I have to restart 2-3 times... I only use the touchpad and doesn't it have never get tired with a mouse... ideas?

    Cheers, fileeep!

    Tell me everything said on adapter #3 and adapter #6 - What are they, what error messages they say exactly?  These devices work, or if you have problems with them (one of them is the mouse)?  Error 31 means he cannot load device drivers which means that there is something wrong with the drivers or the device is not compatible with this version of Vista or another component on your system (very hard to tell from a distance).  You should always download and install the new drivers, firmware and for two devices having problems (not just drivers - it may be more necessary) just to be sure, that you are not corrupt.  We need to solve the problems with these devices, because I suspect that it is at the origin of this problem.

    If this does not work, we will need to make a complete diagnosis of the entire system.

    Good luck!

    P.S. Please do the test with the mouse - that will tell us a lot.

    Lorien - MCSA/MCSE/network + / has + - if this post solves your problem, please click the 'Mark as answer' or 'Useful' button at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How to make something move in the opposite direction of the mouse moves?

    Hello dear community.

    I saw on Sarif Industries some cool background animations. Especially the background animation where everyting moves in the opposite direction of the mouse moves.

    So I didn't try to do this kind of animation too. But I don't know how I can do this and I don't know what they call this kind of animation.

    I can't have the code but I do not understand programming languages.

    * For anyone who does not want to go to the linked website *.

    As has said that everything is moving in the opposite direction the mouse moves, but it seems that objects move in a given area and the objects are moving more slowly as the mouse moves.

    I thank in advance and have a nice day

    stage.addEventListener (onMouseMove, MouseEvent.MOUSE_MOVE);

    private void onMouseMove($e:MouseEvent):void

    {

    _myBG.x = - stage.mouseX;

    _myBG.y = - stage.mouseY;

    }

    You have everything you need in there.

    Just twist the operations to achieve the desired effect...

    Add "* 0.5" to make it move more slowly for example.

  • arrows move the object in opposite directions - default type in vertical orientation

    Hi Illustrator community.

    Two questions were really annoys me and so far I've been unable to find a solution:

    On my Macbook Pro 13, 2012 ", in this version of Illustrator CC (not a problem for other products CC), the arrows are somehow put out: using the left/right arrows moves objects vertically, and using up/down arrow keys moves objects to the left and right." Even if I tried to get used to it, it's really slow me down I checked the preferences and keyboard shortcuts, and unless I'm missing something, there seems to be a setting for this?

    Also when using the standard tool (not the vertical type tool), initially type is placed rotate 90 degrees counterclockwise, and after that I flip back to a horizontal position, I can move and edit fine. Any suggestions?

    Thanks in advance,

    Mark

    Mark,

    Edit > preferences > General > constrain Angle should be 0 degrees.

    If this is the case, Illy may think, it is not, and then she made a mess of things (and perhaps other things, too). In this case, it may be time for the list below.

    Unless you subscribe to the vertical version.

    The list:

    Sometimes, (some) things may fail or stop working for no apparent reason. When (other) possible reasons/remedies do not work, it is perhaps a kind corruption (temporary or permanent), or even preference settings which disturbs, which can be cured with something on the following list put in place in order to provide a catch-all solution for otherwise intractable cases. It starts with a few easy suggestions and safe) 1 and 2) for cases less serious and goes two ways 3) and 4) to reset the default preferences (easily but irreversibly and more laboriously but more completely and also reversible), then follows a list 5) various other possibilities, and it ends with a complete reinstallation 6). If no other suggestion doesn't work, or if no other suggestion appears, you can start on the list and decide how to go or who can apply.

    The following is a general list of things, try when

    (A) the question is not in a specific file,

    (B) you have a printer installed, connected and turned on if it's a physical printer (you can use Adobe PDF/Acrobat Distiller as a printer by default without the need to have a printer on, of course you will need to specify when you really need print on paper), and

    (C) It is not caused by problems with opening a file from external media (see below).

    You tried/made some of them already; 1 and 2) are easier for temporary strangenesses and 3) and 4) specifically may be corrupted/inconvenient preferences); ((5) is a list in itself and 6) is the last resort.

    If possible / there is, you must record a current work first, of course.

    (1) close Illy and open again.

    (2) restart the computer (you can make up at least 5 times);

    (3) close Illy and press Ctrl + Alt + Shift / Cmd + Option + shift during startup (easy, but irreversible);

    4) move the folder (follow the link with this name) with closed Illy (more tedious but also more thorough and reversible), for CS3 - CC you can find the file here:

    https://helpx.Adobe.com/Illustrator/KB/preference-file-location-Illustrator.html

    5 look through and try the relevant among the other options (click on the link with that name, item 7) is a list of the usual suspects among other applications which can disturb and confuse Illy, point 15) applies to the maybe CS5, CS6 and CC);

    Even worse, you can:

    6 (A) uninstall (check the box to delete the preferences, if any), B) run the cleanup tool (if you have CS3/CS4/CS5/CS6/CC) and C) reinstall. It is important to use this step three way: otherwise, things may persist.

    http://www.Adobe.com/support/contact/cscleanertool.html

  • I have problems, adding comments using Adobe reader DC on my pro 3 surface. I can select the circle for example, but when I try to draw the circle nothing happens and the screen just scrolls in the direction I move the pointer?

    I have problems, adding comments using Adobe reader DC on my pro 3 surface. I can select the circle for example, but when I try to draw the circle nothing happens and the screen just scrolls in the direction I move the pointer?

    Hey paulc6148125,

    Please try the mode settings different button in Adobe Acrobat Reader DC-> leModifiermenu-> preferences-> general categories.

    Kind regards

    Nicos

  • Noob question: move a layer in the opposite direction of another layer animation

    So say I have an icon that I animate on the axis y + 40px, but instead try to back key the other layer each time, is there an expression that I can write to have the other layer move in the opposite direction of the Y the same quantity of units (ex:-40px)?

    Thank you!

    We must define what traffic there is relative to. For example, if you want a layer of mirror movement are another layer from the first image, you could do it like this:

    p = thisComp.layer("leader").transform.position;

    value + [0, p.valueAtTime (0) [1] - p [1]]

    If you want to mirror around a value of y specific reference, it would be like this:

    yRef = 540;

    p = thisComp.layer("leader").transform.position;

    value + [0, yRef - p [1]]

    There are other variations/interpretations - depends on what you are looking for exactly.

    Dan

  • Move the handles of direction in synchronization with the anchor point?

    Hi all

    I'm trying to move the anchor points on a random object (to get an informal aspect). (I know that some effects that already.)

    Maintenance of corner points is no problem - you just put the handles of direction to the same coordinates as their anchor.

    But I can't move an inflection point in the way I want it, which is to move the anchor point, but maintain the direction handles in exactly the same relation to their anchor as they did before. That is to say, they should remain smooth points.

    My script calculates the difference between the 'before' and 'after' the position of the anchor and applies this difference for the handles of direction... but in practice, the smooth points are converted at the corners, because the direction handles does not maintain their relationship with the anchor point.

    Would appreciate if someone can point out the flaw (s!) in my logic.

    var docRef = activeDocument;

    var activeDocument.selection.length = objects;

    var prompt = cShift ("Point change (pt)", 5 ");

    loop through all objects

    for (var count = 0; count < objects; count ++)

    {

    currentObj = activeDocument.selection [count];

    Nudge (currentObj);

    }

    function Wizz each object

    function nudge (obj)

    {

    var objPoints = obj.selectedPathPoints;

    var objPointCount = objPoints.length;

    for (var i = 0; i < objPointCount; i ++) {}

    var thisPoint = objPoints [i];

    var go = thisPoint.anchor [0];

    var vb = thisPoint.anchor [1];

    var = thisPoint.leftDirection [0];

    var lb = thisPoint.leftDirection [1];

    RA var = thisPoint.rightDirection [0];

    var rb = thisPoint.rightDirection [1];

    If (goes == the & & will == ra & & vb == lbs & & vb == rb)

    {/ / If the point corner, alternate the position of anchor}

    go = go + ((Math.random () * cShift));

    VB = vb + ((Math.random () * cShift));

    thisPoint.anchor = Array (va, vb);

    handles direction all at the same position, now a corner point

    thisPoint.leftDirection = Array (va, vb);

    thisPoint.rightDirection = Array (va, vb);

    }

    on the other

    {/ / not a corner point: keep handles in the same position relative to their offbeat anchor}

    var = va2 will + ((Math.random () * cShift));

    vB2 var = vb + ((Math.random () * cShift));

    thisPoint.anchor = Array (va2, vb2);

    This bit calculates random offset applied to the anchor

    var anchorShifta = va2 - going;

    var anchorShiftb = vb2 - vb;

    These lines apply the same quarters for direction handles

    thisPoint.leftDirection [0] = la + anchorShifta;

    thisPoint.leftDirection [1] = lb + anchorShiftb;

    thisPoint.rightDirection [0] = ra + anchorShifta;

    thisPoint.rightDirection [1] = BO + anchorShiftb;

    }}}

    Modification of the other part:

    else
    { // not a corner point: keep handles in same relative position to their shifted anchor
        var aShift = Math.random()*cShift;
        var bShift = Math.random()*cShift;
        thisPoint.anchor = [va  + aShift, vb + bShift];
        thisPoint.leftDirection = [la + aShift, lb + bShift];
        thisPoint.rightDirection = [ra + aShift, rb + bShift];
    }
    
  • 1 a few pictures of the movie playing in the wrong direction?

    I have an object (a logo) on a scenario that should do the trick a circle counterclockwise. I want to move the start position of the first image, but when I do that and test it, he started playing in a clockwise direction, then at the next keyframe stops and plays in the right direction. How to move the starting frame without causing this to happen? I have been dragging along the timeline and a fall, is that correct?

    Received with gratitude and customer support in all its States who want this finished!

    Thank you.

    TIG

    Do not know what is happening, but you may need to create a keyframe to halfway between the first and the second. Flash moves an object, the shortest possible distance. Another solution is to remove the motion tween, move the first image where you want, and then do the interpolation. If I don't understand it, please try to explain better what is happening. See also, moving on a course guide...

  • Related custom object records the Segment export view

    Hello

    I have records history of purchases in Eloqua-specific custom objects.

    These records are related to contacts.

    When I create a segment, I have the ability to filter the contacts based on the data stored on these custom objects.

    I want to export all the records in the custom objects related to all the contacts in the segment view, I can do?

    Hi Ofir,

    There is no way to do it directly from Eloqua. Segments will allow you only to view Contact data, and there is no equivalent way to custom segment object stores the data. To generate this list, you will need to export all history of purchase of your custom object records and then cross the two lists to identify records of custom object related to the Contacts in your industry to export all the contacts from your Segment view.

  • Tablet draws a leak out of the screen directly to the left, whenever I have down Flash CC

    My TS-6608 Turcom / Oh P608N Tablet (people say that they are the same model and I tried both the original driver P608N installation and driver installation Turcom TS-6608 slightly modified for Windows 10 Turcomdrivers)

    draws a line from leaking out of the screen directly to the left whenever I have support with my pen pressure instead of my way of drawing. In Adobe Photoshop CC, it works perfectly fine. Why is this happening and how can I solve this problem?

    A line for every time I press. It is the only blue because that's the color of pen, I had chosen. This happens with the pencil tool and the Brush tool. I happen to run two monitors. Flash is open on the right monitor but I tried to swap around, drop down to a monitor, and it doesn't seem to change. I don't know if this is specific to my tablet or a problem with the program.

    LeftLineInFlash-HuionP608NTablet.png

    It seems that there is a split second after the contact where it does not read my travels before putting in the left straight down.

    2015-08-26 20_38_56-Untitled-2 (Canvas)_.png

    2015-08-26 20_43_05-New notification.png

    In Flash CS6, there seems to be a similar problem. When I press down, the first point shows but it stops to record the pressure down almost instantly even if I continue upward with the pen pressure. He holds the State pressed down but is not to follow the movement. With my mouse, I can then move around to draw the path, but it is not picking up the pen.

    2015-08-26 21_11_19-Untitled-1_.png

    Post edited by: Christopher Navarre

    Post edited by: Christopher Navarre 11:14 August 26, 2015

    In Flash CS3, it goes the same way as Flash CS5.5 where appears a point, it will not save the press which took place or release of the pen tip. If I move the mouse after pressing the pen, I can drag it around the same way. The problem seems to be that flash is not just reading presses pen continues but I don't know how to fix it. In other programs, it seems to work very well (Paint, Photoshop, etc.)

    Another thing I discovered is that if I have another program that is not selected in the active window flash but try to draw in flash using the Brush tool and then he reacts appropriately, but the second I drop the brush stroke and let Flash CC 2015 be the active window again it does not recognize my movements.

    I think it might be a simple driver issue.

    ANSWER:

    There seems to be a bug in the driver Turcom code. If you disconnect a monitor then you can normally draw in flash. What happens with two monitors, it's that the pen cursor position instantly repositioned correctly when you press down. Because I was drawing on my right monitor, it tended to be left (maybe because thought Flash that I worked on monitor 1 or something).

    I have an e-ticket with Turcom as a permanent solution, but for now, simply using a monitor works fine.

Maybe you are looking for