Animating a Symbol on Stage using a JS function

Lets say i would like to animate SampleSymbol to the right, The following code is placed in CLICK trigger for a button, My understanding is the best way to animate stuff is to write JS functions in Action panels, is it?
The following line fails to animate the SampleSymbol placed on stage...
moveToRight();
function moveToRight() {
sym.$("SampleSymbol").style.left = (sym.$("SampleSymbol").style.left+1)+'px';
// This code supposed to Move the object 1px to the right
setTimeout(moveToRight,20); // call function() in 20 msec

HERE IS MORE INFO ON THE SAME FUNCTIONALITY
this way you can animate them :
sym.$("SampleSymbol").animate({"left" : "100px"}, 500, "easeInCubic");
500 : is the number in milisec to move your symbol
ease : this is Optional and  you can use ease after number to change the way your symbol move like easeInCubic
Here is the list of ease that you can use : http://easings.net/

Similar Messages

  • Unable to get realtime position of animated child symbol's div from parent node (Stage)

    hi,
    for a data viz project, i've created an animated child symbol which changes its position on realtime basis. however, for some calculation purposes, i'm not able to keep track of the  realtime position of the div through stage as it is only showing me fixed value (starting position of the child div).... can anyone help? or is there a way to make global variable which can store position value in child symbol and i can access those values on the main stage???

    Try these in compositionReady. Adapt the scope of your element.
    var symTop = sym.$('Rectangle').css('top');
    var symLeft = sym.$('Rectangle').css('left');
    Then use the variable value where needed.
    or
    var position = sym.$("Rectangle").position();
    console.log( "x or left: " + position.left + ", y or top: " + position.top );
    var x = sym.$("Rectangle").position().left;
    var y = sym.$("Rectangle").position().top;
    console.log("x=",x,"y=",y);
    var coord = sym.$("Rectangle").position();
    sym.$("test_Text").html("x:" + coord.left + "<br>y:" + coord.top);

  • Delete child symbol from stage

    Hi All,
    I need help deleting a symbol from the stage.  I have a list of symbols that are called to the stage at some point in a simulation. When the user leaves one symbol, it is supposed to delete itself and call up another (specific) symol.  For example.  I called the symbol “AR-HistAims” to the stage using
    var mySymbolObject = sym.createChildSymbol("AR-HistAims", "Stage");
                mySymbolObject.getSymbolElement().css({'position':'absolute','left': (mouseX - offset.left)/sx , 'top': (mouseY - offset.top)/sy});
                mySymbolObject.play();
    This works fine.  I place an invisible button in the symbols timeline and when it is clicked I want it to do two things. 
    call up “AR-percPass” (using the same code as above with a percPass in place of HistAims)
    remove “AR-HistAims” from the stage. 
    I can’t seem to get #2 to work.  I’ve tried codes below and above the code for #1.  When placed above, it deletes the current symbol, but doesn’t call up the new one.  When placed below, the new symbol appears on top of the old one.  The codes I've used are:
                var childSymbols=sym.getComposition().getSymbols("AR-HistAims");
                for(var i=0; i<childSymbols.length; i++)
                childSymbols[i].deleteSymbol();
    //and
                var mySymbolObject = sym.getParentSymbol().getSymbol("mySymbol").getVariable("AR-HistAims");
                stage.deleteSymbol();
    //and
    sym.getParentSymbol().deleteSymbol();
    Any advice would be appreciated.
    Thanks
    Randy

    Hi Randy,
    There are a few corrections you need to make in index_edgeAction.js file like as follows:
    1. In click handler, you don't have access to  mouseX, offset, sx, sy etc.
         mySymbolObject.getSymbolElement().css({'position':'absolute','left': (mouseX - offset.left)/sx , 'top': (mouseY - offset.top)/sy});
         So, make it like this:
         mySymbolObject.getSymbolElement().css({'position':'absolute','left': 0 , 'top': 0});
         Make these kind of changes for every click handler where you have used mouseX, offset, sx, sy etc, with appropriate left and top values.
    2. Just search for sym.getSymbolElement().deleteSymbol(); and replace it with sym.deleteSymbol();
    3. Comment out line#1366  having statement sym.deleteSymbol ();
    4. Search for sym.getSymbol(home).deleteSymbol(); and replace all such occurences with sym.getSymbol("home").deleteSymbol();
    With the above changes, things will work.
    hth,
    Vivekuma

  • I used to be able to see a preview of my scan which i can no longer see only the adobe acrobat symbol I am using Adobe pro 9 can this be changed??

    I used to be able to see a preview of my scan which i can no longer see only the adobe acrobat symbol I am using Adobe pro 9 can this be changed??

    Yes, that appears how Mavericks works right now. However, you can open the Address Panel, select all your contacts, then click the To (or CC, or Bcc) buttons to move the selection to the address field.
    If it is not already in the Toolbar, right-click on the Toolbar and select Customize Toolbar…
    Then, drag the address panel up to wherever you want it.
    You may also want to add it to the New Message window in the same way.

  • What does the RHD symbol mean when using the multiple speakers?

    i have two 1st gen apple TVs and when i pull up the multiple speakers prompt, i see an acronym "RHD" after each device.
    what does the RHD symbol mean when using the multiple speakers?
    typically i was used to seeing the Apple TV-1  vs. Apple TV-1-RHD??
    What is the difference?

    It's been modified to run Remote HD.
    http://remotehd.com/

  • Workflow status web part gives error when going back to previous stage (using GO TO) in Project Server 2013 workflow

    Hi,
    Workflow status web part gives error when going back to previous stage (using GO TO) transition activity  in Project Server 2013 workflow.
    Please guide how to create a workflow which restarts from a desired stage.

    Thanks for your prompt reply....
    It gives following error
    Workflow Status
    This Web Part was unable to load.
    Information that may be useful in solving this problem was written to the Unified Logging Service (ULS) log on the Project Web App with the following ID: e95a9c9c-1f68-90d7-0a3e-5951df70fec6
    For more information, contact your Project Web App administrator.
    what do you mean to restart the Project Server 2013 with different project name, please elaborate....

  • Removing Items From Stage Using removeChild

    So, I have a file where I've added 27 movie clips to the
    stage using a for loop to cycle through items in an XML document.
    Here's the pertinent part of the code I'm using, it's AS3:
    So, I end up with 27 instances of mini_mc, each named 0, 1,
    2, 3, etc.
    I'm trying to write code to remove them at a certain point in
    the movie but having problems. Here's what I'm using:
    But I get this error:
    ReferenceError: Error #1069: Property 0 not found on String
    and there is no default value.
    I'm thinking I'm not referencing the "name" of the mcs
    properly?
    Any help would be greatly appreciated! Thanks very
    much.

    Assigning names: yes, except i is an intener, so it would
    have to be "mini_mc"+String(i)
    name is a property: yes, but no, if the name could be the
    number represented by i, it would be mini_mc.1 etc...
    object names are no longer what they used to be for
    dynamically created objects... you cannot access them that way
    anymore in AS3. To use the object name to manipulate an object you
    have to first target the object by its name.... var target:Object =
    getChildByName(theName); and then use the target to manipulate
    it... removeChild(target);
    error 1067: you're using an integer "i" to try to name
    something... it won't fly unless you convert it to a string
    Also, when you decalre a variable, you need to specify its
    type/class...for example...
    var i:uint = 0
    var mini_mc:mcMini = new mcMini();

  • Shared object symbols, ( I'm used to VC++ )

    Hi,
    I'm realy new at programming for linux in c++. But I'm not a noobe in C++. I'm used to MS VS.
    I tried to create shared objects with SunStudio12 and I'm was wandering if there is no "_declspec" for linux.
    The second thing is, it seams that nearly every class und function is exported. I opened the compiled so file with an editor an I saw symbols of all my classes and functions. Is there a way to reduce unwanted symbols?
    Thanks
    Martin

    ok, i understand. If I want to remove them I have to use an extra tool.
    But it make for me no sense, why are they still there. I exported ("__symbolic" ) online one funktion for all other functions an objects I set "-xldscope=hidden". Why are they still in there. Nobady can use these informations like
    9W&#65533;P        &#65533;=&#65533;]4&#65533;&#65533;;)&#65533;7       &#65533;NameSpace::Class1 &#65533;i&#65533;&#65533;T&#65533;&#65533;&#65533;&#1096;Ó^Th
           &#1311;)%&#65533;9&#65533;P"&#65533;k&#65533;&#65533;&#612;p       &#65533;&#65533;qL&#65533;<3&#65533;
    9W&#65533;P       NameSpace::Class2 const NameSpace::Class3<NameSpace::Class1>*  &#65533;&#65533;&#65533;
    &#65533;&#65533;&#65533;&#65533;&#65533;        &#65533;       &#65533;&#65533;&#65533;0O|CKA&#65533;^&#65533;+&#65533;*      NameSpace::Class3<NameSpace::Class1>*
         &#65533;&#65533;&#65533;&#65533;&#65533;&#65533;&#65533;&#65533;                &#65533;&#65533;&#65533;0O|CKA&#65533;^&#65533;+&#65533;*       &#65533;i&#65533;&#65533;T&#65533;&#65533;&#65533;&#1096;Ó^Th
           &#1311;)%&#65533;9&#65533;P"&#65533;k&#65533;&#65533;&#612;p       &#65533;&#65533;qL&#65533;<3&#65533;or should not be able to use it !
    Martin

  • Use of ROW_NUMBER() function in PL/SQL

    I have a Table Emp with the following Structure
    SQL> desc emp
    Name Null? Type
    EMPNO NUMBER(2)
    ENAME VARCHAR2(50)
    HIREDATE DATE
    DEPTNO NUMBER(2)
    If I write a following query on this table
    SQL> SELECT deptno, hiredate, record_id
    2 FROM (SELECT deptno, ename, hiredate, ROW_NUMBER()
    3 OVER (ORDER BY hiredate) AS record_id
    4 FROM emp)
    5 WHERE record_id >= 2
    6 AND record_id <=5;
    The Result I get is
    DEPTNO HIREDATE RECORD_ID
    10 22-NOV-01 2
    10 22-NOV-01 3
    10 22-NOV-01 4
    10 22-NOV-01 5
    But if I put this query in a cursor in a PL/SQL block. The
    pl/sql does not compiles and gives me the following address
    SQL> DECLARE
    2 CURSOR c_my IS
    3 SELECT deptno, hiredate, record_id
    4 FROM (SELECT deptno, ename, hiredate, ROW_NUMBER()
    5 OVER (ORDER BY hiredate) AS record_id
    6 FROM emp)
    7 WHERE record_id >= 2
    8 AND record_id <=5;
    9 BEGIN
    10 FOR c_rec IN c_my LOOP
    11 dbms_output.put_line(c_rec.ename);
    12 END LOOP;
    13 END;
    14 /
    OVER (ORDER BY hiredate) AS record_id
    ERROR at line 5:
    ORA-06550: line 5, column 13:
    PLS-00103: Encountered the symbol "(" when expecting one of the
    following:
    , from
    Question: Can you please tell me how I can use the ROW_NUMBER()
    function in PL/SQL. I need to use this for selecting the correct
    range of records for Pagination on a website.
    Thanks in advance
    Prashant

    As Andrew said, PL/SQL hasn't caught up with the newer bits of
    SQL.  I have heard that in 9i, they will be the same, but in 8i
    there are still things that you can do in SQL that you cannot do
    directly in PL/SQL, such as the new functions like ROW_NUMBER. 
    However, you can use NDS as a work around.  The following does
    the same as what you posted:
    SET SERVEROUTPUT ON
    DECLARE
      TYPE c_my_type  IS REF CURSOR;
      c_my               c_my_type;
      TYPE c_rec_type IS RECORD
        (deptno          emp.deptno%TYPE,
         ename           emp.ename%TYPE,
         hiredate        emp.hiredate%TYPE,
         record_id       INTEGER);
      c_rec              c_rec_type;
      v_sql              VARCHAR2 (4000);
    BEGIN
      v_sql :=
      'SELECT deptno, ename, hiredate, record_id
       FROM   (SELECT deptno, ename, hiredate,
                      ROW_NUMBER() OVER
                        (ORDER BY hiredate)
                        AS record_id
              FROM    emp)
       WHERE  record_id >= 2
       AND    record_id <= 5';
      OPEN c_my FOR v_sql;
      LOOP
        FETCH c_my INTO c_rec;
        EXIT WHEN c_my%NOTFOUND;
        DBMS_OUTPUT.PUT_LINE (c_rec.ename);
      END LOOP;
    END;
    However, you stated that you need it for selecting the correct
    range of records for pagination on a website.  For that, you
    will want something more like this:
    CREATE OR REPLACE PACKAGE package_name
    AS
      TYPE c_my_type     IS     REF cursor;
      PROCEDURE procedure_name
        (c_my            IN OUT c_my_type,
         p_record_id1    IN     NUMBER DEFAULT 1,
         p_record_id2    IN     NUMBER DEFAULT 4);
    END package_name;
    CREATE OR REPLACE PACKAGE BODY package_name
    AS
      PROCEDURE procedure_name
        (c_my            IN OUT c_my_type,
         p_record_id1    IN     NUMBER DEFAULT 1,
         p_record_id2    IN     NUMBER DEFAULT 4)
      IS
        v_sql                   VARCHAR2 (4000);
      BEGIN
        v_sql :=
            'SELECT deptno, ename, hiredate, record_id'
        || ' FROM   (SELECT deptno, ename, hiredate,'
        ||                ' ROW_NUMBER() OVER'
        ||                  ' (ORDER BY hiredate)'
        ||                  ' AS record_id'
        || ' FROM    emp)'
        || ' WHERE  record_id >= :a'
        || ' AND    record_id <= :b';
        OPEN c_my FOR v_sql
        USING p_record_id1, p_record_id2;   
      END procedure_name;
    END package_name;

  • Using the Clip function of an AP-Element

    This is a follow up question to my previous post asking about
    opening external links within my site.
    After taking some good advice on embedding the image in an
    HTML doc on my site and then calling this page from the navigation
    bar.......I'm now on the trail of embedding the image in an
    AP-Element so I can then do my RHS or LHS justification using the
    clip function. In principle I've had it working once on my exisitng
    home page, but as soon as I try creating a new Doc and embedding
    the AP-element the clipping fails to work. If I clip the LH corner
    of the image it diplays correctly in the designer window, but as
    soon as I go to the browser preview it reverts back to an unclipped
    version of the image.
    This is what I'm doing:-
    1) I create a blank new document
    2) I then add an AP Element by Insert|Layout Object|AP Div
    3) I then resize this to a reasonable size on the page and
    then insert an image
    4) I then click on the AP-element border and go to the Clip
    property and set up to clip the LH corner of the image
    When I then look at the designer window, it correctly shows
    the clipped LH corner as expected. But as soon as I preview it in
    the browser it reverts back to the full size image.
    Any guidance would be most greatfully received.
    Thanks,
    Neil

    Tell us again why you are clipping the image, please?
    Also, AP elements cannot interact with any other elements on
    the page
    because the fact that they are absolutely positioned removes
    them from the
    normal flow. So, if you are seeing movement that you
    interpret in this way,
    you are not interpreting it correctly - most likely you have
    other issues on
    the page. Finally, editable regions are NOT layout regions -
    they are
    content regions. If you are seeing 'editable region' issues,
    then look to
    your page's code and the HTML infrastructure there, not at
    your template
    region markup.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "CS4Rookie" <[email protected]> wrote in
    message
    news:gqnrea$1d$[email protected]..
    > Ok, I have part of the site running now so you can see
    what stage I'm at.
    >
    > I think the AP element clipping works ok for what I'm
    doing, but it does
    > pose
    > problems with a large clipped image as I need to select
    a different
    > clipping
    > area for each side of the image. When I do this I then
    need to move the AP
    > elemnt around in the page and this seems to create
    editable region issues
    > due
    > to it being a wide image.
    > Again, this is probably due to my inexperience, so I
    guess I'll sort it
    > out if
    > I put enough time in.
    >
    > Thanks for your comments and support so far.
    >
    > Neil
    >

  • Need sample code using windows BitBlt() function to display image in CVI

    Hello all,
    I need a sample code which uses windows BitBlt() function to display image in CVI
    Thank you.
    Bob.

    Hello Bob -
    I'm curious why you'd like to use BitBlt.  What functionality does it offer that you've not seen in the CVI canvas control?
    It's hard to say without knowing what transitions you're looking for, but the canvas is very capable of animating/transitioning.  The place it can fall a little short is if you require access to the alpha channel for transparency.
    I put together a short demo for you - maybe it will address some of what you're looking for.  The important functions are CanvasStartBatchDraw, CanvasEndBatchDraw, and CanvasDrawBitmap.  The animation/transition is driven by a simple UI timer.
    Let me know if you have any questions -
    NickB
    National Instruments
    Attachments:
    CanvasAnimation.zip ‏10 KB

  • Using Pipeline Table functions with other tables

    I am on DB 11.2.0.2 and have sparingly used pipelined table functions but am considering it for a project that has some fairly big (lots of rows) sized tables. In my tests, selecting from just the pipelined table perform pretty well (whether it is directly from the pipleined table or the view I created on top of it). Where I start to see some degregation when I try to join the pipelined tabe view to other tables and add where conditions.
    ie:
    SELECT A.empno, A.empname, A.job, B.sal
    FROM EMP_VIEW A, EMP B
    WHERE A.empno = B.empno AND
          B.mgr = '7839'
    I have seen some articles and blogs that mention this as a cardinality issue, and offer some undocumented methods to try and combat.
    Can someone please give me some advice or tips on this. Thanks!
    I have created a simple example using the emp table below to help illustrate what I am doing.
    DROP TYPE EMP_TYPE;
    DROP TYPE EMP_SEQ;
    CREATE OR REPLACE TYPE EMP_SEQ AS OBJECT
           ( EMPNO                                         NUMBER(10),
             ENAME                                         VARCHAR2(100),
             JOB                                           VARCHAR2(100));
    CREATE OR REPLACE TYPE EMP_TYPE AS TABLE OF EMP_SEQ;
    CREATE OR REPLACE FUNCTION get_emp return EMP_TYPE PIPELINED AS
    BEGIN
      FOR cur IN (SELECT
                    empno,
                    ename,
                    job
                  FROM emp
             LOOP
               PIPE ROW(EMP_SEQ(cur.empno,
                                cur.ename,
                                cur.job));
             END LOOP;
             RETURN;
    END get_emp;
    create OR REPLACE view EMP_VIEW as select * from table(get_emp());
    SELECT A.empno, A.empname, A.job, B.sal
    FROM EMP_VIEW A, EMP B
    WHERE A.empno = B.empno AND
          B.mgr = '7839'

    I am on DB 11.2.0.2 and have sparingly used pipelined table functions but am considering it for a project that has some fairly big (lots of rows) sized tables
    Which begs the question: WHY? What PROBLEM are you trying to solve and what makes you think using pipelined table functions is the best way to solve that problem?
    The lack of information about cardinality is the likely root of the degradation you noticed as already mentioned.
    But that should be a red flag about pipelined functions in general. PIPELINED functions hide virtually ALL KNOWLEDGE about the result set that is produced; cardinality is just the tip of the iceberg. Those functions pretty much say 'here is a result set' without ANY information about the number of rows (cardinality), distinct values for any columns, nullability of any columns, constraints that might apply to any columns (foreign key, primary key) and so on.
    If you are going to hide all of that information from Oracle that would normally be used to help optimize queries and select the appropriate execution plan you need to have a VERY good reason.
    The use of PIPELINED functions should be reserved for those use cases where ordinary SQL and PL/SQL cannot get the job done. That is they are a 'special case' solution.
    The classic use case for those functions is for the transform stage of ETL where multiple pipelined functions are chained together: one function feeds its rows to the next function which feeds its rows to another and so on. Each of those 'chained' functions is roughly analogous to a full table scan of the data that often does not need to be joined to other data except perhaps low volumn lookup tables where the data may even be cached.
    I suggest that any exploratory or prototyping work you do use standard relational tables until such point as you run into a problem whose solution might require PIPELINED functions to solve.

  • Actionscript 3 Class Not Running More Than Once After Using The GoToAndStop function

    I'm having a strange issue, and I am sure it's due to my lack of knowledge about how classes fully work in Adobe AIR (Flash CC). I've created a login button that is connected to a function, and based on a set of conditions it will take you to a different frame with the GoToAndStop function. I've created a logout button that is suppose to take you "back" to the login frame (that has the login button) if you click the logout button using the GoToAndStop function. Up to this point, everything works until I try to click the Login button again, it does not do anything. It's like it does not even try to execute my class file anymore.
    Does the class file only run at startup and never runs again, and if so, how can I create a section of code that is constantly monitoring what the user is doing no matter what frame you are on and no matter if I use the GoToAndStop function or not?
    Thanks

    Based on your qyestion, I think I was wrong with my second guess.
    When I want to create a button, what I do is draw a bitmap that looks like a button and then use a mouse event listener that looks for any part of the stage that is clicked.  You would use the same code for touch as well.  As3 will return the x.y. coordinate of the area that was clicked or touched.  When the xy coordinate is known, if it corrseponds to the area where the button is, I code the appropriate response.  Hence, I only use one event listener for all my buttons, as long as thet involve simple clicks or taps of the screen.
    Good luck, Justin

  • Using iPad mail program I have a draft of an email. I attempted to "cancel" and "delete draft" but it is still on my screen even after shutting down and restarting. How do I exit so that I can use other mail functions?

    Using iPad mail program I have a draft of an email. I have attempted to "cancel" this and "delete draft" but the email stays on my screen. How can I exit this so that I can use other email functions?

    Try closing the Mail app completely and see if it works properly when you re-open the app : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How to use standard java functions in a XSLT mapping

    Hi All,
    I wish to use a standard java function in a XSLT mapping, The issue is either i am giving incorrect namespace which is used to invoke the function or the signature of the function call is incorrect, I have read all the links in http://help.sap.com, and i know <b> one can enhance a XSLT mapping by writing one's own java code and thereby using java standard functions </b>, but the requirement is such that i need to try and use java standard function in XSLT mapping itself.
    Please refer to the sample code below:
    <?xml version="1.0" encoding="UTF-8"?>
      <xsl:stylesheet version="1.0"  
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        xmlns:javamap="java:java.lang.String">
    <xsl:output method="text"/>
    <xsl:template match="/">
    <xsl:variable name="input" select="Title">
    <xsl:if test="function-available('javamap:toUpperCase')">
    <xsl:value-of select="javamap:toUpperCase($input)"/>
    </xsl:if>
    Author:<xsl:value-of select="Author"/>
    </xsl:template>
    </xsl:stylesheet>
    error encountered is: Illegal number or type of arguments.
    please reply if you have tried a similar scenario in SAP XI.
    Thanks & Regards,
    Varun

    Hi Varun,
        First of all i want to tell you that as per the documentation you can only call the static function inside xslt mapping. Your toUpperCase method is a non static function.
    What i am getting is that you have an element called Author and you want to convert its value into uppercase.
    you can write your own user defined function which is static.
    Signature of your java method :
    public static string toUpperCase(String Author,Map inputparam)
    try this xslt map.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:javamap="java:JavaProgram">
         <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
         <xsl:param name="Author">
                 <xsl:value-of select="//Author_name"/>
         </xsl:param>
         <xsl:param name="inputparam" />
         <xsl:template match="/">
         <Author>
                 <xsl:if test="function-available('javamap:toUpperCase')">
                  <xsl:value-of select="javamap:toUpperCase($Author,$inputparam)"/>
                 </xsl:if>
         </Author>
         </xsl:template>
    </xsl:stylesheet>
    Hope this will work.
    Thanks and Regards
    Vishal Kumar

Maybe you are looking for

  • How do I ensure bootcamp partition works after upgrading snow leopard to mountain lion

    I am very apprehensive about upgrading to Mountain Lion due to performance concerns and the debacle with the new Auto Save feature which seems like a very poor and confusing solution to a problem that didn't really exist. I am only considering the up

  • Bridge CS6 "öffnen mit" Programme auswählen

    Betriebssystem: Win 7 Professional 64bit Bridge: CS6 5.0.2.4 Hallo, wie kann ich die Programme auswählen, die in Bridge bei "Datei->Öffnen mit" angezeigt werden? Ich habe dort mindestens 2 Programme, die dort absolut nichts verloren haben, wie z.B. F

  • Group Left  report

    Helo all, Iam trying to create a group left report (Time report) I need something like this code Client_name county Average1 02 Elias Mulain Central Cf_1/Count           North Cf_1/Count South Cf_1/Count SouthWest Cf_1/Count Cf_1= (staff_date-access_

  • HELP .. unable to install Safari 6.0.5 update thru Software Updates

    Software Updates advises "none of the available updates could be installed. A network error has occurred. Check your internet connection and try again." My internet connection is working fine. Any ideas?

  • How to get network to see iphone4 os 10.6.8

    I used to have my iphone connected Via USB Tether  to my MacBook OS 10.6.8 until I updated to iTunes 7. I fixed the kext file but network does not see my iPhone4 unless I turn on Bluetooth. This is very slow to the internet and I'd really like to get