Help with linking bank to paypal

I try to link a bank account and when i do only this comes up http://gyazo.com/bbca31d31822df0b7b674557e01fd89a wt **bleep** is that ? i dont need that . I want to sign in to my online bank so it can link instantly but it is not letting me and it isn't giving me any options 

First, hopefully having all your code mushed onto the same line is a copy/paste error, otherwise it should look like...
stop();
btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
function mouseDownHandler(event:MouseEvent):void {
     gotoAndStop(1, "Recipe");
If the intention is to click the buttons to make them work, then you should use CLICK instead of MOUSE_DOWN.  MOUSE_DOWN can be a persistent state whereas CLICK involves releasing it afterwards.
As for the code to get you back home, where is it located on the timeline?  Are you getting any error messages when you try to use it?
One thing you should learn to use is the trace() function.  It is useful for troubleshooting.  You can use it now to see if your second button is talking to the function at all...
stop();
btn_home.addEventListener(MouseEvent.CLICK, mouse5DownHandler);
function mouse5DownHandler(event:MouseEvent):void {
     trace("the button works okay");
     gotoAndPlay(1, "MainMenu");
If you don't get that message in the output panel, you'll know the button is not properly coded to work.
Most folks here will recommend you get away from using scenes in a design that includes navigation--they have a history of being problematic.  Instead of using scenes, divide the one main timeline up into sections or use movieclips for the sections and manage their visibility... or do a bit of both.

Similar Messages

  • Anyone help with linking a bank account to your apple id. The form wants a phone number I only have a UK mobile number and it doesnt sem to want to accept it keeps l;ooping me back to entering a phone number.

    Anyone help with linking a bank account to your apple id. The form wants a phone number I only have a UK mobile number and it doesnt sem to want to accept it keeps l;ooping me back to entering a phone number.

    If you are trying to setup a charge card number on the Apple Store - make sure you are in the Correct country site - icon bottom right last time I saw it - where you can change country.  

  • Help with linking files

    I have several projects with 1000's of little clips in them- that have become unlinked- normally I can just use link media and that resolves it, but it seems like there has been either name changes to them (numbering in project panel seems different) or pathway to my ext hard drive has changed-help appreciated!!!

    Are you on a Mac, or a PC?
    If PC, what OS version do you have?
    The easiest way to find out exactly how your version of Windows sets drive letters is to go to Help, then type in "drive letter," without the quotation marks in the query box. You will then get all references to drive letter, and choose Setting Drive Letter, or similar syntax. That will step you through the process, and probably even provide a link to the disc management utility for your version.
    If you are on a Mac, then it would be Volume Name, but I cannot help with anything more than that, being a PC-only guy.
    Good luck,
    Hunt

  • Help with linked files/ compound paths please

    Hi - I am working with an illustrator file from another designer which has a compound path with linked files - when you link a new file the image is automatically resized and clipped to the path.  I am able to edit it but i want to make my own from scratch and can't figure it out. I'm working with Illustrator CS6. Any help greatly appreciated. Thanks

    Hi Steve - thanks for the reply - my question was a bit vague as I wasn't entirely sure what I was working with but I think your point about the new linked image scaling to the same size as the existing file has helped me understand it a bit more.  What I want to know how to do is to make an entirely new file with a clipping mask that I then link an image to.  I made a file with a clipping mask on the page and then chose file>place but the image I import is not being clipped (I ticked the link option when importing it) I see it working with the existing file I'm working with but I need to know how to make a new one myself.
    If this makes it clearer here's what I want to do ...
    I am making a banner, I have 3 flat jpegs of t-shirts that I want to place on the banner without their white background.  I made a clipping mask the same shape as the outline of the t-shirt and now I want to import the jpeg so it is a linked file and is clipped by the clipping mask and so I can use it in future to import different t-shirt image in without scaling and clipping them each time.
    REally appreciate your help, thanks.

  • Help with linking Keynotes

    Hey, I am using Keynote 2. Any help with this issue would be greatly appreciated, this is what I've got. . . . . I want to have one Keynote presentation that I use as a sort of Table of Contents and create links to other keynotes that I will be using on any given night. I have the link working fine, but when the linked keynote gets to the last slide the presentation ends, I want it to go back to my contents slide. This is how powerpoint does it. Any suggestions???

    Welcome to the discussions, Amaj10.
    No, Keynote doesn't work that way. If you want a link back to your contents, you need to place a link on the last slide that will link you to the contents presentation.

  • Help with linking buttons to Scenes

    Hey,
    Rookie to Flash and AS3. Just needed some help with my buttons. Im making a flash program about pancakes (random I know). I have a "Mainmenu" scene and then a "Recipe" scene. I have a button on my mainmenu which takes me to the recipe page when I click it, the code behind the button is
    "stop();btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);function mouseDownHandler(event:MouseEvent):void {
    gotoAndStop(1, "Recipe");
    Then when I arrive at my recipe page I have a button which will take me back to my MainMenu, the code behind that button is:
    "stop();btn_home.addEventListener(MouseEvent.MOUSE_DOWN, mouse5DownHandler);function mouse5DownHandler(event:MouseEvent):void {
    gotoAndPlay(1, "MainMenu");
    So I run my program and the first button works and takes me to recipe page but the button to get to the main menu does nothing, click it and no response or anything
    Please help

    First, hopefully having all your code mushed onto the same line is a copy/paste error, otherwise it should look like...
    stop();
    btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void {
         gotoAndStop(1, "Recipe");
    If the intention is to click the buttons to make them work, then you should use CLICK instead of MOUSE_DOWN.  MOUSE_DOWN can be a persistent state whereas CLICK involves releasing it afterwards.
    As for the code to get you back home, where is it located on the timeline?  Are you getting any error messages when you try to use it?
    One thing you should learn to use is the trace() function.  It is useful for troubleshooting.  You can use it now to see if your second button is talking to the function at all...
    stop();
    btn_home.addEventListener(MouseEvent.CLICK, mouse5DownHandler);
    function mouse5DownHandler(event:MouseEvent):void {
         trace("the button works okay");
         gotoAndPlay(1, "MainMenu");
    If you don't get that message in the output panel, you'll know the button is not properly coded to work.
    Most folks here will recommend you get away from using scenes in a design that includes navigation--they have a history of being problematic.  Instead of using scenes, divide the one main timeline up into sections or use movieclips for the sections and manage their visibility... or do a bit of both.

  • Need help with linked lists.

    I have a school assignment to make a linked list with a linked list.
    The first basic is to make a list of people, and link them together in a linked list. So far, so good.
    The problem comes when I'm going to make linked lists in each of these objects that include the relationships between the people in it.
    So If I have 10 peolpe in a list, person 1 might know person 3, 4 and 8. They will all know person 1 back of course. My problem is that it isn't just one group of friends, person 3 might not know person 4 and 8, but maybe he knows person 10. So all need "their own" list.
    Therefor I can't see how I'm supposed to use linked lists for them, as I can't just link them togeter with e.g. "Person nextFriend;" The text says specifically to use linked lists. Well, I'm stuck.
    Edited by: Skruf on Jan 27, 2009 3:22 PM

    Skruf wrote:
    I know it doesn't matter what the objects represent, I just needed a way to explain.
    But a linked list is basically just a redirect to the next in the list, right?No, a linked list is a particular implementation of a list.
    Then I can't see how it's possible to make individual friend lists.No clue what problem you're having.
    People with links
    null - 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - nullThat means nothing.
    I can't see how that can be used to make independent links. Do they mean that I'm support to stort it in arrays or something then?
    The person list, is (as you can see in my "illustration") only a "next" and "previous" person, so I can't use that way to link the friends together. nextFriend and lastFriend obviously doesn't work.
    That's my problemLike I said: A Person object contains a linked list. In that linked list you put references to that Person's friends.

  • Help with linked lists and searching

    Hi guys I'm very new to java. I'm having a problem with linked lists. the program's driver needs to create game objects, store them, be able to search the linked list etc. etc. I've read the API but I am really having trouble understanding it.
    First problem is that when I make a new game object through the menu when running the program, and then print the entire schedule all the objects print out the same as the latest game object created
    Second problem is searching it. I just really have no idea.
    Here is the driver:
    import java.util.*;
    public class teamSchedule
         public static void main (String[]args)
              //variables
              boolean start;
              game game1;
              int selector;
              Scanner scanner1;
              String date = new String();
              String venue = new String();
              String time = new String();
              String dateSearch = new String();
              double price;
              String opponent = new String();
              int addindex;
              List teamSchedLL = new LinkedList();
              String dateIndex = new String();
              String removeYN = new String();
              String venueIndex = new String();
              String opponentIndex = new String();
              start = true; //start makes the menu run in a while loop.
              while (start == true)
                   System.out.println("Welcome to the Team Scheduling Program.");
                   System.out.println("To add a game to the schedule enter 1");
                   System.out.println("To search for a game by date enter 2");
                   System.out.println("To search for a game by venue enter 3");
                   System.out.println("To search for a game by opponent enter 4");
                   System.out.println("To display all tour information enter 5");
                   System.out.println("");
                   System.out.println("To remove a game from the schedule enter search for the game, then"
                                            + " remove it.");
                   System.out.println("");
                   System.out.println("Enter choice now:");
                   scanner1 = new Scanner (System.in);
                   selector = scanner1.nextInt();
                   System.out.println("");
                   if (selector == 1)
                        //add a game
                        scanner1.nextLine();
                        System.out.println("Adding a game...");
                        System.out.println("Enter game date:");
                        date = scanner1.nextLine();
                        System.out.println("Enter game venue:");
                        venue = scanner1.nextLine();
                        System.out.println("Enter game time:");
                        time = scanner1.nextLine();
                        System.out.println("Enter ticket price:");
                        price = scanner1.nextDouble();
                        scanner1.nextLine();
                        System.out.println("Enter opponent:");
                        opponent = scanner1.nextLine();
                        game1 = new game(date, venue, time, price, opponent);
                        teamSchedLL.add(game1);
                        System.out.println(teamSchedLL);
                        System.out.println("Game created, returning to main menu. \n");
                        start = true;
                   else if (selector == 2)
                        //search using date
                        scanner1.nextLine();
                        System.out.println("Enter the date to search for in the format that it was entered:");
                        dateIndex = scanner1.nextLine();
                        if (teamSchedLL.indexOf(dateIndex) == -1)
                             System.out.println("No matching date found.  Returning to main menu.");
                             start = true;
                        else
                             //give user option to remove game if they wish.
                             System.out.println(teamSchedLL.get(teamSchedLL.indexOf(dateIndex)));
                             System.out.println("Would you like to remove this game? Y/N");
                             removeYN = scanner1.nextLine();
                             if (removeYN == "Y" || removeYN == "y")
                                  teamSchedLL.remove(teamSchedLL.indexOf(dateIndex));
                                  System.out.println("Scheduled game removed.");
                        System.out.println("\n Returning to main menu. \n");
                        start = true;
                   else if (selector == 3)
                        //search using venue name
                        scanner1.nextLine();
                        System.out.println("Enter the venue to search for in the format that it was entered:");
                        venueIndex = scanner1.nextLine();
                        if (teamSchedLL.indexOf(venueIndex) == -1)
                             System.out.println("No matching venue found.  Returning to main menu.");
                             start = true;
                        else
                             //give user option to remove game
                             System.out.println(teamSchedLL.get(teamSchedLL.indexOf(venueIndex)));
                             System.out.println("Would you like to remove this game? Y/N");
                             removeYN = scanner1.nextLine();
                             if (removeYN == "Y" || removeYN == "y")
                                  teamSchedLL.remove(teamSchedLL.indexOf(venueIndex));
                                  System.out.println("Scheduled game removed.");
                        System.out.println("\n Returning to main menu. \n");
                        start = true;
                   else if (selector == 4)
                        //search using opponent name
                        scanner1.nextLine();
                        System.out.println("Enter the opponent to search for in the format that it was entered:");
                        opponentIndex = scanner1.nextLine();
                        if (teamSchedLL.indexOf(opponentIndex) == -1)
                             System.out.println("No matching opponent found.  Returning to main menu.");
                             start = true;
                        else
                             //give user option to remove game
                             System.out.println(teamSchedLL.get(teamSchedLL.indexOf(opponentIndex)));
                             System.out.println("Would you like to remove this game? Y/N");
                             removeYN = scanner1.nextLine();
                             if (removeYN == "Y" || removeYN == "y")
                                  teamSchedLL.remove(teamSchedLL.indexOf(opponentIndex));
                                  System.out.println("Scheduled game removed.");
                        System.out.println("\n Returning to main menu. \n");
                        start = true;
                   else if (selector == 5)
                        //display tour info
                        System.out.println("Tour Schedule:");
                        System.out.println(teamSchedLL + "\n");
                   else
                        System.out.println("Incorrect choice entered. Returning to menu");
                        System.out.println("");
                        System.out.println("");
                        System.out.println("");
    and here is the game class:
    public class game
         private static String gameDate;
         private static String gameVenue;
         private static String gameTime;
         private static double gamePrice;
         private static String gameOpponent;
         public static String gameString;
         //set local variables equal to parameters
         public game(String date, String venue, String time, double price, String opponent)
              gameDate = date;
              gameVenue = venue;
              gameTime = time;
              gamePrice = price;
              gameOpponent = opponent;
         //prints out info about the particular game
         public String toString()
              gameString = "\n --------------------------------------------------------";
              gameString += "\n Date: " + gameDate + " | ";
              gameString += "Venue: " + gameVenue + " | ";
              gameString += "Time: " + gameTime + " | ";
              gameString += "Price: " + gamePrice + " | ";
              gameString += "Opponent: " + gameOpponent + "\n";
              gameString += " --------------------------------------------------------";
              return gameString;
    }I'm sure the formatting/style and stuff is horrible but if I could just get it to work that would be amazing. Thanks in advance.
    Message was edited by:
    wdewind

    I don't understand your first problem.
    Your second problem:
    for (Iterator it=teamSchedLL.iterator(); it.hasNext(); ) {
    game game = (game)it.next();
    // do the comparation here, if this is the game want to be searched, then break;
    }

  • Trouble with linking bank account

    Iv only just started using ebay and sold a number of items. I linked my bank account in order to receive the money from the buyers. My wallet says (x amount of money) pending. I want to add this money to my bank account but it just keeps saying i have to link it but i already have? Its annoying me because iv ordered stuff which i now cant pay for until i get this money into my bank. PLEASE HELP

    If its pending then you can't withdraw it until its cleared. Sounds as if you are a new seller and so the new seller hold applies. Info in the link. https://www.paypal.com/uk/webapps/mpp/security/ebay-payments-learn-more
    When it has cleared click on withdraw funds and you can send it to any bank account linked and verified to your paypal account setting up the direct debit mandate.     ********************************** I give up my time to help you so a thank you or kudos would be cool.
    Marking one of my replies as a solution would be appreciated if I sorted your problem.  

  • Help with linking tables

    Hello,
    I am not really sure if this is a site that this question should be asked but I have done alot of searching and can't seem to find an answer so....
    I work for a large company that uses Oracle for its databases.
    In my department we use access link tables to look at the Oracle data.
    In one such database I need to link to the oracle tables but only see certain data when I open the link (like a fliter).
    I have no idea how to do this...I just know it can be done.. I have heard that you can use Oracle views to do the filtering on the server side and it would only return the filtered data. I think I have to do this with SQL.
    But I really dont know how to go about it.
    So I am posting here hoping that you guys could help me or point me in the right direction as I don't even know what questions to ask in google :)
    I will be glad to give any information you may need to help me out.
    Thanks a Million.

    user12063135 wrote:
    Hello,
    I have heard that you can use Oracle views to do the filtering on the server side and it would only return the filtered data. I think I have to do this with SQL.
    Thanks a Million.You heard it right and your thouts are are floating in the right direction.
    Use views and you will be fine.

  • Help with link to MP4 Video

    I need some help figuring out why the link to my Mp4 movies
    are not working. I created my website in Dreamweaver on a mac. On
    the video page I have direct link to several Mp4 movies which are
    located is the dame folder as the website is on a remote server.
    The direct link/path is correct but when the link is clicked I get
    a "This page cannot be found page". I also tried embedding the mp4
    into the video page and when the page is viewed I get a Q with a
    question mark over it. I also have links to wmv movies and those
    links all work and play fine. I just don't understand why wmv links
    work and mp4 links don't. I would link to know if there is an
    incompatibility problem and/or some technical issue with mp4's that
    causing the link not to work. I have attached the code I used to
    embed the mp4 and I believe it is correct. If anyone can shed some
    light on this topic I would greatly appreciate it. Thank
    you!

    Check this page and see if it works
    http://webdesign.about.com/od/video/a/add_web_video.htm

  • Need Help with Linking Question

    Not quite sure how to do this.
    I have a gallery page of thumbnails that I want to reference
    a different layout page for the individual image.
    What I want to happen is, when you click the thumbnail on the
    thumbnail gallery page, a new layout page opens in the same browser
    window with that thumbnails larger image. I know how to link the
    new .html page , or the larger image, But I don't know how to link
    them both so they both open?
    I have many images and pages of thumbnails that I have to do
    this with.
    Thanks for any help

    > a new layout page opens in the same browser window
    You want the new page to replace the current page in the
    browser viewport?
    > But I don't know how to link them both so they both
    open?
    I guess I don't understand what "both" is?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Orr 4" <[email protected]> wrote in message
    news:eb26ps$mlp$[email protected]..
    > Not quite sure how to do this.
    > I have a gallery page of thumbnails that I want to
    reference a different
    > layout page for the individual image.
    > What I want to happen is, when you click the thumbnail
    on the thumbnail
    > gallery page, a new layout page opens in the same
    browser window with that
    > thumbnails larger image. I know how to link the new
    .html page , or the
    > larger
    > image, But I don't know how to link them both so they
    both open?
    > I have many images and pages of thumbnails that I have
    to do this with.
    >
    > Thanks for any help
    >

  • Help with controlling Bank changes on Yamaha S90ES from Logic

    Can anyone please help me with getting Logic to control the bank changes on this beast. I have it controlling the patch changes no problem it is just the bank changes I need thanx

    Yeah, I'm a bit confused too. Assuming your keyboard is sending bank/program changes in the same format is receiving them, Logic will just record your data, and play it back as the keyboard sent it.
    Logic is ignoring bank changes sent from my Korg Triton.
    So, when recording into a region, you only get program changes, and not bank changes in your recorded data?
    However, Logic is sending bank changes to the Triton perfectly.
    From playing back a sequence recorded from program changes generated by the keyboard, or using Logic's bank/program change parameters in the instrument parameters?
    If I use my keyboard to set the instrument, Logic sets the program,
    but the bank is ignored.
    I don't understand what you mean by "Logic sets the program".
    n the event list, the incoming data looks as standard as could be:
    my keyboard is sending a bank MSB and LSB, via events 0 and 32,
    followed by a program change,
    And you are saying that if you play that back, the keyboard doesn't change sounds correctly?
    followed by a sysex "66/48" which I assume identifies the source
    of the message (the Korg).
    You can't assume anything - it could be anything. It could be a sysex patch dump of the patch, or it could be some mode setting. You'd need to read the keyboard manual to find out what it is.
    So the question is: how do I get Logic to PAY ATTENTION to the
    darn bank change being sent by my keyboard?
    I really don't understand what you mean by "PAY ATTENTION". If you squirt MIDI data at Logic, Logic will record it into a region, and then play it back, as would all sequencers. What should Logic do differently?

  • Help with links in Dreamweaver8

    I am trying to get on speed with Dreamweaver8, then CS3. I
    built a custom site using Adobe CS2, Fireworks and then
    Dreamweaver8. I have 7 pages built from 3 different templates (with
    the same element but different layout). All the hyperlinks and
    links on the 7 pages worked just fine, but the moment I added a
    pop-up menu to the main page, all the links to other pages stopped
    working. I have looked over it , tried the auto link fix but can't
    seem to fix the broken links. Any tip or advice on how to go about
    this will be appreciated.
    Thanks.

    The ideal ratio for template pages to site pages is 1/#,
    meaning that you
    produce the entire site with a single template. This seems
    impossible at
    first blush, but it's not, particularly once you master the
    use of
    server-side includes, and CSS to build your pages. By this, I
    mean that you
    can handle subordinate section-specific navigation elements
    using
    server-side includes, and you can handle layout differences
    using CSS. It's
    not so hard.
    > On the pop-up, it was a just one menu pop-up on one of
    the links to one of
    > the
    > pages. I created it with the Behavior button in
    Fireworks
    New users find that irresistable. Even a little experience
    with them should
    tell you that it's deadly. There are much better ways to do
    those kinds of
    menus. But without seeing your code, we are all flying blind.
    > I can send you the pages for a review if you give me an
    address I can send
    > them to.
    Please, no. One of the benefits of a public forum like this
    one is that
    many people can participate/collaborate in fixing a problem.
    By sending
    someone a file, rather than making it public, you defeat that
    whole benefit.
    The best bet would be to upload the files to some webspace
    that you control,
    and post a link to the uploaded pages. Can you do that?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "inspt" <[email protected]> wrote in message
    news:[email protected]...
    > Murray wrote - "Why use templates at all with this kind
    of ratio? You know
    > it's
    > not
    > necessary to do this just because your layout changes a
    bit...."
    >
    > Thanks for your reply to my question. In answering your
    question or point
    > you
    > made above. You can easily tell that I am trying to get
    my hands around
    > using
    > the program. The layout of the pages changed almost all
    through the pages
    > and
    > the one way I thought I could get around that was to use
    different
    > template
    > files. At the end of the day, I got myself into more
    headaches and
    > heartaches -
    > all my links just disappeared on me. I am self-taught
    with a painfully
    > learning
    > experience. I believe there should be a better and
    easier way. I honestly
    > do
    > not know. Any help you can give me will be appreciated.
    >
    > On the pop-up, it was a just one menu pop-up on one of
    the links to one of
    > the
    > pages. I created it with the Behavior button in
    Fireworks, then
    > re-imported the
    > changes to Drmvr again and since then, the links got
    screwed up.
    >
    > I can send you the pages for a review if you give me an
    address I can send
    > them to.
    >
    > Thanks a lot for your help.
    >

  • Help with linking pages

    I have a database with 1 table and 4 enteries
    the field are
    idbook,title,desc,cover,page1,page2,page3
    I have a page that displays the title and desc and links to a
    details page that shows title desc cover and this page links to
    page1.cfm that show page 1 info this links to page 2 and so on
    When I select book 2 I get to see book 2 details but when I
    go from book 2 details I get the page 1 book 1 info not the info
    for page2 book2.
    What I am doing wrong I am using url parameters but no matter
    what book I select I always get book 1 page 1 info
    please help thhanks

    jnc1965 wrote:
    >
    > please help thhanks
    >
    You have coded something wrong or have bad data.
    Hope that helps.
    Ian
    P.S. What else can I do without knowing a single thing about
    either your
    data or your code.
    P.S.S. Unless you would like to hire somebody to fix it for
    you, then
    feel free to contact me for contract details.

Maybe you are looking for

  • IPhone 3G with Parrot CK3000 Evolution

    I ordered a Parrot CK3000 for my Saab the other day. It should be here Monday so I can install it. I have read though that I cannot sync my iPhone's contacts to it to be able to use the voice dialing and stuff. It's not the end of the world, I don't

  • How do I get my icon back on Macbook Pro

    I was trying to move the FB icon to the main display by dragging and dropping it but it disappeared.  Please show me how to get the icon back on my main screen please.  I have a Macbook Pro.

  • HELP needed to write a function returning 1 record from join tables

    Hi, I would like to have some help to write a function so It can return 1 result. I post my question in the APEX Express sextion but I think it's belong here. Mount Points and Home Directory Also, can I move a thread in another forum? thanks Roseline

  • IPAd2  is frozen after trying to update ios8

    My Ipad2 wants me to plug into ITunes and the screen is frozen

  • Automatic Insert Singature in crmcmp_ccs_eml

    Hello Experts, I need a help to add to the E-mail in SAP CRM 7.0 the option to add Automaticakly Signature from the dropdown list, the signature is the one which have id = ZsignEn in the dropdown list Thanks