Navigate to different areas of a screen

Hi there, im looking for help, even if someone can point me
in the right direction of a good tutorialfor this would be great.
Thing is I dont even know fully how to explain.
But basically what im looking to do is whats on this site:
www.playgroundsfestival.nl/playgrounds.asp
where there is basically one very large page, there is then a
floating menu/navigation and when you click on one of the links it
takes you to that area of the page.
Ive just done this (please ignore the style of it!!!!)
www.thegregwilliams.co.uk/test1.html but as you can see I can move
the movie clip (in this case the blue box) by the navigation
buttons. But as you can see when you click on button 2 (in my
movie) the movie (blue box) instantly snaps into place. What I want
is that nice smooth animation where you actually see the transition
(ie the screen moving across to the right section of the movie
clip). Does that make sense?
This is my action script for the buttons:
on (press)
_root.xxxc._x = 270;
_root.xxxc._y = 144;
anyone know any tutorials?

use need to use the Tween class, it will look something like
this:

Similar Messages

  • Pressure sensitivity uneven on different areas of the screen

    Just upgraded my x230t to win8. After much trial and error I finally got the pen to have very little pressure sensitivity by increasing the hardness of the pen tip to full in the pen settings (control panel). But I am not sure if this is pressure sensitivity. The problem now is that I get thin light lines in the middle of the screen but hard dark lines after the middle region of the screen when drawing with the same pressure. And its the same regions even if i move the canvas. I have attatched a screen shot too. Could it be my screen or my digitizer? I am confused...... please help. 
    The lines on the attached pic is drawn with equal pressure.
    Solved!
    Go to Solution.

    The conditions of the experiment are not evidence. It is impossible to draw freehand lines with equal pressure on the entire surface of the canvas. You may have to retry using a ruler, in tablet mode, the side of your hand (don’t forget to put on a thin glove) sliding onto the screen.
    Example with my X220t in ArtRage Studio. I used the ruler stencil. (Highly compressed jpeg image):
    X220t | i7 | 320GB HDD | 8GB RAM | WIN7 PRO
    IdeaCenter A520 | i5 | 1 TB HDD | 6GB RAM | WIN8.1

  • Cannot click on certain area of the screen

    I'm not sure if this is a display or a mouse issue. I have had my 24" iMac since June and have just started having this issue. I cannot click (left or right mouse button) on one specific part of the screen. I can click on links and buttons, form boxes, bring up the contextual menu (right click) or do pretty much anything you do with the mouse on most of the screen. However in this approximately half inch high and a few inches long area just above the middle of the screen on the left hand side there is no response from computer when clicking with the mouse. I can click on a link in the browser above this space and below it but not on the link in it. If I move the browser window so that same link appears in a different part of the screen I can click on it fine and cannot click on the link now in the affected area.
    This is the same for any clickable item placed in this area of the screen. Is this a display or a mouse issue?

    If you have an external drive that can be erased, you could try installing a new system there and setting the Mac to boot from it. That will determine if it is related to the current system installation, or if it is more likely to be a hardware problem. You can obviously also back up your data, erase your internal drive, and reinstall a new system there.
    Alternately, as a test, you can just startup from your Mac OS X installation disc. At the first installer screen, go up to the menu bar. Under Utilities, run Disk Utility. Move the Disk Utility window around the screen as needed to see of the same problem exists while booted from a different system. If it happens there, then it is more likely to be some odd hardware-related issue. If it does not, it is possible a fresh system installation will resolve the problem.

  • Module-pool: how to create different blocks at same screen

    hi experts,
    can i create different blocks at same selection-screen in module-pool? if yes,how?and can i use 'loop at screen' in dat case?
    thanks.

    you can do that...
    you have create subscreen areas in the screen painter and call the selection screen on those areas..
    Just see the stpes..and follow the sample code..
    REPORT  ztest_mod.
    DATA: kunnr TYPE kunnr.
    "if you want to create blocks same like selection screen the
    "you have to create them as subscreen,
    "place them in subscreen area.
    * Custom Selection Screen a
    SELECTION-SCREEN BEGIN OF SCREEN 0200 AS SUBSCREEN.
    SELECT-OPTIONS: s_kunnr FOR  kunnr.
    SELECTION-SCREEN END OF SCREEN 0200.
    START-OF-SELECTION.
      "in this screen i have a button with function code 'SEARCH'
      " and a subscreen area with name sub
      CALL SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'STATUS'.
    ENDMODULE.                    "status_0100 OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    MODULE user_command_0100 INPUT.
    "for reading the selection screen fields
      DATA:
          i_dyn_fields LIKE TABLE
                         OF dynpread
                       WITH HEADER LINE.
      MOVE:
        'S_KUNNR-LOW' TO i_dyn_fields-fieldname.
      APPEND i_dyn_fields.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          dyname               = sy-repid
          dynumb               = '0200'
        TABLES
          dynpfields           = i_dyn_fields
        EXCEPTIONS
          invalid_abapworkarea = 1
          invalid_dynprofield  = 2
          invalid_dynproname   = 3
          invalid_dynpronummer = 4
          invalid_request      = 5
          no_fielddescription  = 6
          invalid_parameter    = 7
          undefind_error       = 8
          double_conversion    = 9
          stepl_not_found      = 10
          OTHERS               = 11.
      IF sy-subrc eq 0.
       read table i_dyn_fields index 1.
        s_kunnr-low = i_dynp_fields-VALUE
        s_kunnr-sign = 'I'.
        s_kunnr-option = 'EQ'.
        append s_kunnr.
      ENDIF.
      DATA: it_kunnr TYPE TABLE OF kna1.
      CASE sy-ucomm.
        WHEN 'SEARCH'.
          SELECT * FROM kna1
          INTO TABLE it_kunnr
          WHERE kunnr IN s_kunnr.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                    "user_command_0100 INPUT
    Flow Logic
    PROCESS BEFORE OUTPUT.
      MODULE status_0100.
      CALL SUBSCREEN sub INCLUDING sy-repid '0200'.
    PROCESS AFTER INPUT.
      MODULE user_command_0100.
    Regards
    Vijay Babu Dudla

  • Can a single applet write to several areas of the screen?

    If you stick several copies of some graphic into a webpage, hopefully the browser will be smart enough only to request one copy. A related thing that would be desirable would be to have a single applet that could paint into different areas of the display (even if multiple instances of the applet ultimately are created).
    Does anybody know offhand if that's possible, and how to do it?

    Hi Thomas:
    If you stick several copies of some graphic into a webpage, hopefully the browser will be smart
    enough only to request one copy. If you examined your temporary internet files folder (assuming that you're using IE), you should only find one cached copy of the graphic file.
    related thing that would be desirable would be to have a single applet that could paint into different
    areas of the displayAltho I have never tried this myself, I am sure that if you create several <DIV> or <LAYER> tags, you can target the applet's display to screen location occupied by these tags with the use of JAVA<-->JAVASCRIPT communication via the JSObject (JavaScript Object).
    ;o)
    V.V.

  • Are all Imac screens unevenly bright, or just faulty batch?

    Can anyone confirm that they have a 24" Imac that has a uniformly bright screen, i.e. when scrutinizing it with a solid grey or white background, you cannot see any areas of the screen that are noticeably brighter than the others?
    I really want to buy a 24" Imac, but having tried two that had an unacceptable brightness gradient from left to right, and having been told by the Apple Store owner that their display model also has the same ueneveness, plus having read the many posts on this board about the same issue, I am beginning to think that perhaps all the new Imac screens have this problem.
    I'd appreciate it if anyone who owns a 24" alu Imac with a good screen could post in this thread.
    Many thanks!

    Im surprised mrtotes can't see any gradient problems on his Alu iMac! There are VERY few people reporting that their 20" or 24" iMac doesn't have a gradient issue.
    From other iMac customers, including those on these forums, it seems that it is not necessarily a faulty batch, but a range-wide issue. Whether Apple decides to provide a fix for current iMacs and/or produces new batches without the issue, is simply unknown at present.
    I have also read that Apple's response is that the iMac is designed for consumer-level customers and not for professionals. Professionals including graphic designers like myself will likely disagree with this. I am at a graphic design degree course at the moment and my lecturers also disagree with this statement (Especially seeing as all our workstations at university are previous generation iMacs!). The iMacs are definitely acceptable, and probably excellent for non-professional use, but if you're interested in correct colour and brightness levels for things such as design work, then the current generation iMac is now unfortunately not suitable for this sort of professional use.
    I am not providing any facts here, just gathered information. I am awaiting a replacement for my 20" Alu iMac but I am certainly not expecting it to be any different.

  • How can I switch out graphics in different areas of a movie?

    I have a project that I'm working on for a flooring company. They want a Flash movie that allows the user to change the look (product and color) of different areas of the floor.
    I have a menu on the left side that designates the three different areas of the floor. I have the two products along with color swatches along the top. I currently have each of the three areas as separate movies that load into a main movie.
    These three area movies each contain the color swatches on the top as buttons to change the color of that area using "On Release > Go To Frame Label" actions that displays each of the different colors. These movies each load on a different level based on the selection of the left side menu.
    I want the user to be able to go to each of the three areas and change the product/color attributes without losing what they had already done. For instance, if they choose PRODUCT A in RED for AREA 1, then they want to change the product/color on AREA 2, I still want the movie to display PRODUCT A in RED for AREA 1, etc.
    The problem I run into is that when you go back and forth between the three areas, the navigation only controls what movie is on the top level and doesn't allow the user to go back to a previous area and change the product/color attribute.
    Keep in mind I'm a designer, not a developer. My knowledge of Actionscript is very superficial so don't throw a bunch of "geek speak" at me ;-)

    It is not clear how you have the design arranged timeline-wise, but what you should do is get away from using the timeline as much as using movieclips.  Have each area as a different movieclip that you control with the selection buttons.  That way, changing one movieclip's current frame will not disturb another's.

  • How to use the different class for each screen as well as function.

    Hi Experts,
    How to use the different class for each screen as well as function.
    With BestRegards,
    M.Thippa Reddy.

    Hi ThippaReddy,
    see this sample code
    Public Class ClsMenInBlack
    #Region "Declarations"
        'Class objects
        'UI and Di objects
        Dim objForm As SAPbouiCOM.Form
        'Variables
        Dim strQuery As String
    #End Region
    #Region "Methods"
        Private Function GeRate() As Double
                Return Double
        End Function
    #End Region
    Public Sub SBO_Appln_MenuEvent(ByRef pVal As SAPbouiCOM.MenuEvent, ByRef BubbleEvent As Boolean)
            If pVal.BeforeAction = True Then
                If pVal.MenuUID = "ENV_Menu_MIB" Then
                End If
            Else ' Before Action False
                End If
        End Sub
    #End Region
    End Class
    End Class
    Rgds
    Micheal
    Vasu Anna Regional Feeling a???? Just Kidding
    Edited by: micheal willis on Jul 27, 2009 5:49 PM
    Edited by: micheal willis on Jul 27, 2009 5:50 PM

  • Is there a way to define 2 different areas using boundaries in a Java app?

    Hi,
    Im tryig to create a game for kids were they can learn how to write! In one of the games there will be a template of a letter, for example A, the A wii be hollow inside so that the kids can folow the outline! But if they go over a line i want the program to display a message telling them this and having to restart drawing from the mouse!
    I know how to draw the lines fron the mouse i just dont kno if it is possible to define different areas according to the shape of a letter??
    Hope you can help
    RSH

    This code will get you a java.awt.Shape representing the outline of any String.
    import java.awt.Shape;
    import java.awt.Graphics2D;
    import java.awt.Font;
    import java.awt.font.FontRenderContext;
    //Whatever other code you need
    //Getting shape of text, put somewhere you can get a Graphics from
    FontRenderContext context = g2d.getFontRenderContext();        //where g2d is a Graphics2D
    Font anyFont = new Font("Arial", Font.BOLD, 20);
    String myText  = "ABCDEFG";
    TextLayout textShaper = new TextLayout(myText, anyFont, context);
    Shape outline = textShaper.getOutline(null);           
    //you can pass a AffineTransform to getOutline( ) if you want some kind of transformation, probably be best
    //if you used it to move (translate) the text outline so you can check to see if it contains the mouse pointer.With the Shape representing the outline of the text, you can call contains( ) on it, passing it a Point2D or the x and y locations of the mouse in double precision which returns true if the Shape contains the mouse.
    I'm pretty sure that it should work.

  • My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?

    My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?  Network is administered through an iMac running OS X Yosemite 10.10.2.  Ideally, would like for the second Airport Extreme hard drive to appear on the list of devices in the Finder window.

    Ok.. gottcha
    The problem is network wise.. Yosemite is about equal to tin cans and string.. pathetic.
    Here is my usual set of instructions to get anything working on Yosemite.
    The best way to fix problems is a full factory reset of all the AE in the network.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 and AEwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use AE24ghz and AE5ghz with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for AE which is router.. it is a problem for AE which is bridged.. you will need to set static IP in the main router by dhcp reservations or use static IP in the AE which is tricky.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Now mount the disk of the second AE in finder... manually.
    Use Go, Connect to Server and type in the AE ip address.
    SMB://10.0.1.2
    Where you will replace that address with the actual address. The network resource should be discovered and then it will request the password.. type that in and make sure you tick to save it in your keychain.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    Do as much as you want of the above... not all of it is necessary.. only if you want it reliable.. or as reliable as Yosemite in its current incarnation can manage.
    The most important thing is point 6.. mount the disk using direct IP address and not names.. dns in Yosemite is fatally flawed.
    See http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

  • Transaction BP start in sales area - status view screen

    I'm calling from outside of R/3 (from CRM).
    I want to start online transaction BP started, but I want to start up in the sales area, and the screen status. This is crucial because it is must be done several times by the users.
    I have tried to see examples in the code how memory with structure BUS_NAVIGATION is filled. But it does not work.
    Any suggestions?
    BR
    Bent Holm Nielsen
    [email protected]
    FUNCTION ZE_SD_CIC_CALL_TRANS_BP.
    *"*"Local interface:
    *"  IMPORTING
    *"     VALUE(TCODE) TYPE  TCODE
    *"     VALUE(KUNNR) TYPE  KUNNR OPTIONAL
      DATA lv_key(34) TYPE c.
      DATA ls_indx    TYPE indx.
      constants: gc_shared_buffer_id type INDX-SRTFD value
                'BUPA_NAVIGATION_REQ'.
      data: ev_instance type ref to CL_BUPA_NAVIGATION_REQUEST.
      data GS_NAVIGATION type BUS_NAVIGATION .
      data GS_NAVIGATIONX type BUS_NAVIGATIONX .
      data GV_TITLE type BUS_SCREEN-TITLE .
      if tcode eq 'BP' and not kunnr is initial.
        SELECT single PARTNER_GUID into gs_navigation-PARTNER_GUID
               FROM  BUT000
               WHERE  PARTNER       = kunnr.
        if sy-subrc gt 0.
          exit.
        endif.
        data: lt_role type BU_role_t,
              ls_role type BU_RLTYP,
              lin type i.
        refresh lt_role.
        SELECT RLTYP appending table lt_role
               FROM  BUT100
               WHERE  PARTNER  = kunnr.
        describe table lt_role lines lin.
        if lin le '1'.
          read table lt_role into ls_role index 1.
          if sy-subrc eq 0.
            gs_navigation-BUPA-PARTNER_ROLE = ls_role.
          else.
            exit.    "The function module
          endif.
        else.
          read table lt_role into ls_role
                     with key 'ZCRM01'.  "sold-to
          if sy-subrc eq 0.
            gs_navigation-BUPA-PARTNER_ROLE = ls_role.
          else.
            read table lt_role into ls_role index 1.
            if sy-subrc eq 0.
              gs_navigation-BUPA-PARTNER_ROLE = ls_role.
            else.
              exit.    "The function module
            endif.
          endif.
        endif.
    * Start Export data to the ABAP memory
        gs_navigation-bupa-activity       = '02'.
        gs_navigation-bupa-sub_header_id  = 'LOCU90'. "Status screen at bp
        gs_navigation-bupa-sub_header_tab = 'LOCU90'. "Status screen at bp
    *Break sapbhn.
    *data: lt_fields type table of BUS0FLDVAL,
    *      ls_fields type BUS0FLDVAL.
    *    ls_fields-TBFLD = 'RF02D-VKORG'.
    *    ls_fields-FLDVL = 'S001'.
    *    insert ls_fields into table lt_fields.
    *    gs_navigation-bupa-FIELD_VALUES[] = lt_fields[].
        CONCATENATE gc_shared_buffer_id sy-uname INTO lv_key.
        gs_navigationx-partner_guid      = 'X'. "Guid
        gs_navigationx-bupa-partner_role = 'X'. "Role
        gs_navigationx-bupa-activity     = 'X'. "Change mode
        EXPORT gs_navigation  FROM gs_navigation
               gs_navigationx FROM gs_navigationx
               gv_title       FROM gv_title
               TO DATABASE indx(bp) FROM ls_indx ID lv_key.
    * End  Export data to the ABAP memory
        call transaction 'BP'.
      endif.

    Hi,
    have you found any solution?
    Please, if you have, send me an email to [email protected]
    I would appreciate so much your explanations.
    Best Regards,
    Rosa

  • My story of transferring a different area code number during activation

    When I got my iPhone, I wanted to port my current number (which was in a different area code from my billing address) to the iPhone. I got stuck on the second page of the activation with a "you cannot transfer this number" message.
    I called the AT&T corporate store that I purchased the iPhone from and encountered the worst help in a person that basically said that he didn't know anything about that problem, there was no other person here (i.e. supervisor) and he really couldn't help me and doubted that anyone else could. When I said, "So, there isn't anything I can do at all whatsoever? Like there's no phone number at AT&T or Apple that I can call and get any help activating my iPhone?" He finally, like a light bulb went on, said "I suppose you could call the 800-My-iPhone number. The people at that AT&T corporate store must only hire the most brilliant people. I suppose it could have been his first day or for that matter his first call, but still....
    I called 800-My-iPhone and the guy there couldn't figure out why it wasn't letting me activate, so he went off and made a little call to AT&T and came back and said that I have two options. 1) I could just activate with a new phone number and transfer my old phone number later (you have 30 days to transfer--the 30 days probably avoids a transfer fee, but that's a guess) or 2) I would have to put in a request to transfer my number and that might take up to six days. I decided to go ahead and just get a new number and deal with the transfer later. Once I got the iPhone activated and got the new phone number, I started the porting process.
    When I called the AT&T Porting phone number to start the process, I got the nicest lady that pretty much told me "I wish they had sent you to us first. The reason you couldn't activate with this phone number is because your phone number is in a different area code from your billing address. When the activation process asked for your billing zipcode, you should have entered a zip code from the area where your old phone number's area code was and not your current billing zip code." According to her, that would have allowed the transfer to occur. I wish the 800-My-iPhone people knew this and yes I sent a "One-Way" unacknowledged feedback message into the Apple abyss.
    So now the story goes that since I have activated my iPhone in a different area code, the SIM card is locked into that area code. I can still transfer my number, but AT&T has to send me a new SIM card with another temporary number in that area code. Then they have to get the iPhone activated with that SIM card and then they start the whole phone number transfer process.
    If I understand this correctly, I will have had two temporary numbers and two SIM cards before the transfer process is over.
    It's not over yet, so the story isn't done. I'll see in the next couple of days how the whole "transferring the old phone number" process unfolds.
    I can't wait to see how iTunes handles the whole process. That's probably a whole different headache.

    Well, you were right about looking for problems in the billing. Even though I had made sure they had closed down the extra account. The problem stems from how they advance bill for next month's service.
    When they shutdown the first account (with the temp phone number) they never refunded the advanced payment for the next month, they just kind of forgot about that and didn't have any kind of entry for refunding that pre-paid service.
    On the second account (with my current number), I paid for two months of service, but I was paying again on the same month I paid for in the first account. That extra month of service was about $75 of extra charges.
    There were all sorts of charges on the first account (like a $175 charge for canceling my account early), which they turned right around and removed. All the extra charges and credits, just confused the issue for not only me, but the customer service agent as well. He kept saying that they had credited me for some $235 of billing and was using that to say that AT&T could not credit me any more.
    Finally, I was able to show them that they had not only charged me twice for message service for November, but they also charged me twice for phone service in November too. I think it helped when the agent realized that I only had one phone and one line of service active.
    The customer service agent was nice, but with all the other charges and credits, it took a while to get to the bottom of what charge was for what service and where the double billing took place.
    Anyway, I did get it straightened out. Thanks for warning me about this. It was that little flag that helped me look for those extra charges. Thanks!
    Message was edited by: kae

  • How to determine the screen structure of the detail area of a screen...

    Hi all,
              How to determine the screen structure of the detail area of a screen?

    Hi,
    go to se38,
    loop at SCREEN.
    endloop.
    put the cursor on SCREEN and press F1, then u can seee it.
    Regards,
    Pavan
    Edited by: vishnu Pavan on Mar 23, 2009 11:03 AM

  • Diversity and trying to conver two different areas

    So the whole purpose of diversity is to provide/improve coverage in a same area.  Basically two antennas placed with a reasonable distance from each other and the concept is that one antenna might receive a better signal than other and then both signals can be combined to get a single stream.  End result better communication.
    Now something I have noticed that people are doing is taking the two antennas and putting them like 25 to 50 feet apart with diversity enabled trying to cover two different areas.  At times two different rooms so like one antenna is in one room and second one is in another room with a concrete wall between them.  Apparently they are saying that it is working for them.  I'm trying to understand the logic behind that how something like that wouldn't cause issues unless they have clients only on one side?

    I've seen set-ups like this before and people at the site can (and will) say that it's "working".  
    Until I get a wireless sniffer out or do some scanning, it seldom works.  They will say that it's working purely for political (don't want to get themselves into trouble) and/or financial (they can't afford to put two APs) or both.  
    This may work (somewhat) in 802.11a/b/g but stick 802.11n/ac and I'm certain it won't work.  When I mean it won't work, I mean you won't see the full benefit of connection speeds of >155 Mbps. 

  • My 15 inch Macbook Retina has Vertical grey area in my screen which i noted about 3 days ago.

    I noted a vertical grey area in my screen which suddenly appeared while editing a word document. I was trying to catch it by screenshot but it does not appear in the picture. I only notice it in white backgounds. Help pls. It is kinda annoying. My macbook pro retina is a month old. Thanks in advance.

    See -> http://www.matrox.com/graphics/en/products/gxm/dh2go/digital_me/.
    Good and simple way to get two monitors from one Thunderbolt port.
    Clinton

Maybe you are looking for

  • Problem with 'install credential for Adobe Document Services'

    Hi Folks,   I am trying to install credential for Adobe Document Services but I have got problem with some facts that are explained in tutorial how to install credential.   1. I do not have directory persistentcom.adobe~Trust.. under my directory ser

  • Unable to change ESB Soap Service endpoint

    Hi people , i have a problem, after creating a soap service , register de esb service on DefaultSystem, i want to call externally using "http://host:port/esb/wsil/DefaultSystem/<name of soap service>?wsdl everithing works ok , but when i try to chang

  • CS5.5 crashes when an effect is dragged

    I have been using Premiere CS5.5.1 without problems until recently. When an effect, (eg cross dissolve or fade to black), is dragged directly onto the timeline, Premiere locks up and cannot be started until the system is re-booted. If any of the efft

  • IPod Classic won't charge using MA242LL/A

    I recently purchased a used MA242LL/A AV connection kit for use with my 120GB iPod classic. The MA242LL/A connection kit contains a connector cable with a firewire output, which plugs into the 2-prong power adapter, however, my iPod will not charge w

  • Music skips and pauses during work out

    Ciao a tutti, I like to use my iPhone when I'm working, stapping it to my arm with an XtremMac SportWrap, and listening to my playlists. I'm running for about 40 minutes and usually about halfway through my workout, or towards the end, the music star