Why does MOVE effect return object to original position?

I am trying to implement a MOVE for a CANVAS. The move works as desired however the Canvas returns to its original position. Essentially the move happens and then everything reverses and goes back to the original state. Code is below...
Thanks in advance,
Russell
<fx:Declarations>
<mx:Move id="moveDown" target="{addSlider}" yFrom="50" yTo="155" duration="1000" />
</fx:Declarations>
<mx:Canvas id="addSlider" width="235" height="105" top="50" left="70" backgroundColor="0x333333" backgroundAlpha="0.8" >
</mx:Canvas>
<s:Button id="btnSlider" width="50" height="30" top="155" left="255" label="Help" click="moveDown.end();moveDown.play();" />

Thank you for your response Luis and for your previous help (regarding multiple selections being added to the timeline in reverse order when working in list view in the event browser).
Yes i've trashed my preferences, but I should be more specific as to what I am actually doing.  Because I am working from my macbook pro and do not have a "home button" which was the original shortcut to "play from/go to beginning" and because I did not like the replacement shortcut in FCP X to play from beginning (without a home button it was something like Function + Shift something else on a laptop) I became used to Adobe Premiere CS6 and made the return key my "play from beginning" shortcut.  It was available and did not have a use by itself (only to confirm changes/choices), did not effect it's use in conjunction with other shorctus so I choose enter as my "play from/go to beginning"...
So when I play from the beginning and attempt to pause or stop the playhead, regardless of how I choose to do it (spacebar or k) it does not stop at that specific instance and always returns to where it previously was.  This seems very confusing and inconvenient, I would hope at least one of these shortcuts would actually stop the playhead where it was at that moment where I press stop or pause.  It's extremely frustrating knowing that I cannot pause the playhead where it's playing if I choose my "play from beginning" shortcut.
Also since you seem to be a guru and an expert, i'd like to know if you cut with FCPX on a laptop and what shortcut you use whenever you'd like the playhead to go to the beginning of the timeline, end, etc since there are no "home" or "end" buttons on a laptop....
Thanks a million, talk soon...
Anthony

