Cs4 win7 64 bit strange images behaviour

Just transferred all my sites to new computer.  I cant swap images on a web page in the usual way:
I click on an image, then on the folder icon for "source", I select the thumbnail of the replacement image and nothing happens - the image preview does not appear, and the file name does not change.
Just noticed, whilst still in the "select image source" dialog,  If I then click on a second image - then the filename will change to the image I've just clicked on.  Also once the image has been changed it appears normal service is resumed.

Yes, I can confirm that. It appears that you need to shake the dialog box awake by selecting a different image first. Don't know whether that's just Win 7 or 64-bit oddness. Weird.

Similar Messages

  • Strange memory behaviour using the System.Collections.Hashtable in object reference

    Dear all,
    Recently I came across a strange memory behaviour when comparing the system.collections.hashtable versus de scripting.dictionary object and thought to analyse it a bit in depth. First I thought I incorrectly destroyed references to the class and
    child classes but even when properly destroying them (and even implemented a "SafeObject" with deallocate method) I kept seeing strange memory behaviour.
    Hope this will help others when facing strange memory usage BUT I dont have a solution to the problem (yet) suggestions are welcome.
    Setting:
    I have a parent class that stores data in child classes through the use of a dictionary object. I want to store many differenct items in memory and fetching or alteging them must be as efficient as possible using the dictionary ability of retrieving key
    / value pairs. When the child class (which I store in the dictionary as value) contains another dictionary object memory handeling is as expected where all used memory is release upon the objects leaving scope (or destroyed via code). When I use a system.collection.hashtable
    no memory is released at all though apears to have some internal flag that marks it as useable for another system.collection.hashtable object.
    I created a small test snippet of code to test this behaviour with (running excel from the Office Plus 2010 version) The snippet contains a module to instantiate the parent class and child classes that will contain the data. One sub will test the Hash functionality
    and the other sub will test the dictionary functionality.
    Module1
    Option Explicit
    Sub testHash()
    Dim Parent As parent_class
    Dim d_Count As Double
    'Instantiate parent class
    Set Parent = New parent_class
    'Create a child using the hash collection object
    Parent.AddChildHash "TEST_hash"
    Dim d_CycleCount As Double
    d_CycleCount = 50000
    'Add dummy data records to the child container with x amount of data For d_Count = 0 To d_CycleCount
    Parent.ChildContainer("TEST_hash").InsertDataToHash CStr(d_Count), "dummy data"
    Next
    'Killing the parent when it goes out of scope should kill the childs. (Try it out and watch for the termination debug messages)
    'According to documentation and debug messages not really required!
    Set Parent.ChildContainer("TEST_hash") = Nothing
    'According to documentation not really as we are leaving scope but just to be consistent.. kill the parent!
    Set Parent = Nothing
    End Sub
    Sub testDict()
    Dim Parent As parent_class
    Dim d_Count As Double
    'Instantiate parent class
    Set Parent = New parent_class
    'Create a child using the dictionary object
    Parent.AddChildDict "TEST_dict"
    Dim d_CycleCount As Double
    d_CycleCount = 50000
    'Blow up the memory with x amount of records
    Dim s_SheetCycleCount As String
    s_SheetCycleCount = ThisWorkbook.Worksheets("ButtonSheet").Range("K2").Value
    If IsNumeric(s_SheetCycleCount) Then d_CycleCount = CDbl(s_SheetCycleCount)
    'Add dummy data records to the child container
    For d_Count = 0 To d_CycleCount
    Parent.ChildContainer("TEST_dict").InsertDataToDict CStr(d_Count), "dummy data"
    Next
    'Killing the parent when it goes out of scope should kill the childs. (Try it out and watch for the termination debug messages)
    'According to documentation and debug messages not really required!
    Set Parent.ChildContainer("TEST_dict") = Nothing
    'According to documentation not really as we are leaving scope but just to be consistent.. kill the parent!
    Set Parent = Nothing
    End Sub
    parent_class:
    Option Explicit
    Public ChildContainer As Object
    Private Counter As Double
    Private Sub Class_Initialize()
    Debug.Print "Parent initialized"
    Set ChildContainer = CreateObject("Scripting.dictionary")
    End Sub
    Public Sub AddChildHash(ByRef ChildKey As String)
    If Not ChildContainer.Exists(ChildKey) Then
    Dim TmpChild As child_class_hashtable
    Set TmpChild = New child_class_hashtable
    ChildContainer.Add ChildKey, TmpChild
    Counter = Counter + 1
    Set TmpChild = Nothing
    End If
    End Sub
    Public Sub AddChildDict(ByRef ChildKey As String)
    If Not ChildContainer.Exists(ChildKey) Then
    Dim TmpChild As child_class_dict
    Set TmpChild = New child_class_dict
    ChildContainer.Add ChildKey, TmpChild
    Counter = Counter + 1
    Set TmpChild = Nothing
    End If
    End Sub
    Private Sub Class_Terminate()
    Debug.Print "Parent being killed, first kill all childs (if there are any left!) - muahaha"
    Set ChildContainer = Nothing
    Debug.Print "Parent killed"
    End Sub
    child_class_dict
    Option Explicit
    Public MemmoryLeakObject As Object
    Private Sub Class_Initialize()
    Debug.Print "Child using Scripting.Dictionary initialized"
    Set MemmoryLeakObject = CreateObject("Scripting.Dictionary")
    End Sub
    Public Sub InsertDataToDict(ByRef KeyValue As String, ByRef DataValue As String)
    If Not MemmoryLeakObject.Exists(KeyValue) Then MemmoryLeakObject.Add KeyValue, DataValue
    End Sub
    Private Sub Class_Terminate()
    Debug.Print "Child using Scripting.Dictionary terminated"
    Set MemmoryLeakObject = Nothing
    End Sub
    child_class_hash:
    Option Explicit
    Public MemmoryLeakObject As Object
    Private Sub Class_Initialize()
    Debug.Print "Child using System.Collections.Hashtable initialized"
    Set MemmoryLeakObject = CreateObject("System.Collections.Hashtable")
    End Sub
    Public Sub InsertDataToHash(ByRef KeyValue As String, ByRef DataValue As String)
    If Not MemmoryLeakObject.ContainsKey(KeyValue) Then MemmoryLeakObject.Add KeyValue, DataValue
    End Sub
    Private Sub Class_Terminate()
    Debug.Print "Child using System.Collections.Hashtable terminated"
    Set MemmoryLeakObject = Nothing
    End Sub
    Statistics:
    TEST: (Chronologically ordered)
    1.1 Excel starting memory: 25.324 kb approximately
    Max memory usage after hash (500.000 records) 84.352 kb approximately
    Memory released: 0 %
    1.2 max memory usages after 2nd consequtive hash usage 81.616 kb approximately
    "observation:
    - memory is released then reused
    - less max memory consumed"
    1.3 max memory usages after 3rd consequtive hash usage 80.000 kb approximately
    "observation:
    - memory is released then reused
    - less max memory consumed"
    1.4 Running the dictionary procedure after any of the hash runs will start from the already allocated memory
    In this case from 80000 kb to 147000 kb
    Close excel, free up memory and restart excel
    2.1 Excel starting memory: 25.324 kb approximately
    Max memory usage after dict (500.000 records) 90.000 kb approximately
    Memory released: 91,9%
    2.2 Excel starting memory 2nd consequtive dict run: 27.552 kb approximately
    Max memory usage after dict (500.000 records) 90.000 kb approximately
    Memory released: 99,4%
    2.3 Excel starting memory 3rd consequtive dict run: 27.712 kb approximately
    Max memory usage after dict (500.000 records) 90.000 kb approximately
    Memory released:

    Hi Cor,
    Thank you for going through my post and took the time to reply :) Most apreciated. The issue I am facing is that the memory is not reallocated when using mixed object types and is not behaving the same. I not understand that .net versus the older methods
    use memory allocation differently and perhaps using the .net dictionary object (in stead of the scripting.dictionary) may lead to similar behaviour. {Curious to find that out -> put to the to do list of interesting thingies to explore}
    I agree that allocated memory is not a bad thing as the blocks are already assigned to the program and therefore should be reallocated with more performance. However the dictionary object versus hashtable perform almost identical (and sometimes even favor
    the dictionary object)
    The hashtable is clearly the winner when dealing with small sets of data.
    The issue arises when I am using the hash table in conjunction with another type, for example a dictionary, I see that the dictionary object's memory is stacked on top of the claimed memory space of the hashtable. It appears that .net memory allocation and
    reuse is for .net references only. :) (Or so it seems)
    In another example I got with the similar setup, I see that the total used memory is never released or reclaimed and leakage of around 20% allocated memory remains to eventually crash the system with the out of memory message. (This is when another class
    calls the parent class that instantiates the child class but thats not the point of the question at hand)
    This leakage drove me to investigate and create the example of this post in the first place. For the solution with the class -> parent class -> child class memory leak I switched all to dictionaries and no leakage occurs anymore but nevertheless thought
    it may be good to share / ask if anyone else knows more :D (Never to old to learn something new)

  • Lightroom 2.1-PhotoFrame 4.1-PS CS4 64 bit issue

    OnOne tells me that PS CS4 64 bit is not supported in PhotoFrame 4.1. When I try to use PhotoFrame from LR, it attempts to open the images in PS CS4 64 bit. Is there any way to get LR to default to launching the non-64 bit version of PS (which is also installed on my computer.) Thanks for the help!
    Jonathan Prescott

    The easiest way is to have the 32 bit open. LR will not close it to open the 64 bit.

  • View joining two spatial tables and strange CBO behaviour

    Hi all,
    I've following view in my database:
    CREATE OR REPLACE VIEW my_view AS
    SELECT id, 'table1' AS source, location FROM my_table1
    UNION ALL
    SELECT id, 'table2' AS source, location FROM my_table2;
    When I execute query:
    SELECT * FROM my_view WHERE SDO_RELATE(location, SDO_GEOMETRY(...), 'mask=anyinteract') = 'TRUE';
    It works as expected.
    When running query like (getting location with subquery):
    SELECT * FROM my_view WHERE SDO_RELATE(location, (SELECT location FROM my_table3 WHERE id = 123, 'mask=anyinteract') = 'TRUE';
    It doesn't work. Oracle Throws "DatabaseError: ORA-13226: interface not supported without a spatial index"
    Further investigation revealed strange behaviour of CBO:
    In first case Oracle CBO uses Spatial index just fine and as expected.
    But second query and CBO get's a bit strange - unique index scan is used for subselect, but for view tables is full table scan is used and SDO_RELATE is not happy with that since no spatial index is used.
    How I can use spatial indexes regardless of that subselect?

    Hi folks,
    Looking over these responses and not finding a lot of clarity yet in terms of leaving a trail for future readers to glean an answer from.  I was just looking through the back-and-forth and curious myself about the issue  First of all I think Jani's observations are quite on target.  This CBO reaction is weird and does not work they way most Oracle users would expect it to work.  Secondly, Jani really should tell us his Oracle version and folks providing answers should as well - the CBO is always being tweaked.  Thirdly, Stefan provides a solution though it's a rather expensive solution to my taste.  And finally, I think we as a group need to spend a bit more time reproducing things in code.  I will give it a shot, feel free to correct anything I got wrong.
    So first of all, I wrote this up quick on 12.1.0.2 and verified it was the same on 11.2.0.4
    DROP TABLE my_table1 PURGE;
    CREATE TABLE my_table1(
        objectid INTEGER NOT NULL
       ,tsource  VARCHAR2(30 Char)
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(objectid)
    DROP TABLE my_table2 PURGE;
    CREATE TABLE my_table2(
        objectid INTEGER NOT NULL
       ,tsource  VARCHAR2(30 Char)
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(objectid)
    DROP TABLE my_table3 PURGE;
    CREATE TABLE my_table3(
        objectid INTEGER NOT NULL
       ,tsource  VARCHAR2(30 Char)
       ,shape    MDSYS.SDO_GEOMETRY
       ,PRIMARY KEY(objectid)
    CREATE OR REPLACE PROCEDURE seeder(
       p_count IN NUMBER
    AS
       sdo_foo MDSYS.SDO_GEOMETRY;
       int_counter NUMBER := 1;
       FUNCTION random_line
       RETURN MDSYS.SDO_GEOMETRY
       AS
          num_x1 NUMBER;
          num_y1 NUMBER;
          num_offx NUMBER;
          num_offy NUMBER;
       BEGIN
          num_x1 := dbms_random.value(-179,179);
          num_y1 := dbms_random.value(-89,89);
          RETURN MDSYS.SDO_GEOMETRY(
              2002
             ,8265
             ,NULL
             ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
             ,MDSYS.SDO_ORDINATE_ARRAY(
                  num_x1
                 ,num_y1
                 ,num_x1 + 0.0001
                 ,num_y1 + 0.0001
       END random_line;
    BEGIN
       FOR i IN 1 .. p_count
       LOOP
          sdo_foo := random_line();
          INSERT INTO my_table1
          VALUES (
              int_counter
             ,'table1'
             ,sdo_foo
          int_counter := int_counter + 1;
          sdo_foo := random_line();
          INSERT INTO my_table2
          VALUES (
              int_counter
             ,'table2'
             ,sdo_foo
          int_counter := int_counter + 1;
          sdo_foo := random_line();
          INSERT INTO my_table3
          VALUES (
              int_counter
             ,'table3'
             ,sdo_foo
          int_counter := int_counter + 1;
       END LOOP;
       INSERT INTO my_table1
       VALUES (
           0
          ,'table1'
          ,MDSYS.SDO_GEOMETRY(
               2002
              ,8265
              ,NULL
              ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
              ,MDSYS.SDO_ORDINATE_ARRAY(
                   -87.8211111
                  ,42.5847222
                  ,-87.8212
                  ,42.5848
       INSERT INTO my_table3
       VALUES (
           0
          ,'table3'
          ,MDSYS.SDO_GEOMETRY(
               2002
              ,8265
              ,NULL
              ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
              ,MDSYS.SDO_ORDINATE_ARRAY(
                   -87.8211111
                  ,42.5848
                  ,-87.8212
                  ,42.5847222
       COMMIT;
    END seeder;
    BEGIN
       seeder(100000);
    END;
    SELECT 'my_table1: ' || COUNT(*) AS invalid_count FROM my_table1 WHERE MDSYS.SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(shape,0.05) <> 'TRUE'
    UNION ALL
    SELECT 'my_table2: ' || COUNT(*) AS invalid_count FROM my_table2 WHERE MDSYS.SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(shape,0.05) <> 'TRUE'
    UNION ALL
    SELECT 'my_table3: ' || COUNT(*) AS invalid_count FROM my_table3 WHERE MDSYS.SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(shape,0.05) <> 'TRUE';
    BEGIN
       INSERT INTO user_sdo_geom_metadata(
           table_name
          ,column_name
          ,diminfo
          ,srid
       ) VALUES (
           'MY_TABLE1'
          ,'SHAPE'
          ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
          ,8265
       COMMIT;
    EXCEPTION
       WHEN OTHERS
       THEN
          NULL;
    END;
    BEGIN
       INSERT INTO user_sdo_geom_metadata(
           table_name
          ,column_name
          ,diminfo
          ,srid
       ) VALUES (
           'MY_TABLE2'
          ,'SHAPE'
          ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
          ,8265
       COMMIT;
    EXCEPTION
       WHEN OTHERS
       THEN
          NULL;
    END;
    BEGIN
       INSERT INTO user_sdo_geom_metadata(
           table_name
          ,column_name
          ,diminfo
          ,srid
       ) VALUES (
           'MY_TABLE3'
          ,'SHAPE'
          ,MDSYS.SDO_DIM_ARRAY(MDSYS.SDO_DIM_ELEMENT('X',-180,180,.05),MDSYS.SDO_DIM_ELEMENT('Y',-90,90,.05))
          ,8265
       COMMIT;
    EXCEPTION
       WHEN OTHERS
       THEN
          NULL;
    END;
    CREATE INDEX my_table1_spx ON my_table1
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    CREATE INDEX my_table2_spx ON my_table2
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    CREATE INDEX my_table3_spx ON my_table3
    (shape)
    INDEXTYPE IS MDSYS.SPATIAL_INDEX
    NOPARALLEL;
    BEGIN
       dbms_stats.gather_table_stats(USER, 'MY_TABLE1');
       dbms_stats.gather_index_stats(USER, 'MY_TABLE1_SPX');
       dbms_stats.gather_table_stats(USER, 'MY_TABLE2');
       dbms_stats.gather_index_stats(USER, 'MY_TABLE2_SPX');
       dbms_stats.gather_table_stats(USER, 'MY_TABLE3');
       dbms_stats.gather_index_stats(USER, 'MY_TABLE3_SPX');
    END;
    CREATE OR REPLACE VIEW my_view
    AS
    SELECT
    objectid
    ,'table1' AS tsource
    ,shape
    FROM
    my_table1
    UNION ALL
    SELECT
    objectid
    ,'table2' AS tsource
    ,shape
    FROM my_table2;
    set timing on;
    -- QUERY #1
    -- Jani's original setup, works as expected
    SELECT
    COUNT(*) AS single_geom_counter
    FROM
    my_view a
    WHERE
    MDSYS.SDO_RELATE(
        a.shape
       ,MDSYS.SDO_GEOMETRY(
            2002
           ,8265
           ,NULL
           ,MDSYS.SDO_ELEM_INFO_ARRAY(1,2,1)
           ,MDSYS.SDO_ORDINATE_ARRAY(
                -87.8211111
               ,42.5848
               ,-87.8212
               ,42.5847222
       ,'mask=anyinteract'
    ) = 'TRUE';
    -- QUERY #2
    -- Now the problem statement
    SELECT
    COUNT(*) AS table_problem_counter
    FROM
    my_view a
    WHERE
    MDSYS.SDO_RELATE(
        a.shape
       ,(SELECT b.shape FROM my_table3 b WHERE b.objectid = 0)
       ,'mask=anyinteract'
    ) = 'TRUE';
    -- QUERY #3
    -- Stefan's solution
    SELECT  /*+ ORDERED */
    COUNT(*) AS stefans_solution
    FROM
    my_table3 a
    ,my_view b
    WHERE
    a.objectid = 0
    AND MDSYS.SDO_RELATE(
        a.shape
       ,b.shape
       ,'mask=anyinteract'
    ) = 'TRUE';
    Anyhow, so the hard coded query #1 that Jani provided works exactly the way most folks would expect, the second item in the relate is applied to each spatial index participating in the view.  I think we can agree this is what we want.
    Now when we move on to the problem, well its all goes off the rails as I think its looks to apply the spatial filter to the view itself which lacks an index (not sure really)
    So as Stefan says, you can work around this by rewriting things as query #3 does above though now its a full table scan of both tables in the view.  This is a long way performance wise from Query #1!
    So on my 12c test box
       query #1 Elapsed: 00:00:00.016
       query #3 Elapsed: 00:00:33.534
    On 11g production box
       query #1 Elapsed: 00:00:00.49
       query #3 Elapsed: 00:02:31.45   (ouch!)
    So hopefully someone else can jump in with more information on better solutions?  
    I overall tend to avoid the kind of unioned views that Jani is using here.  I have a hard time recalling why but I must have been burned similarly many years ago when I was first starting with Oracle spatial.  I tend to always want my spatial indexes right there where I can keep a grim stink eye on them.  It may be that a unioned view with multiple spatial indexes behind it might just be a bad practice better done with a materialized view?  Or maybe a lesser term?  Unprofitable practice?  fraught?  "Best if you don't do that"?
    Anyhow, I would be interested in what others have as input on the matter.
    Cheers,
    Paul

  • Swap Image behaviour mis-behaving

    Hi All
    Not sure whats happening here, returned to FW CS5 after a few months of doing other things and I cant seem to get the swap image behaviour to function...
    Well thats not quite right, it does but the wrong way round...
    If I have state one green square and state two red square and I place a slice over green square on state one and add the swap image behaviour and select the corresponding slice area in state two, when I press F12 you'd expect to see the green square which would turn rd on mouse over - wrong, I get the red square and if I mouse over if flickers green.
    FW is showing me whats on state two...
    CS5 Win764
    Tony

    Genius - never thought to check animated gif export bit and never realised you could have all the swap images on one state!
    I guess because there are less states the page will load quicker?
    Many thanks for your time and patience
    Tony

  • I had to reinstall CS4 and now raw images taken with my Canon 7D will not open in ACR.

    Bridge tries to open in Photoshop.  I downloaded the camera raw plug in for the 7d

    Windows 7 64 bit
    Date: Thu, 13 Sep 2012 12:13:15 -0600
    From: [email protected]
    To: [email protected]
    Subject: I had to reinstall CS4 and now raw images taken with my Canon 7D will not open in ACR.
        Re: I had to reinstall CS4 and now raw images taken with my Canon 7D will not open in ACR.
        created by station_two in Adobe Camera Raw - View the full discussion
    Are you on Macintosh or Windows? I can provide a screen shot of the appropriate Mac install location:  http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4696566-231627/450-213/Path-to -ACR-5.2-for-CS4.jpg
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4696566#4696566
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4696566#4696566. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Camera Raw by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Bridge to CS4 64 bit Vista - Problem with bit depth

    I'm using Camera Raw in Bridge and CS4 64 bit. When the Camera Raw window opens in Bridge, the image is shown in 8 bit mode even though shot in 16 bit. I could not find a setting in either the Bridge or CS4 Preferences that accounts for the down sampling. If I do the same raw conversion in Lightroom, this down sampling doesn't occur. Any ideas? Thanks
    Chuck Klingsporn

    Charles,
    <br />
    <br />
    <i>
    <b>You</b>
    </i> were the one that designated 8-bits in the Camera Raw workflow options. Click on what appears to be an underlined link right below your image in the Camera Raw dialog box. You will then be presented with the workflow options and you can set them to whatever you want.
    <br />
    <br /> Those options are sticky, which means they will remain in place until you change them again.
    <br />
    <br /> This is a screen shot of ACR in CS3, but the workflow options are located in the same place in CS4.
    <br />
    <br />c
    <a href="http://www.pixentral.com/show.php?picture=1cHUidPk1eqNeiirB5Dd1nSWr9cf4" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1cHUidPk1eqNeiirB5Dd1nSWr9cf4_thumb.jpg" border="0" />
    <br />c Click on thumbnail for full image

  • Does Windows 7 64-bit "officially" support CS4 64-bit?

    Just saw a post here that says, "...be aware that PS is not supported on Windows 7. Some people have got it going though," as well as other posts about CS4 doing odd things in Win7.
    Just got a new i7-950/9GB/GTX-285 machine and Windows 7 64-bit Home Premium. I'm eager to upgrade my old CS2 to CS4.  Should I expect issues when I install CS4 64-bit in Win7?  Should I wait for a later build?
    Many thanks!

    LBJack wrote:
    Just saw a post here that says, "...be aware that PS is not supported on Windows 7. Some people have got it going though," as well as other posts about CS4 doing odd things in Win7.
    Just got a new i7-950/9GB/GTX-285 machine and Windows 7 64-bit Home Premium. I'm eager to upgrade my old CS2 to CS4.  Should I expect issues when I install CS4 64-bit in Win7?  Should I wait for a later build?
    Many thanks!
    This is a matter of terminology.
    Saying "Not supported by Adobe" means they have not added it to the system requirements. (Not surprising since when CS4 was tested, Windows 7 was not available in its released form.)
    It is obvious if you read a bit in this forum that lots of people are running different versions of Photoshop under Win7 without any problems.

  • Strange Portal Behaviour

    Hi All,
    I'm having problems with a portal since I added an applet to one of the portlets using an HTML <OBJECT> tag. The applet requires a java console to load up and once this is complete, for some reason the default portlet of the portal is refreshed (More precisely the begin action is fired).
    I'm assuming that this is related to the java console because repeating the action above once the console has loaded does not cause the default portlet to be refreshed again a second time.
    Has anyone experienced similar behaviour?
    If it helps, the code in the jsp is:
    <netui-data:repeater dataSource="{pageFlow.pieChart}">
    <netui-data:repeaterHeader>
    <OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
    height="200" width="650" hspace="10"
    standby="Loading Requested Chart........">
    <PARAM name="code" value="X_PieChart.class">
    <PARAM name="codebase" value="/mpsportal/javaScript/">
    <PARAM name="image" value="">
    <PARAM name="forecolor" value="555566">
    <PARAM name="activecolor" value="cc0000">
    <PARAM name="backcolor" value="ffffbe">
    <PARAM name="activecolor_shadow" value="ff0000">
    <PARAM name="distance" value="8">
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <PARAM NAME='p<netui:content value="{container.index}"/>' value='<netui:content value="{container.item.name}"/>#<netui:content value="{container.item.value}"/>#0000AA#0000FF#<netui:content value="{container.item.name}"/> - <netui:content value="{container.item.value}"/>##'>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter>
    <PARAM name="showratios" value="1">
    <PARAM name="deep" value="8">
    <PARAM name="font" value="verdana#plain#12">
    <PARAM name="title" value="">
    <PARAM name="titlealign" value="2">
    </OBJECT>
    </netui-data:repeaterFooter>
    </netui-data:repeater>

    Hi all,
    I am closing this thread as i came to know that i cannot open two threads parallely, about an issue  in different forums .
    If u have more suggetions reg this issue, please post them in the following thread :
    Strange Portal Behaviour in Internet Explorer 8
    Regards,
    Anupama

  • Ps CS4 vs. Ps CS4 (64-bit)

    For some reason, when I down loaded the new version of CS4 and installed it, I now have two entries listed in "my programs" folder. One says Adobe Ps CS4 and the other is Adobe Ps CS4 (64-bit). I'm not sure what the difference is or if I'm supposed to have both or why. I'm running on Windows Vista. By the way, my Lightroom 2 application has the "64-bit" next to it as well. Any ideas?

    If you are thinking "I never have files that big", don't worry. Having a 64-bit system is helping in other ways and you are at the forefront of technology.
    Even if you could work out a way to do it, it is not a good idea to try and remove either 64 0r 32-bit version. It will only cause grief. Hard drive space is not so precious these days. If your drive is getting full, consider moving some of your own stuff, like image files, over to an external USB hard drive they are dirt cheap these days.
    So is RAM; if your computer can take it, add some more.

  • STRANGE GRAPHICS BEHAVIOUR !!!!

    I've posted this in another forum but didn't get any good help...
    So I hope U guys could help me!
    I made a bit of complex GUI wih a lot of different layoutmanagers and components.
    The problem is that when I open a frame/dialog/optionpane above the GUI it leaves "footprints" on the GUI. The "footprints" is vertical stripes from where the frame/dialog/optionpane where.
    When a minimize my GUI and maximize it again the stripes are gone. It seems like the GUI needs to be updated/repainted or something more often (???)
    I'm thinking about writing a class using a thread to update/repaint the GUI each 10 milliseconds or something. What do you guys think?
    If you post me you're email-address I could send you a pic of the strange GUI behaviour.
    Thanks in advance!!!
    /Andrew

    Hi,
    try this
    everytime ur application regains focus call
    the updateUI() method.
    for this ur application has implement FocusListener interface and write this code in the focusGained method
    this should work
    hope this helps
    Regards,
    Partha

  • Strange graphic behaviour

    Hi everybody,
    on my MacBookPro Mid2010 I get a strange graphics behaviour:
    The screen sometimes looks like this:
    http://www.apfeltalk.de/forum/attachments/78146d1324206564-macbook-pro-grafikfeh ler-screenshot.jpg
    (This is not my own image, but my issue looks exactly the same!)
    Has anyone ever seen this?
    Does someone know, why it appears?
    Or things I can do against it?

    You can see this problem on my video : http://youtu.be/fvKaRJZlVco. With this problem Apple change my motherboard for free. I hope this video will help you.
    The problem happens when your macbook pro 15 core i7 mid-2010 passes the intel graphics card to nvidia 330M graphics card with iPhoto for example.
    Apple text :
    http://support.apple.com/kb/TS4088
    Sorry for my bad english.

  • Strange Text Behaviour

    Hi there,
    So strange text behaviour here: http://screencast.com/t/atGbhTznY. I think the video is self explanatory. In Photoshop CS5 it shows the text size properly,
    Desired effect or defect ?
    Regards,
    SK

    Pattie,
    Not to answer for Simeon, but this is different behavior in PsCS6.  Say you scale two  text layers (for example- 10 pt scaled 200%) and commit the scale. When you target each layer individually, the pt size reflects the scale (so it will appear around 20 pt). However. if you target BOTH text layers the font size is indicated as 10 pt - the original size before the scale. One would expect if you target 2 text layers of same font and size, the Character Panel would show the correct size, as happens in PsCS5.
    Steps to reproduce:
    Open default RGB 8 bit document.
    Select Type tool at default settings 12pt type. Type a word and commit type.
    Type another word at same font and commit (you’ll now have two text layers, same font and size)
    Target both text layers and Edit>Transform>Scale 200%. Commit the transform.
    When each layer is targeted individually, the Type Tool Option bar (or Character Panel) shows the new, scaled size of 24pt
    Shift click to target both the 24pt text layers… now Type Tool Option bar reverts to show 12 pt.
    Expected behavior: that the Option Bar would show the new pt size of the two layers.

  • Win 7 x64 - possible to install CS4 64-bit only?

    Is it possible to install only the 64-bit version of CS4 on Win7 64-bit ?
    I do not really need to keep both versions (I do not use many plugins).
    Thank you

    The general advice is to install both 32- and 64-bit version but there is a read-me on the installation disk which tells you how install CS4 64-bit only.
    Quote:
    If you want to install ONLY the 64-bit application follow these steps:
    1. Run the Photoshop CS4 installer.
    2. Enter your serial number. Click Accept.
    3. On the right side of the Options panel under the 64-bit heading, uncheck the box for Adobe Photoshop CS4 (leave the “Adobe Photoshop CS4 (64-bit)” option checked).
    4. Finish installation.
    NOTE: For detailed information about installing, go to http://www.adobe.com/support/loganalyzer/

  • Hi I have been having a problem with Bridge in CS4 recently. So uninstalled CS4 and Lightroom 4.4 and reinstalled them on my Desktop PC. When I turned on Bridge through CS4, My thumb nail images disappeared and a thumb nail icon with CR2 appeared. Now som

    Hi I have been having a problem with Bridge in CS4 recently. So uninstalled CS4 and Lightroom 4.4 and reinstalled them on my Desktop PC. When I turned on Bridge through CS4, My thumb nail images disappeared and a thumb nail icon with CR2 appeared. Now some of my images have disappeared from Light room 4.4, but I can find them in CS4 and Bridge now shows some thumb nails as images and some as an icon with CR2. I have spent two weeks going through preferences etc. to find how to resolve my problem. Please can you Help? Meany thanks in advance
      Derek Randall

    I don't use LR and rarely use the bridge so I can not answers about thumbnails in them,  However thumbnails in windows file explorer and windows dialog for CS2 files will only show if you have installed codec into windows that will produce them. Windows does not do CR2 thumbnails on its own. I use FastPictureViewer Codec package for RAW File and PSD files thunbmail support.

Maybe you are looking for

  • Is there a way to create a smooth transition while using a cutaway?

    I'm creating a music video for my band and I have a great scene that I've 'dropped in' the middle of a clip with the audio muted. The problem is, because of the movement in the clip it looks like a very sloppy edit and could really benefit from a cro

  • How do I get iPhone and iPad to sync Outlook emails correctly?

    If I read an email on the computer, the iOS devices still show the email as unread. If i read an email from the iPhone, the iPad and computer still show the email as unread. etc. etc. Any fixes on this? I've checked and double checked all the setting

  • Setting up second Active Directory controller at remote office

    I need to setup active directory controller at remote office over VPN.  Right now there is one primary DC at the main site and I need to setup the new secondary DC at a new site?  Are there any instructions or steps on setting up an additional site t

  • How to get the array with in the array in plsql?

    Hi, I have a table contains the data like below strcture. LINE_NUMBER     TAG_NUMBER     NOTES     TORQUE_1     TORQUE_2     TORQUE_3 1          SSS          SUCCESS     2000          3000          4000 1          SSS          SUCCESS     4000       

  • Time machine saving to hd and external

    My macbook started making backup copies in time machine and on my external drive when I dowloaded lion. Now I can't figure out how to delete all the backups on my HD. They are taking up 180GB and I have the same backups on my external drive (passport