Inconsistent behaviour of PSEvent.MOVE

I'm having trouble understanding/handling Photoshop's 'move' event. I'm trying to track a shape movement but the event is only being triggered once after another action - for example when I drag the shape around, the event is fired on the first drop, every later attempt to drag and drop the shape again does not do anything but when I move another shape and then try to move the first shape again, the event is fired.
I have also confirmed this with the ScriptingListener plugin on both the CS6 and CC versions.
Can anyone explain?
I this an expected behavior and if so, is there another way to track the shape movement?
Thanks

Hi all,
I am having the same problem.
How does 'move' event behave? when is it triggered and by whom?
I see very little documentation for it and testing with ScriptListener-
1) Adding a shape triggers a make event.
2) Then moving it around triggers nothing.
3) Until you move a guide (or another shape), which then triggers a move event on the original shape that moved (!?)
Really strange?
Am I missing something?
Doesnt each object trigger its own move event each time they are moved?
Don't guides and other object also trigger move events?
They also dont seem to trigger remove event vtw
Can someone help I really need this?
Thanks

Similar Messages

  • ECC 6.0 VERSION UPGRADE - INCONSISTENCY BEHAVIOUR -MM - Reg

    Hai,
    We are in the process of ECC 6.O upgrade from ECC 5.0,
    we started the CT1/ CT2 testing and found the following error.
    While inwarding Material against Subcontracting purchase order / S.L.Agreement ,
    The system shows the error message of CHALLEN MATERIAL IS DIFFRENT FROM MATERIAL DOCUMENT , during GR
    note :- for the same material , same p.o , some times systems allows for GR & some times gives above error message.
    if i try with some other login , the behaviourseems to be same as my login
    Can anyone tell this why this inconsistency behaviour of system during GR for sub contracting item..
    Regards,
    Suresh.P

    go to SE38,  here type the program RM07CUFA,
    click on execute... type ur mov type 541... here make the purchase order field from display to optional..
               this will effected for new subcontracting scenerio....

  • Inconsistent Behaviour on executing Xquery on the container....

    I need some of the suggestions on the following BDB issue. Here I written the code to create the container, load the .xml file in to it with doc_id and opens the allready existing container. Here I am seeing inconsistent behaviour.
    Following are the Steps I followed...
    1. Created DbEnv class object .
    2. Opened the DbEnv using open methode with flags "DB_CREATE | DB_INIT_MPOOL".
    3. Created XmlManager class object with the flags "DBXML_ADOPT_DBENV | DBXML_ALLOW_AUTO_OPEN".
    Rest of the steps are mentioned in the code fragment..
    Class Definition is as follows...
    #include <dbxml/DbXml.hpp>
    using namespace DbXml;
    using namespace std;
    class BDBObject // Singleton class
    public:
    static BDBObject* instance();
    bool open_xml();
    bool close_xml();
    bool execute_xquery(const string & exp, string & response);
    ~BDBObject();
    private:
    BDBObject();
    static BDBObject* m_singletonObject;
    XmlManager *m_xmlManager;
    DbEnv *m_bdbEnv;
    XmlUpdateContext m_xmlUpdateContext;
    XmlQueryContext m_xmlQcontext;
    XmlContainer m_necbContainer;
    XmlContainer m_necbXmlContainer;
    bool BDBObject::open(bool flagEnabled)
    -------------- < code fragment for first 3 steps mentioned above> -----------------
    try{
    string containerName = "container1.dbxml";
    if(m_xmlManager -> existsContainer(containerName))
    [b]m_necbContainer = m_xmlManager -> openContainer(containerName); // Opening allready existing container
    else
    return false;
    if(flagEnabled)
    XmlUpdateContext updateContext = m_xmlManager -> createUpdateContext();
    m_necbXmlContainer = m_xmlManager -> createContainer("container2.dbxml");
    XmlInputStream *fileStream = m_xmlManager -> createLocalFileInputStream(filePath);
    m_necbXmlContainer.putDocument(fileDocId, fileStream, updateContext, 0);
    }// End of Try block...
    catch (XmlException &xe)
    cout<<"XmlException: "<<xe.what()<<endl;
    return false;
    return true;
    }// End of function
    bool BDBObject::execute_Xquery(const string & sExp, string & response);
    if(NULL == m_xmlManager)
    return false;
    XmlContainer *bdbContainer = NULL;
    if(flagEnabled)
    bdbContainer = &m_necbXmlContainer;
    else
    bdbContainer = &m_necbContainer;
    if(bdbContainer == NULL)
    return false;
    try{
    XmlQueryContext xmlQcontext = m_xmlManager->createQueryContext();
    string containerName = bdbContainer -> getName();
    m_xmlQcontext.setDefaultCollection(containerName);
    XmlQueryExpression xmlQExp;
    if(flagEnabled)
    xmlQExp = m_xmlManager -> prepare(sExp, xmlQcontext);
    XmlResults bdbResult = xmlQExp.execute(xmlQcontext);
    XmlValue bdbValue;
    while(bdbResult.next(bdbValue))
    response = response + bdbValue.asString();
    }// End of Try block..
    catch (XmlException &xe)
    cout<<" XML Exception: "<<xe.what()<<endl;
    return false;
    return true;
    }// End of function
    <---------------- Application ----------------->
    main()
    cout<< "In Application "<<endl;
    bool flagEnabled = false;
    BDBObject *obj = BDBObject::instance(); // Singleton Object Creation
    obj -> open(false);
    string xquery("");
    if(flagEnabled)
    xquery = "declare namespace HHP=\"HHP\";
    let $n := doc('container1.dbxml/<corressponding docId>')//HHP:hapCageTable
    return ($n);"
    else
    xquery = "declare namespace HHP=\"HHP\";
    let $n := doc('container2.dbxml/<corressponding docId>')//HHP:hapCageTable
    return ($n);"
    string response;
    obj -> execute_xquery(xquery, response);
    ---------- END -------
    Here when I make flagEnabled as false in the application & then compiled.. After execution of the application, I had got expected output.
    Use cases which i tested the application in sequence are...
    1. I make flagEnabled as false in the application & then compiled.. After execution of the application, I had got expected output.
    2. I make flagEnabled as true in the application & then compiled... After execution of the application, I had got expected output.
    3. I make flagEnabled as false in the application & then compiled... After execution of the application, I had got exception in the BDBObject::execute_xquery() function at the line "xmlQExp = m_xmlManager -> prepare(sExp, xmlQcontext);" and shows the exception as "Error: No such file or directory".
    4. If I execute once again the previous use case, then it works.
    5. Now I re-executed the use case 2, I had got expected output.
    6. Now I re-executed the use case 1, Here I am able to see the execption in BDBObject::open function at line "m_necbContainer = m_xmlManager -> openContainer(containerName);" and shows the exception as "Error: container1.dbxml: container file not found, or not a container".
    Please let me know some suggestions to proceed further on this issue..
    Thanks in Advance,
    Regards,
    Sravan.

    Sorry let me explain it clearly.....
    Input plain xml file:
    <bookstore>
    <book>
    <title>ALSB</tile>
    <price>100</price>
    </book>
    </bookstore>
    As we know $body points to root element of above input xml file
    1) My xpath/Xquery condition is --> data($body/book/price)>30 than I validated and tested with above xml input it returns true to me so I saved and activated my proxy.
    2) Now next step let me test proxy from proxy test screen for above input xml file, I clicked on test icon and inputted above xml file. But myxpath/Xquery condition in proxy fails and it goes to else condition.
    The strange part is, if I change my input file to
    <book>
    <title>ALSB</tile>
    <price>100</price>
    </book>
    Than above condition return true, why this is behaving like this
    Edited by prabhu_biradar at 11/18/2007 8:26 PM
    Edited by prabhu_biradar at 11/19/2007 6:10 AM

  • Strange behaviour of .swf movies - AS2/AS3

    Hello from Italy,
         this is my first post and I think I need some help from the experts...
         I am putting together an interactive Flash movie which is made of several different small movies. For the sake of clarity, I'll call them A.swf, B.swf, ..., Z.swf. The movies are launched from each other depending on certain buttons I've implemented.
         The first one, A.swf, is actually a sort of "main menu": it grants access to all the other movies and it is also the point of return from them when a certain button is pressed.
         Important: All the movies are scripted in AS3, except for the last one which, for a number of reasons, is scripted in AS2.
         The return from any (but the last) movie to the first, say B.swf to A.swf, is implemented like this:
    function eventResponseSole(event:MouseEvent):void {
    var myLoader:Loader = new Loader();
    addChild(myLoader);
    var url:URLRequest = new URLRequest("A.swf");
    myLoader.load(url);
    sole_btn.addEventListener(MouseEvent.CLICK, eventResponseSole);
         This is, of course, AS3.
         The last movie, which is scripted in AS2, returns to A.swf like this:
    luna_btn.onRelease = function() {
    loadMovie("A.swf", _root);
         The strange behaviour is this: if I launch Z.swf and navigate with the proper button up to A.swf, everything works. But if I launch A.swf, navigate to Z.swf and attempt to return, this doesn't work. There are no problems, instead, moving up and down between movies scripted in AS3, that is with the first bit of code I've pasted. My guess is that the syntax in AS2 is correct, but something stops A.swf from "launching itself" when the control is transferred to Z.swf, but the movie is launched in the original window. Is this diagnosis reasonable? And if so, would someone kindly provide a way out of this? Re-doing Z.swf in AS3 is not an option, I'm afraid, it will have to stay as it is. I also have to add I've tried some solutions by setting _lockroot, but this doesn't seem to work.
         Many thanks in advance!
         Marco Olivotto

    Mixing AS2 into AS3 is not without stipulations... and I am no expert on translating those stipulations, but here is what the Flash documentation says regarding the matter... the third paragraph may be significant to your case:
    - ActionScript 3.0 code can load a SWF file written in ActionScript 1.0 or 2.0, but it cannot access the SWF file's variables and functions.
    - SWF files written in ActionScript 1.0 or 2.0 cannot load SWF files written in ActionScript 3.0. This means that SWF files authored in Flash 8 or Flex Builder 1.5 or earlier versions cannot load ActionScript 3.0 SWF files.
    The only exception to this rule is that an ActionScript 2.0 SWF file can replace itself with an ActionScript 3.0 SWF file, as long as the ActionScript 2.0 SWF file hasn't previously loaded anything into any of its levels. An ActionScript 2.0 SWF file can do this through a call to loadMovieNum(), passing a value of 0 to the level parameter.

  • Behaviours make objects move in jumps when they are put far from origin.

    Hi, i am trying to represent the solar system in java3d, but i have a problem that when you put an object at a point eg.(10000000,10000000,10000000) using a transform3d then attach a behaviour like keyboardbehavior to it, it moves in big jumps instead of smoothly. It will mroe smoothly the closer you are to the origin.
    Can anybody give me some help as to why this might be.
    Also, Am i using the right type of universe e.g SimpleUniverse, or do I need to use one with a HighresCoord or something.
    Thanks

    Search Spherical Linear Interpolation.
    Gives you smooth transitions between vectors and rotations.
    v(t) = (sin(1-t)Q) / sin Q * v1 + (sin(t)Q)/sinQ * v2
    where Q is the angle between the two vectors.
    Q = acos(v1.dot(v2))
    check out http://www.gamedev.net/reference/articles/article1824.asp

  • Point4D.Multiply inconsistent behaviour with NaN values

    I've noticed some peculiar behaviour with System.Windows.Media.Media3D.Point4d.Mutiply when used with NaN values.
    The following assumes that I expect that 0 * NaN should result in 0. There is an argument against that logic, but that is not the point here.
    I have a 4x4 matrix defined, in the case that it is an Identity matrix and there is a NaN component in the vector, I would like to get some defined vector output where it is possible to calculate the component.
    E.g. (1,2,NaN,4) * (Identity Matrix) = (1,2,NaN,4).
    I was caught out for a while:
    By stepping through using the debugger gives the output I want (1,2,NaN,4).
    But allowing the debug code to run through uninterrupted gives the result (NaN, NaN, Nan, Nan).
    There is a slightly surprising workaround: - using Matrix.IsIdentity seems to trigger the result I want
    If I use the default Matrix constructor instead of a manually created one (normally created elsewhere in code), there is no problem.
    Can anyone explain this inconsistency?
    Simple C# console demo:
    using System;
    using System.Windows.Media.Media3D;
    namespace TestNan
    class Program
    static void Main(string[] args)
    Point4D testPoint = new Point4D(1.0, 2.0, Double.NaN, 4.0);
    Matrix3D testMatrix = new Matrix3D(1.0, 0.0, 0.0, 0.0,
    0.0, 1.0, 0.0, 0.0,
    0.0, 0.0, 1.0, 0.0,
    0.0, 0.0, 0.0, 1.0);
    var testResult1 = Point4D.Multiply(testPoint, testMatrix);
    Console.WriteLine(testResult1.ToString());// NaN,NaN,NaN,NaN
    var b = testMatrix.IsIdentity;
    var testResult2 = Point4D.Multiply(testPoint, testMatrix);
    Console.WriteLine(testResult2.ToString());// 1, 2, NaN, 4
    Console.ReadKey();

    >>Can anyone explain this inconsistency?
    The Matrix3D class has an internal boolean flag that it uses to determine if the matrix is actually an identity matrix and this flag is not set when you create a Matrix3D object using the constructor that takes the 16 double values despite the fact that
    you are actually creating an identity matrix (the flag is then eventually set when you access the IsIdentity property).
    If you use the Matrix3D.Identity static property, the flag will get set to the correct value immediately and the results will be the expected:
    static void Main(string[] args)
    Point4D testPoint = new Point4D(1.0, 2.0, Double.NaN, 4.0);
    Matrix3D testMatrix = Matrix3D.Identity;
    var testResult1 = Point4D.Multiply(testPoint, testMatrix);
    Console.WriteLine(testResult1.ToString());
    var b = testMatrix.IsIdentity;
    var testResult2 = Point4D.Multiply(testPoint, testMatrix);
    Console.WriteLine(testResult2.ToString());// 1, 2, NaN, 4
    Console.ReadKey();
    Hope that helps.
    Please remember to close your threads by marking helpful posts as answer and then start a new thread if you have a new question. Please don't post several questions in the same thread.

  • Annoying inconsistent behaviour

    On many edit pages, there is a Apply Changes button and Next (>) and Previous (<) buttons
    On some pages, the next/previous buttons apply changes to the current page and then go the next/previous page.
    On some pages, clicking the next/previous button pops up a Javascript box 'Are you sure you want to lose your changes?' without giving me an option to Save and continue.
    On some pages, it silently discards my changes and moves to the next/previous page!
    Can this please be fixed so the behaviour is intuitive and consistent?
    Thanks

    1. The Process edit page (4000:4312). If I make changes to my process code and click the 'Next' button, it silently discards my changes
    2. Item edit page (4000:4311) This has a good interface. The next/previous buttons apply changes and then go to the next/previous page
    3. I cant remember now which page pops up the Javascript box. But there is definitely a page in the App Builder which does this.
    Thanks

  • SSRS PDF report inconsistent behaviour

    Hi,
    We are using SSRS reports in out project. In one of the reports we are facing a weird behaviour of PDF report. The report has few legends at the start and then the table containing the data starts. 
    If the report has 25-28 records then the table starts from Page 2 instead of Page1. The corresponding HTML report is working fine.
    If the report has less then 25 records, table starts correctly from Page 1.
    If the reports has more than 30 records, then also the table starts correctly from Page1 and remaining records at Page2.
    Does anybody has idea why PDF reports starts displaying the table from Page 2?

    PDF reports in SSRS are generated with physical dimensions of the page and HTML are generated as logical. So if any of the rows in your first page or header is wider than a A4 size paper then part of the row will be moved to the next page. Keeping
    this in mind can you recheck the issue. The fact about 30 rows being on one page and 25-30 rows being moved to another might just be a conincidence. Maybe one of the records in the 25-30 set is wider than the other records. Could you please recheck and confirm?

  • Very very weird webcam behaviour when recording movie with quicktime????!!!

    Ok tried today playing about with photobooth, and after a while it bugged, camera not recongnised open quicktime and tried to record a movie and there was the little icon saying there was no camera. Anyway, rebooted the computer photobooth ok but slow, threw preference files relaunched fine. tried quicktime, and the image is reversedright is left and left is right how can i fix that???? Thank you for input.
    David

    I think I found the solution. Some further digging revealed that I did not have as previously assumed the latest driver for my graphics card installed. I was mislead because the manufacturer (Dell) did provide some updates, but not all of them (none in the past two years to be exact). I grabbed the newest driver kit from the ATI website and installed it. Strangely, the installer produced several errors and I get another error message at startup, but I think only the control software was affected and not the driver itself.
    After some first tests, QuickTime movies behave as expected, the preview renders are working again and the crashes on exit are also gone. Yay!
    Strange how much trouble a driver which is otherwise working perfectly can cause.

  • EP5 TM "Inconsistent behaviour in working time appln" EP5 TM "Inconsistent

    Dear SAP Experts,
    We have recently migrated EP4 TM appln to EP5 with additional requirement(i.e.) new column "lunch break" between start & end time).
    We don't have "Lunch break" column in EP4 Appln. The additional field is displayed in working time appln through ABAP code because of 2 reason  a) No Change in profile but need to display additional field for certain group of EE  b) Lunch break column should be treated as Quantity(hours) instead of CHAR field.
    Everything worked fine in Development & Test system. Infact we have tested immediately after moved to QA and lunch break column is display and the value entered is considered for calculating total hours.
    But when we move the same coding to Production it's didn't work and we cleared the browser cache & it worked fine..
    Later we cleared Portal cache and it's working fine.
    My question: Does anyone had this similar issue in cache issue &  how does its resolved.
                         After we sign-off to use in production, does any user will have a problem(cache) problem in future
    Appreciate your valuable input
    With Regards
    Babu

    My problems were being caused by these files:
    /var/db/.TimeMachine.cookie
    /var/db/.TimeMachine.Results.plist
    To reset any TM history on a machine you have to delete these in addition to:
    /Library/Preferences/com.apple.timemachine.plist
    And anything in Managed Preferences. Also there are hidden files on the TM sharepoint created on first backup (named after the machines MAC address). I've had to delete these on occasion too.
    Once I got all of these files correct, I had no problems.

  • Inconsistent behaviour in Java 1.2 and 1.3 version

    Hi Where can I find the complete list of methods and classes which are not depricated but have different behaviour in Java1.2 and 1.3 version, like one method is nextToken(String) of StringTokenizer class.

    Thing like this are likely to be found in the release notes for each version. The release notes of 1.3 are @ http://java.sun.com/j2se/1.3/relnotes.html

  • DBMS_RANDOM inconsistent behaviour ?

    Hi:
    I have an issue with DBMS_RANDOM on 9.2.0.6
    #### TEST CASE #####
    create table t1 (col1 number);
    insert into t1 values ('1');
    insert into t1 values ('2');
    insert into t1 values ('3');
    -- ## QUERY1
    select rnd1, rnd1, col1 from (select * from (select dbms_random.string('U',5)
    rnd1,col1 from t1));
    RND1  RND1  COL1
    <font color="#cc0000">EVJMP CZGSY</font> 1        <- the two occurrences of RND are different
    WHZTP TEJBP 2
    HOMYO DQVKG 3
    -- ## QUERY2
    select rnd1, rnd1, col1 from (select * from (select dbms_random.string('U',5)
    rnd1,col1 from t1 where rownum < 99));
    RND1  RND1  COL1
    <font color="#0000cc">DGMSG DGMSG</font> 1        <- the two occurrences of RND are equal
    MUEFU MUEFU 2
    UAKLH UAKLH 3
    ##########<br>
    I believe that query1 behaves wrong, I cannot reference the random value... while I believe query2 is correct.<br>
    My goal is to have multiple occurrences of rnd1 field share the same value, without applying filtering with rownum.<br>
    Is this the intended behaviour?<br>
    Any idea on how to make query1 behave as query2?

    Very odd this is what you select returns on 9.2.0.6
    SQL> select * from (select * from  (select dbms_random.string('U',5)
      2  rnd1,dbms_random.string('U',5)rnd2, col1 from t1  where rownum < 99))
      3  /
    RND1       RND2            COL1
    AOPLL      DHRHE              1
    XPACR      ADOUK              2
    YIKOZ      SERFB              3
    And when I use
    SQL> select rnd1, rnd1, col1
    2 from (select rownum as Rnum,dbms_random.string('U',5) rnd1, col1 from t1)
    3 /
    RND1       RND1            COL1
    CGXNN      CGXNN              1
    IYWMM      IYWMM              2
    GDTCT      GDTCT              3
    GJPLM      GJPLM              4
    JHXCO      JHXCO              5
    null                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Strange tween behaviour when copying movie clips among documents

    Does anyone else encounter this? If you have a movieclip that contains a motion tween which is split in the middle, copying the movieclip that contains it to another document may make the animation un-editable or even break it (as in some of the flash banners I'm producing).
    It seems like all transformation points get shifted randomly and Flash somehow tries to "knit" them together again.
    This also happen if you chose "save and compact" and may break your animation if it's more complicated.
    I have recorded a video which shows this behaviour:
    http://www.youtube.com/watch?v=N7nT7wza4GA
    I also filed a bug report for that and hope it could be reconstructed. But seeing it in a video just illustrates the problem even better.

    Hi there,
    Unfortunately this (the copy nested split tweens across files) is a known issue. However, if you use copy frames instead of copy you shouldn't see this issue.
    However, I haven't seen the save and compact problem even with the large complex files -- that shouldn't be touching anything to do with the spans. Are you able to reproduce this consistently or have some steps I can try?
    Thanks!
    Jen.

  • Inconsistent behaviour of Sybase SQL anywhere update column trigger

    Hi, all
    I am not sure where to post this issue, since I could not find a forum for Sybase SQL anywhere.
    The problem is as follows:
    The definition of the update column trigger in help is this:
    UPDATE OF column-list
    Invokes the trigger whenever a row of the associated table is updated such
    that a column in the column-list is
    modified.
    However, there are cases when the triggers are launched even when the columns are not modified (ie the same exact value is in the both OLD and NEW row)
    This happens on BEFORE triggers, never saw it happening on AFTER.
    Ways to replicate the problem:
    1. Define a before trigger, which fires on update of a specific column in any table.
    2. Run an sql which says "update table1 set column1 = column1 where ... "
    3. You will see that trigger fires, even though it is not supposed to.
    Is this an expected behaviour on "BEFORE" triggers?
    Arcady

    If this were a sql server question, then I could tell you that this is by design.  A trigger will be executed regardless of the number of rows affected (including zero) and regardless of whether any column in any of the affected rows was changed.  I will also point out that PB was designed to work within this design by the inclusion of the [where clause for update/delete] option in the update properties of the datawindow.  The idea is that you avoid actual row updates (in the table) where nothing has actually changed (and it also supports collision avoidance).
    Based on the history, I would assume that Sybase works exactly the same.

  • SAP Screen Personas 3.0 - Inconsistent behaviours and features after installation

    Hi,
    Our company installed SAP Screen Presonas 3.0. We followed up Personas installation OSS notes and instalaltion check list.
    The Personas Health Check displays no issue (see below).
    However, we do get inconsistent behaviors from Personas 3.0:
    - Assign background button, Stretch button, Upload button don't work
    - Unassign image isn't possible
    - Fill color button and Bold icon don't work with a theme assigned to the transaction
    - Images and buttons aren't aligned when a flavor is displayed (compared to when a flavor is edited)
    - the link to personas via Chrome through https doens't work any more (after update of kernel at patch 22).
    Do you have any idea ?
    Thanks,
    Christophe
    Service Status
    personas
    ICF Name
    PERSONAS
    personas
    Compression
    ON
    personas
    Active
    YES
    personas
    Path
    /default_host/sap/bc/personas
    personas
    Text
    SAP Screen Personas 3.0                                             
      Preconfigured SAP GUI for HTML with SAP Screen Personas 3.
    personas3
    ICF Name
    PERSONAS3
    personas3
    Compression
    ON
    personas3
    Active
    YES
    personas3
    Path
    /default_host/sap/bc/personas3
    personas3
    Text
    /PERSONAS/CL_MIME_ZIP_HANDLER
    webgui
    ICF Name
    WEBGUI
    webgui
    Compression
    ON
    webgui
    Active
    YES
    webgui
    Path
    /default_host/sap/bc/gui/sap/its/webgui
    webgui
    Text
    SAP GUI for HTML
    System Status
    em/global_area_MB
    Current Value
    410
    Global Memory (em/global_area_MB) Left
    Current Value
    151.70
    zcsa/second_language
    Current Value
    E
    ztta/diag_area
    Current Value
    250000
    Personas3
    Version
    Version: 3.0-SNAPSHOT Build time: 2014-09-15 22:31:08
    PERSONAS
    Level
    0
    PERSONAS
    Package
    Kernel
    kernel release
    742
    Kernel
    kernel patch level
    22

    Some of those, particularly the image issues, are familiar. Others not - I've never had issues with Chrome, for example. Does https work in other browsers? That would be very strange. Not working in all browsers sounds like a kernel installation issue.
    There's a newer kernel now - pl24 was released just a day or two ago. There should be a new Personas client note tomorrow. I suggest applying both of those to see if any of your issues go away. If not, ask here again, but also create OSS messages for them to make sure they don't get lost.
    Steve.

Maybe you are looking for

  • Macbook pro 13" (late 2011) makes a single loud sound on start-up?

    Hi This noise never used to happen before but since a few days it makes a loud single deep-chimed noise when it starts up then the normal screen comes on 10 seconds later? Is this normal or is something wrong? Please help. Thanks

  • Display problem in 5800 xpress music

    I had purchased a 5800 xpress music in April 2010.  For the last two months there is some problems in the display.  Sometimes, the display is gone and only lines are seen, when the key pad lock on.  This pevails for long time.  Due to this, I am unab

  • Budget check in PM Orders

    Dear Experts, When I am trying to save Maintenance Orders  after including reservations (in PM Module) which are raised against WBS Elements , I am getting an error specifying u201CError occurred during budget check, see cost protocolu201D. Need your

  • Confusing problem with changing volume in alsa

    hello, i searched the forum and google, but didn't find anyone that has the same problem as me. My sound generelly works, BUT the most time i can't change the volume because there is no PCM in amixer / alsamixer / gnome volume control. But after a wh

  • Cannot re-install Motion 2.1.2

    Hello out there. I seem to be having troube re-installing Motion 2.1.2. I know it's an old version of Motion, however I cannot afford the new updates as of yet. I had to remove my previous installation due to the fact that I could not complete such m