Similar Messages

  • Why does my playhead return to the initial position when pausing/stopping playback after playing from beginning?

         How do I prevent the playhead from returning to it's original position after pausing or stopping with the spacebar or k button?  With either the skimmer on or off, whenever I pause or stop the **** playhead will always return to the position it was last at.  I don't understand why neither of the shortcuts would just stop the playhead at the point that is being played at.  This may seem like an extremely edgy way to go about editing, but I might actually wish to pause the playhead at any given moment and position my playhead nearby said moment before creating an edit point (without having to add a marker and return to it with the blade tool, or take note of the specific duration and use the duration control to go to that specific point or any other unnecessary steps when doing a rough cut).  I simply would like the playhead to pause/stop at the moment I press either keyboard shortcut.  After the many attempts at trying to make FCP X work for me and the many "workarounds" by FCPX enthusiasts, it's disheartening to know that most other editors in my circle who make a living doing paid commercial work are wondering why I've decided to take a break from using CS6 (and it's integration with the industry-standard AE) to give FCP X a shot, all to make very simple tasks like the one aforementioned a mystery...  any help in this matter would be greatly appreciated.

    Thank you for your response Luis and for your previous help (regarding multiple selections being added to the timeline in reverse order when working in list view in the event browser).
    Yes i've trashed my preferences, but I should be more specific as to what I am actually doing.  Because I am working from my macbook pro and do not have a "home button" which was the original shortcut to "play from/go to beginning" and because I did not like the replacement shortcut in FCP X to play from beginning (without a home button it was something like Function + Shift something else on a laptop) I became used to Adobe Premiere CS6 and made the return key my "play from beginning" shortcut.  It was available and did not have a use by itself (only to confirm changes/choices), did not effect it's use in conjunction with other shorctus so I choose enter as my "play from/go to beginning"...
    So when I play from the beginning and attempt to pause or stop the playhead, regardless of how I choose to do it (spacebar or k) it does not stop at that specific instance and always returns to where it previously was.  This seems very confusing and inconvenient, I would hope at least one of these shortcuts would actually stop the playhead where it was at that moment where I press stop or pause.  It's extremely frustrating knowing that I cannot pause the playhead where it's playing if I choose my "play from beginning" shortcut.
    Also since you seem to be a guru and an expert, i'd like to know if you cut with FCPX on a laptop and what shortcut you use whenever you'd like the playhead to go to the beginning of the timeline, end, etc since there are no "home" or "end" buttons on a laptop....
    Thanks a million, talk soon...
    Anthony

  • Why does movie stop and show the home screen

    why does movie stop and show the home screen

    (A) Try reset iPad
    Hold the Sleep/Wake and Home button down together until you see the Apple Logo.
    Note: Data will not be affected.
    (B) Close all apps in the multi-task window
    1.Double-click the Home button.
    2. Swipe the app's preview up to close it.
    3. Preview will fly off the screen.

  • Why does Adobe promise return calls and then not do so?

    Why does Adobe promise return calls and then not do so?   To avoid talking with customers?

    Thanks for your reply - unfortunately I have talked with an Adobe
    representative in India and their action is to put one on hold
    indefinitely.  I am annoyed  because I paid an additional $60 to them 
    for no reason.  Appreciate your comment.
    des

  • S:move effect returns original X value

    I'm working on an Item Render list which I want to play a few animations when I hover over the links. The move effect is supposed to move the label over, which is does, but after it plays the animation the label resumes its original position at the beginning. My scale effect doesn't do this, and it's making the animation a little pointless.
    I think I could fix this in AS, but I was hoping for a much simpler solution. Is there one? Here's the code:
    <s:List x="10" y="62"
                    id="newChaps"
                    dataProvider="{lastChapsData}"
                    width="258"
                    height="293"
                    contentBackgroundAlpha="0.0"
                    height.close="272"
                    >
                <s:itemRenderer>
                    <fx:Component>
                        <s:ItemRenderer>
                            <s:states>
                                <s:State name="normal"/>
                                <s:State name="hovered"/>
                            </s:states>
                            <s:transitions>
                                <s:Transition fromState="normal" toState="hovered">
                                    <s:Parallel>
                                        <s:Move target="{titles}" duration="400" xTo="10"/>
                                        <s:Scale scaleXFrom="1" scaleXTo="1.2"
                                                 scaleYFrom="1" scaleYTo="1.2"
                                                 target="{titles}"/>
                                    </s:Parallel>
                                </s:Transition>
                                <s:Transition fromState="hovered" toState="normal">
                                    <s:Parallel>
                                        <s:Move xFrom="10" xTo="0" target="{titles}"/>
                                        <s:Scale scaleXFrom="1.2" scaleXTo="1"
                                                 scaleYFrom="1.2" scaleYTo="1"
                                                 target="{titles}"/>
                                    </s:Parallel>
                                </s:Transition>
                            </s:transitions>
                            <s:Label text="-{data.title}"
                                     id="titles"
                                     fontSize="20"
                                     fontWeight="bold"
                                     top="5"
                                     bottom="5"
                                     />
                        </s:ItemRenderer>
                    </fx:Component>
                </s:itemRenderer>
            </s:List>
    Thank you for the help.

    When you use effects in a transition you shouldn't define properties like xTo/yTo etc. on them directly, but instead define all of those values in the states of the target and let the transition figure out what needs to change.
    So your transitions should look more like:
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark">
        <s:List width="258" height="293">
            <s:dataProvider>
                <s:ArrayList>
                    <fx:Array>
                        [0,1,2,3,4,5,6]
                    </fx:Array>
                </s:ArrayList>
            </s:dataProvider>
            <s:itemRenderer>
                <fx:Component>
                    <s:ItemRenderer>
                        <s:states>
                            <s:State name="normal"/>
                            <s:State name="hovered"/>
                        </s:states>
                        <s:transitions>
                            <s:Transition fromState="normal" toState="hovered">
                                <s:Parallel>
                                    <s:Move target="{titles}" duration="400" />
                                    <s:Scale target="{titles}"/>
                                </s:Parallel>
                            </s:Transition>
                            <s:Transition fromState="hovered" toState="normal">
                                <s:Parallel>
                                    <s:Move target="{titles}"/>
                                    <s:Scale target="{titles}"/>
                                </s:Parallel>
                            </s:Transition>
                        </s:transitions>
                        <s:Label text="-1"
                                 id="titles"
                                 x.hovered="10"
                                 scaleX.hovered="1.2"
                                 scaleY.hovered="1.2"
                                 fontSize="20"
                                 fontWeight="bold"
                                 top="5"
                                 bottom="5"
                                 />
                    </s:ItemRenderer>
                </fx:Component>
            </s:itemRenderer>
        </s:List>
    </s:Application>

  • Why does getParameter("uri") returns null ???

    Hi !
    JAVA can be rather frustrating and I have run of of dukes. How about IOU ?
    Unfortunately none of the previous questions in the db shed light on my problem.
    I am trying to get at the "uri" and I have the following code fragment :
    package com.developer;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.IOException;
    import java.io.PrintWriter;
    public class proptest extends HttpServlet
      public void doGet( HttpServletRequest req,  HttpServletResponse resp)
        throws ServletException, IOException
        PrintWriter out = resp.getWriter();
        out.println("Parameter Name: " + req.getParameter("uri"));
      public void init() throws ServletException
        // initialie the servlet here. Use ServletConfig object to get
        //    initialization parameters...
        ServletConfig config = getServletConfig();
        // ... more stuff ...
      }

    Hi!
    In case anyone stumbles upon this in the database, I worked aroung it by using req.getRequestURI().
    However I still do not know why getParameter() returns null. It would be useful e.g. if you want to display a list of all request params e.g.:
    // stub code follows...
    java.util.Enumeration enum = rea.getParameterNames();
    while (enum.hasMoreElements())
    String name = (String) enum.nextElement();
    System.out.println("Parameter "+name + " " + req.getParameter(name))
    ...For me, nope, all nulls. If it works for you , do tell me.
    Also if you look at the "bugs db" there seems to be a number of issues concerning getParameter().

  • Why does view WWSBR_USER_FOLDERS return no rows to public ?

    Hi,
    I want to show a user dependent list of folders in a portal
    report application component, but the view
    portal30.wwsbr_user_folders does not show public folders to a
    public (not logged in) user. The view does not return any rows. I
    tested this by creating a portal report on the view, put the
    report as a portlet on page. Logout and navigate to the page. The
    report portlet shows "No Rows Returned". I would expect to see
    the public folders in the report portlet. Am I doing something
    wrong ? Is view portal30.wwsbr_user_folders the right view for
    this kind of query ?
    Environment:
    9iAS version 1.0.2.2
    Portal patch 3.0.9.8.1
    RDBMS version 8.1.7.1.1
    regards,
    Willem-Pieter van der Lugt
    Oracle Consulting NL.

    This is a bug. As a workaround, create two new views as follows:
    create or replace view wwsbr_user_corners2 as
    SELECT "ID","SITEID","LANGUAGE","PARENTID","NAME","TITLE","SETTIN
    GSSETID","SETTINGSSETSITEID",
    "ISPUBLIC","IMAGE","ROLLOVERIMAGE","TITLEIMAGE","LEADER","DESCRIP
    TION",
    "PRODUCTION","FRONTPAGE","CREATEDATE","CREATOR","UPDATEDATE","UPD
    ATOR","SEQ",
    "PUBLISHDATE","DISPLAYLEVEL","DISPLAYSUBCORNERS","ICON","LIFETIME
    HITS","CTXTXT",
    "NAVIGATIONCORNERID","ISTEMPLATE","ISPROJECT","HAVEITEMSECURITY",
    "ITEMVERSIONING",
    "DISPLAYINPARENT","TOPICID","TOPIC_SITEID","VALUE","NAVBARSITEID"
    ,"TYPE","TYPE_SITEID",
    "BASE_TYPE","FOLDER_PATH_DISPLAY","MAILTO_LINK_DISPLAY","IS_CACHE
    _VALID",
    "IS_PORTLET","IS_CACHING_ON","QUOTA","TYPE_DISPLAY_FULL","SITECHA
    RID","SYSPRIV_NAME",
    "PLSQL_EXECUTOR","SUBSCRIBER_ID"
    FROM WWV_CORNERS C
    WHERE
    -- Next line needed to select public folders
    ISPUBLIC = 1
    -- portal admin
    OR EXISTS
    SELECT 'x'
    FROM WWSEC_SYS_PRIV$
    WHERE OBJECT_TYPE_NAME = 'ANY_SITE'
    AND NAME = 'ALL_OBJECTS'
    AND OWNER = wwctx_api.get_product_schema
    AND GRANTEE_TYPE = 'USER'
    AND GRANTEE_USER_ID = wwctx_api.get_user_id
    AND GRANTEE_GROUP_ID = 0
    AND PRIVILEGE_CODE = 500 -- ADMIN
    UNION ALL
    SELECT 'x'
    FROM WWSEC_SYS_PRIV$ P, WWSEC_FLAT$ F
    WHERE P.OBJECT_TYPE_NAME = 'ANY_SITE'
    AND P.NAME = 'ALL_OBJECTS'
    AND P.OWNER = wwctx_api.get_product_schema
    AND P.GRANTEE_TYPE = 'GROUP'
    AND P.GRANTEE_USER_ID = 0
    AND P.GRANTEE_GROUP_ID = F.GROUP_ID
    AND P.PRIVILEGE_CODE = 500 -- ADMIN
    AND F.PERSON_ID = wwctx_api.get_user_id
    -- site admin
    OR EXISTS
    SELECT 'x'
    FROM WWSEC_SYS_PRIV$
    WHERE OBJECT_TYPE_NAME = 'SITE'
    AND NAME = C.SITECHARID
    AND OWNER = wwctx_api.get_product_schema
    AND GRANTEE_TYPE = 'USER'
    AND GRANTEE_USER_ID = wwctx_api.get_user_id
    AND GRANTEE_GROUP_ID = 0
    AND PRIVILEGE_CODE = 300 -- ADMIN
    UNION ALL
    SELECT 'x'
    FROM WWSEC_SYS_PRIV$ P, WWSEC_FLAT$ F
    WHERE P.OBJECT_TYPE_NAME = 'SITE'
    AND P.NAME = C.SITECHARID
    AND P.OWNER = wwctx_api.get_product_schema
    AND P.GRANTEE_TYPE = 'GROUP'
    AND P.GRANTEE_USER_ID = 0
    AND P.GRANTEE_GROUP_ID = F.GROUP_ID
    AND P.PRIVILEGE_CODE = 300 -- ADMIN
    AND F.PERSON_ID = wwctx_api.get_user_id
    -- owned; check the special groups too
    OR EXISTS
    SELECT 'x'
    FROM WWSEC_SYS_PRIV$
    WHERE OBJECT_TYPE_NAME = 'FOLDER'
    AND NAME = C.SYSPRIV_NAME
    AND OWNER = wwctx_api.get_product_schema
    AND GRANTEE_TYPE = 'USER'
    AND GRANTEE_USER_ID in (wwctx_api.get_user_id, 2)
    AND GRANTEE_GROUP_ID = 0
    AND PRIVILEGE_CODE = 700
    OR EXISTS -- group grant to a specific group
    SELECT 'x'
    FROM WWSEC_SYS_PRIV$ P, WWSEC_FLAT$ F
    WHERE P.OBJECT_TYPE_NAME = 'FOLDER'
    AND P.NAME = C.SYSPRIV_NAME
    AND P.OWNER = wwctx_api.get_product_schema
    AND P.GRANTEE_TYPE = 'GROUP'
    AND P.GRANTEE_USER_ID = 0
    AND P.GRANTEE_GROUP_ID = F.GROUP_ID
    AND F.PERSON_ID = wwctx_api.get_user_id
    AND PRIVILEGE_CODE = 700
    create or replace view wwsbr_user_folders2 as
    SELECT c.id,
    c.siteid caid,
    c.language language,
    c.name name,
    c.title display_name,
    c.topicid category_id,
    c.topic_siteid category_caid,
    c.description ,
    c.type type_id,
    c.type_siteid type_caid,
    c.base_type base_type_id,
    c.is_portlet is_portlet,
    c.is_caching_on is_caching_on,
    c.seq sub_folder_sequence,
    c.displayinparent display_in_parent_folder,
    c.itemversioning,
    c.settingssetid style_id,
    c.settingssetsiteid style_caid,
    u.url url_value,
    decode(c.base_type,3,c.value,null) search_value,
    decode(c.base_type,4,c.value,null) plsql_value,
    c.image title_image_name,
    c.rolloverimage rollover_image_name,
    c.titleimage banner_image_name ,
    c.navigationcornerid navigation_bar_id,
    c.navbarsiteid navigation_bar_caid,
    c.ispublic is_public,
    c.haveitemsecurity item_level_security,
    c.type_display_full display_full_screen,
    c.plsql_executor plsql_folder_executor,
    c.createdate,
    c.creator,
    c.updatedate,
    c.updator
    FROM WWSBR_USER_CORNERS2 C,
    WWSBR_URL$ U
    WHERE c.value = u.url(+) and
    c.siteid = u.object_siteid(+)
    The first view adds the condition (WHERE ISPUBLIC=1) to show any
    public folder.
    Don't change the original view definitions, and be sure you
    grant access on WWSBR_USER_FOLDERS2 (or whatever you choose to
    call it) to PORTAL30_PUBLIC (or whatever your public portal
    schema is called).
    Regards,
    Jerry

  • Why does imovie need to keep the original file after I have edited?

    I record basketball games with my ipad and I keep the footage but cut the video so I can make highlights for the season. Thing is, these original videos are usually close to 10GB each and over an hour long.
    I might have 5 minutes of highlights when Im done.
    So to save space in my Imovie projects, I kept the clips i want and deleted the videos. When I came back to add more video to my season project, it said missing file.
    Does it need to save the entire original media after I cut the video? I dont want to keep every game on my computer, I just want to keep what I cut and throw the rest out. But Imovie is asking for the original file.
    Any solutions for this, or do I need to upgrade to a more professional editor?

    Hi
    You are using a - Non Destructing Video Editing program.
    Meaning that Your movie in making ==> Project - DO NOT contain any movie or material at all - BUT only a text document pointing to where material is stored e.g. folder iMovie Event's, other hard disks, DVDs, CDs or USB-memories.
    And if any of these storage's are moved or disconnected - iMovie get's lost and can not View Your Project.
    iMovie - do not have any "Media Managing Function" as FinalCut Pro (as it can reconnect moved material and create a complete contaning folder)
    Even when You Shared Your movie - there still will be links back to material - to make it possibly to further editing's, and Sharing in other resolutions.
    This is the cost of working this way. So I use an external hard disk for storage
    - MUST BE - Mac OS Extended (hfs) formatted - UNIX/DOS/FAT32/Mac OS Exchange will not work for VIDEO
    - Moving Video Event's - MUST BE DONE WITHIN iMovie Application - ELSE connections will be broken - meaning HARD to IMPOSSIBLY to mend later. Be aware !
    All other material I store in Folders named as movie project + date - all from start on the external Drive.
    Yours Bengt W

  • Why does getFrom() method return array

    Hi, all,
    I wonder why getFrom() method of javax.mail.Message returns an array of addresses but not a single address. How can a message be from several users?
    Is there a possibility to loose some sender if I use
    message.getFrom()[0];Thanks

    It's extremely rare, but the spec allows it. From RFC 2822:
       The originator fields of a message consist of the from field, the
       sender field (when applicable), and optionally the reply-to field.
       The from field consists of the field name "From" and a
       comma-separated list of one or more mailbox specifications.  If the
       from field contains more than one mailbox specification in the
       mailbox-list, then the sender field, containing the field name
       "Sender" and a single mailbox specification, MUST appear in the
       message.I don't think I've ever seen a real message with more than one From address.

  • Why does getdate() function return same time value for multiple select statements executed sequentially

    When I run the following code
    set nocount on
    declare @i table(id int identity(1,1) primary key, sDate datetime)
    while((select count(*) from @i)<10000)
    begin
    insert into @i(sDate) select getdate()
    end
    select top 5 sDate, count(id) selectCalls
    from @i
    group by sDate
    order by count(id) desc
    I get the following results. 
    sDate                   selectCalls
    2014-07-30 14:50:27.510 406
    2014-07-30 14:50:27.527 274
    2014-07-30 14:50:27.540 219
    2014-07-30 14:50:27.557 195
    2014-07-30 14:50:27.573 170
    As you can see the select getdate() function returned same time up to the milisecon 406 time for the first date value.  This started happening when we moved our applications to a faster server with four processors.  Is this correct or am I
    going crazy?
    Please let me know
    Bilal

    Observe that adding 2 ms is accurate only with datetime2.  As noted above, datetime does not have ms resolution:
    set nocount on
    declare @d datetime, @i int, @d2 datetime2
    select @d = getdate(), @i = 0, @d2 = sysdatetime()
    while(@i<10)
    begin
    select @d2, @d, current_timestamp, getdate(), sysdatetime()
    select @d = dateadd(ms,2,@d), @i = @i+1, @d2=dateadd(ms,2,@d2)
    end
    2014-08-09 08:36:11.1700395 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1720395 2014-08-09 08:36:11.173 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1740395 2014-08-09 08:36:11.177 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1760395 2014-08-09 08:36:11.180 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1780395 2014-08-09 08:36:11.183 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    2014-08-09 08:36:11.1800395 2014-08-09 08:36:11.187 2014-08-09 08:36:11.170 2014-08-09 08:36:11.170 2014-08-09 08:36:11.1700395
    DATE/TIME functions:
    http://www.sqlusa.com/bestpractices/datetimeconversion/
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Why does the correct return address not show up on outgoing messages?

    Hello,
    Specs:
    Windows NT
    iPlanet Messaging Server 5.1
    iPlanet Directory Server 4.13
    One user recently went through an account change (spam reasons).
    old uid: bob
    old email: [email protected]
    new uid: bsmith
    new email: [email protected]
    The problem is, that during testing, any email sent from the new account is arriving as having both the <Return-path> and <From> fields with the old email address.
    Keep in mind that this is not a client-specific problem as everything has been changed correctly (outlook) If an email goes from "Clients computer" >> "3rd party smtp server" >> "Hotmail" or the like, it shows up as having the correct return address.
    But the pickle I'm in, is that if an email goes from "Clients computer" >> "3rd party smtp server" >> "Our Server" , it shows up as having the OLD return address. - same thing if messages are sent internally (same server) through the webmail interface. The messaging server is somehow rewriting the email field when any message goes through it.
    What makes this a super-pickle is that this is a NEW account., not just a 'change' of the old one. The old account has been deleted, and the command 'imadmin user purge' doesn't find it, nor is there any reference to the old 'bob@' address in the ldif file except for an address book entry or two (other users have added 'bob' into their address book)
    Any help is greatly appreciated in advance. Sorry for the long description, but now all the bases I've covered are known.
    Sincerely,
    Josh

    Jay,
    I only mentioned SIMS 4.0 because I jumped directly from that to MS 6.0p1, and because what my customers wanted to do worked on SIMS and doesn't on MS6.
    To complicate things more, my customer has multiple domains, but not all employees have e-mail addresses in both domains. For example, Joe is [email protected], Jane is [email protected], and John wants mail sent to either [email protected] or [email protected] to come to him.
    I dealt with this by setting up abc & xyz as separate domains, and created a mailing list in xyz.com named "john" with an external member of [email protected] While this works fine, when I add an alias to that mailing list of "[email protected]" and John tries to send a message with "[email protected]" in the From, it is rewritten to [email protected] as that is his primary e-mail address.
    In looking at the LDAP entries of mailing lists that are not working as I'd like, I see that the aliases are specified as mailAlternateAddress attributes. Are you saying that if I change these to MailEquivalentAddress attributes that they will then show up in the From unchanged?
    Oh, and one more possible factor - they are sending mail using SMTP AUTH as they are roving users. Since the mail server knows that the authenticated user is truly [email protected], is that why his From of [email protected] gets nuked?
    Thanks,
    Bill

  • Why does CUBE EFFECT only work with 1 photo?

    If I want the cube effect with a slideshow I only get the effect 1 time? I've tried all different ways - no go... anyone know the answer to this? I want a group of photos to rotate everytime they change.

    Sal - I know how it's supposed to work Dude but it doesn't! It works on the first one and the rest just change but NO CUBE. I've been using Macs for years - I know a lot but this one is puzzling? Have you tried it? Does it work for you? I may need to find the preferences file and trash it 'eh? where's it at?

  • Why does the cursor return to the top of the screen?

    The cursor starts at the top of the screen and returns there no matter where I drag it. It never goes past the middle of the screen. It works fine in safe mode. Same problem with all mice(tried 2 Bluetooth and one USB). I deleted Magic Prefs...no change. iMac 24, Mountain Lion, 2 monitors. This has been running solidly for 6 months.

    Some more notes; this appears to be an issue if one of two things is true; the movie window is open - or - if I'm zoomed in too far (what the threshold is, I'm not sure.) I'm trying to automate dialog. In one instance, I need to adjust a cough; if I zoom in close enough to draw the automation, it returns the play head to bar one after each click. If I'm zoomed out a little bit, I can write the automation no problem.

  • Why does Ical want to change the original dates to 2001 when syncing from my iPhone?

    Hi I was wondering if anyone could help with this as its driving me up the wall
    over the last few weeks I upgraded to Lion running 10.7.1 and until then my Iphone synced everything fine without any problems I have an Iphone 3G running 4.2.1 and when I sync now I get the Ical sync alert saying that more than 25% of my calender events will change on my computer.
    When I look nothing has changed accept the origianl date which is 1/1/2001 for anything that is being taken off my phone onto Ical and also for anything that is already on Ical, I keep telling it to sync later but everything I try it always comes up the same.
    I asked during the week in at the Apple store but was adviced that this problem had not been heard of before and to book both my phone an macbook in for a genius bar appointment.
    Anyone else come accross this problem or is it just myself?
    Kind regards Andy ;0)

    Anyone able to help with this problem at all its still doing my head in ;0(

  • Why does movie say "cannot open" on my Iphone?

    I tried to watch a movie I downloaded to my Iphone the other day and today I wanted to watch the movie but my Iphone said, " Cannot Open". I don't even know what that means means the slightest bit except that it won't play. I've tried restarting my Iphone, but that didn't work. I tried deleteing all of my games thinking there wasn't enough memory and memory wasn't the problem. All I know is that when I played the movie the first time it loaded up with out problem. but After I did the newest update for my Iphone the movie won't play at all. So could anyone help me resolve this problem on my Iphone phone? Many thanks to you all for trying to help me. Thanks.

    Have you tried plugging it in to iTunes?

Maybe you are looking for

  • Bex report on Multi Provider Long Text issue

    Hi All, I have a report that running on a multiprovider and I have a field that I use as a selection parameter. I changed the settings for this field's info object settings to "long text" to see long description in the pop up search window. However s

  • Couldn't get to the login scrn. Circle with slash symbol. S-mode not helpin

    System: *PowerMac G4 DDR 1GHz with 1.25GB RAM and Tiger 10.4.10 (or .11 not sure)* At first, I could not get the Mac to get to the login screen i.e. it boots up but the timer symbol thing (you know that clockwise 'loading' icon thingy) keeps cycling

  • Drag and drop images using tilelist in flex

    i just want the working code for drag and drop images using tilelist in flex

  • Wrong digital signature for add-on installer

    I have created a addon and it gives error as, Wrong digital signature for add-on installer   When I tried installing this addon on another SAP server,it worked.On the problamatic server,the antivirus has expired.Is virus capable to creating this prob

  • Best way to manage mac clients?

    I have OpenLDAP that handles all the user accounts and so on. and i have Open Directory. what is the best way to manage and control those imacs in such a scenario.. I tired MCX with ethernet mac address, but its not reliable.. doesn't apply the setti