Problem using text boxes as the "image" to drag and drop over audio file

I have been adding audio files to my page in iWeb (previous version, not '08), but I am having a problem giving them titles.
When you first drag a file from iTunes into iWeb, it provides a space for you to drag and drop a picture. The online iWeb guide also says that you can drag a text box there instead of a picture.
I created a text box with the text I would like to drop over the controller. However, it is no longer allowing me to drop the text box there. I used to be able to do this, and I don't know what I'm doing differently now. Any suggestions?
Thanks!
-- Will

foobar2000 with the ipod plugin will allow you to drag/drop FLAC files and when it syncs the ipod, it converts the FLAC files on the fly. MUCH better than dealing with the crappy iTunes interface and having to pre-convert the files. I absolutely loathe iTunes and it just gets worse and worse!

Similar Messages

  • Placing text component on an image by drag and drop

    Hi evrybody...
    I need to place annotation on the images.
    As part of that i need to drag text component on that image.
    I have no idea of doing this...
    If any body can help ..it is great....
    Thanks in advance...

    Turn off the Runaround settings on the image.

  • I used to be able to copy or drag and drop links from the address window. Now with the update, only the address is copied or dragged not the link. (Says something about not giving site information). I want to be able to drag and drop or copy links.

    Question
    I used to be able to copy or drag and drop links from the address window. Now with the update, only the address is copied or dragged not the link. (Says something about not giving site information). I want to be able to drag and drop or copy links.

    To be more precise, you can setup a JComponent or JPanel on top of your JavaFX nodes that has a TransferHandler that can convert the (AWT/Swing) images dragged to the app to JavaFX image and then insert it into the underlying node.
    As for the file chooser itselft: ListView and the JavaFX composer can allow you to create one quite easily. TreeView can aslso be used to a lesser extend (still a big buggy). For both of these, there are small bugs in the Cell API that may (or may not) prevent from displaying a proper thumbnail in the cells.
    You can also use a regular JFileChooser if you do not mind the dialog box having a different LnF from the rest of your application.

  • I can't drag and drop iTunes music files into Roxio Jam 6 anymore and, now I have to import music one song at a time by using the " " or "-" buttons on the bottom. What is going on? G5 Dual 2 Ghz and OS 10.4.11

    Hi. I have not used Roxio Jam for quite a long time and I just wanted to make a few CDs. Jam used to work easily and well. I have a problem. I can't drag and drop iTunes music files anymore and, now I have to import music one song at a time by using the "+" or "-" buttons on the bottom. What is going on? I trashed the preferences file and restarted Jam to no avail. I also have selected that Jam should open files with iTunes in the Jam preferences. I have a G5 DP 2Ghz PPC  machine with OS 10.4.11, iTunes 9.2.1 and Quicktime's version is 7.6.4. I have 2 GB of RAM and the machine has dual 1.25 Ghz. processors plus a 500 GB HD. Can anybody give me any suggestions?
    Thanks in advance,
    Larry

    I found an solution.
    Uninstalling AirParrot as well as the two offending AirParrotDriver.kext and APExtFramebuffer.kext files in System>Library>Extensions was the fix. All problems disappeared.

  • If i use Ps5 the order lasso, drag and drop or letters the win vista crashes down. Can anybody help?

    If i use PS5 the order lasso,drag and drop or letters the win vista crashes down. Can anybody help me?

    Now that I'm looking at it, I don't have it... but I still have the problem:(. I rebooted the PRAM, I cleaned my permissions, run utilities checks, nothing helps, I'm at the end of my wits. I called apple - all I got was bad attitude... I don't know what to do, this disfunction makes it impossible for me to work....
    does anybody know what I could do to fix this issue?

  • Unable to send or recieve images via drag and drop?

    I am unable to send or recieve jpg and gif images by dragging and dropping from finder. How do I fix this?

    Hi,
    Where are you dragging them to ?
    You Can do it two ways using Drag.
    One is to the Buddy's Name in the Buddy list and letting go  (it gets sent as a loose file)
    The Second is to drag it to the Text field during a Text chat (Excluding Group Chats)
    The First causes an Invite to accept to pop up on the Buddies Screen.
    You can also see see when it is Accepted (you may even have to confirm sending depending on your Settings)
    The Second gets sent as a File Link in the Chat which the Buddy has to Also Accept...
    You can also send files by highlighting a Buddy and going the the Buddies Menu > Send File.
    This method tends to point to error with the File Transfer port not being open.
    So...
    Check you can send Files first by all three methods.  (these tends to ignore  Firewall and Router settings as it is Outgoing)
    Get your Buddy to Send by all three methods.
    IF this is AIM and you are having issues log out of the Account  (IChat > Preferences > Accounts > Account Info Tab (Deselect "Use this Account")
    Now go to the Sever Settings
    Change the Default port from 5190 to 443.
    iChat Logs in on port 5190 using the TCP Protocol.
    File Transfers or Direct IMs when done in a Chat are sent on Port 5190 but on the UDP Protocol (It is Peer-to-Peer).
    Some Router don't like this dual Use.
    If you still have issues then you will need to either Enable the Firewall and check iChat in in the List of allowed Apps and/or open  port 5190 in you router. (on the UDP Protocol if stated)
    10:22 PM      Wednesday; September 28, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How to change the effect of drag and drop from MOVE to COPY in alv tree.

    Hi,
    I am using a tool in which now the behaviour on drag and drop is MOVE. I want to change it to COPY.
    But I do not know which parameter needs to be set and where.
    please help.
    Regards,
    Smita.

    Hi,
    Thanks for quick reply.
    The code goes on like this
    METHOD set_dd_behavior.
      DATA: l_copysrc(1) TYPE c,
            l_movesrc(1) TYPE c,
            l_droptarget(1) TYPE c.
    Set the Drag and Drop Flavors.
      CREATE OBJECT dd_behavior.
      READ TABLE reg_functions WITH KEY name_function = 'COPY'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_copysrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'CUT'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_movesrc = 'X' .
      ENDIF.
      READ TABLE reg_functions WITH KEY name_function = 'PASTE'
      TRANSPORTING NO FIELDS.
      IF sy-subrc = 0.
        l_droptarget = 'X' .
      ENDIF.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'MOVE'
      dragsrc = l_movesrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>move.
      CALL METHOD dd_behavior->add
      EXPORTING
      flavor = 'COPY'
      dragsrc = l_copysrc
      droptarget = l_droptarget
      effect = cl_dragdrop=>copy.
      CALL METHOD dd_behavior->get_handle
      IMPORTING handle = dd_behavior_handle.
    ENDMETHOD.
    Here what changes needs to be done.
    As I see once COPY is added and next time MOVE is added.
    I am able to check because I am not able to edit while debugging the value of effect.
    Please suggest.
    Warm regards,
    Smita.

  • Is there a way to move images without dragging and dropping?

    I am trying to drag and drop files out of one folder and put into a subfolder in the library module but it wont let me and I am wondering if there is a navigation menu that will allow me to do the same?

    Drag and drop should work.
    Make sure when you begin the drag, you are pointing at the photo itself and not the grey rectangle around the photo.
    There is no menu command.

  • How can i get the address with drag and drop from address book into pages?

    I want to creat a letter withe the new pages. Normaly it was possible to put the adress from the adressbook with drag and drop into the letter. So it was possible to create one letter with many different adresses. But now I didn't find this function any more. How to do ist now?
    Withe best regards and I'm sorry for may bad english
    Klaus

    Sounds like you "upgraded" to Pages 5.
    Apple has removed over 90 features from Pages 5.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=3527487677f0c 6fa05b6297cd00f8eb9&mforum=iworktipsntrick
    Pages '09 should still be in your Applications/iWork folder.
    Archive/trash Pages 5, after Exporting your files to Pages '09, and rate/review it in the App Store, then get back to work.
    Peter

  • Hi,  This was not what I meant.     The requirement is:      Drag and drop any one of specific list

    Hi,
    This was not what I meant.
    The requirement is:
    Drag and drop any one of specific list of components say x, y,z in the parsys
    Only after the drag and drop of these components other components can be dragged to the parsys. So we can say that the parsys should allow only the specific components to be added first and only after that other components can be added.
    Thanks ,
    Dipti

    Hi there
    I'm guessing that you mean to ask if one is able to force a user to perform a drag-and-drop as part of a simulation?
    Unless you program it in Flash or some other application it isn't avaiable. Check the link below for more.
    Click here to view
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How to use the palette or drag and drop functions in netbean?

    Is there anyone who can help me out on using drag and drop function in netbean to design GUI inteface..??
    Is palette is the tool that can be used to drag and drop.??
    thank you in advance.

    I actually really like the GUI builder in netbeans. I used to be a big eclipse user so I am very familiar with coding GUIs by hand, and most of what I do involves GUI's or at least swing.
    At first I hated netbeans, I hated that I couldn't edit the code most. Then I decided to take a deep breath and really examine the issue. What I discovered is that most of the edits I wanted to make but couldn't really weren't the right way to be doing it in the first place, for the rest the code is actually really easy to change you just have to know how.
    Now my palette is huge, probably about 250 objects in it organized into sections that work for me. Basically if I want a object to do something that is not already in the palette I simply write a new object and add it to the palette. I started small like with rounded buttons/progress bars, and as I got comfortable I now have some fairly advanced objects like grids, isometric grids, alpha composits, an animated hourglass countdown timer, and an animated "loading/activity" indicator that is not tied to a progress indicator.
    The main reason I stuck with the netbeans drag and drop GUI builder is it's layout manager is really a very nice layout manager, you couldn't pay me enough to go back to eclipse or codeing GUIs by hand, as I can now do in one day what used to take me several weeks.
    So what I am saying is stick with netbeans and the drag and drop, it sucks at first, but once you get to a point where you are comfortable with it and adding to the palette it will become a great tool.
    JSG

  • Images load funny, videos don't sync if on another tab, and I can't drag and drop Google Drive files.

    I've always used Firefox, but the past couple months things have started getting a bit screwy and I am not sure why as, to my knowledge, I haven't installed anything new. I first noticed it with images on webpages. If they load while I'm on another tab, when I switch back it's a white block until I scroll up or down (so the image is off the visible screen) and then when I scroll back to the image it's there. Videos also won't sync right if I switch to another tab while it's loading. I actually have to refresh the page and wait on that webpage in order for it to work. The nail in the coffin for me, though, is that I can no longer 'drag and drop' files to collections in Google Drive. I was always able to do this - and I can do it in other browsers like Chrome - but now not in Firefox. I'd hate to switch browsers, but these things are really irking me.

    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!

  • Display JTree Node as image  while Drag And Drop

    HI all.
    I have multiple 5 JTrees which involve drag and drop to each other . I would like to display the node(JCompenent) as image/cursor which a DnD operation .So that user could see what he drags .
    I tried out the example about ghost image .
    http://www.javaworld.com/javaworld/javatips/jw-javatip114.html
    This works fine ,but when i apply the same concepts to my application it doesnt work .
    Could any one suggest what could be problem.
    Cheers,Baiju

    I also need to drag my node on my scene during a "drag and drop" operation. But i can't find a solution.
    I've tried to use "startFullDrag()" and catch MouseDragEvent, but nothing ...
    Can anyone help me ?
    Thank !

  • Using MouseMotionListener in order to have a drag and drop effect

    Hello,
    How is the exact syntax in order for the following code to work even for Drag and Drop effects of the drawn figures.
    package tpi;
    import java.awt.*;
    import java.awt.event.*;
    public class Desenare extends Frame{
         private Panel selPanel;
         private Choice sel;
         private Choice fond;
         private Choice lista;
         private MyCanvas canvas;
         public Desenare(String titlu){
              super(titlu);
              selPanel = new Panel(new GridLayout(6,1));
              Label label1 = new Label("Culoare");
              sel = new Choice();
              sel.addItem("Alb");
              sel.addItem("Albastru");
              sel.addItem("Verde");
              sel.addItem("Negru");
              sel.select(0);
              Label label2 = new Label("Figura");
              lista = new Choice();
              lista.addItem("Dreptunghi");
              lista.addItem("Linie");
              lista.addItem("Cerc");
              lista.select(0);
              Label label3 = new Label("Culoare Fond");
              fond = new Choice();
              fond.addItem("Negru");
              fond.addItem("Verde");
              fond.addItem("Albastru");
              fond.addItem("Alb");
              fond.select(0);
              IL itemListener = new IL();
              sel.addItemListener(itemListener);
              fond.addItemListener(itemListener);
              lista.addItemListener(itemListener);
              selPanel.add(label1);
              selPanel.add(sel);
              selPanel.add(label2);
              selPanel.add(lista);
              selPanel.add(label3);
              selPanel.add(fond);
              selPanel.setBackground(Color.LIGHT_GRAY);
              canvas = new MyCanvas();
              add("West",selPanel);
              add("Center",canvas);
              addWindowListener(new WA());
              setSize(400,300);
              setVisible(true);
         class WA extends WindowAdapter{
              public void windowClosing(WindowEvent e){
                   System.exit(0);
         class IL implements ItemListener{
              public void itemStateChanged(ItemEvent event){
              canvas.repaint();
         Color genCuloare(String culoare){
              Color color;
              if (culoare.equals("Negru")) color = Color.black;
              else if (culoare.equals("Verde")) color = Color.green;
              else if (culoare.equals("Albastru")) color = Color.blue;
              else if (culoare.equals("Alb")) color = Color.white;
              else color = Color.black;
              return color;
         class MyCanvas extends Canvas{
              public void paint(Graphics g){
              String culoare = sel.getSelectedItem();
              Color color = genCuloare(culoare);
              g.setColor(color);
              color = genCuloare(fond.getSelectedItem());
              setBackground(color);
              Dimension dim = getSize();
              int cx = dim.width/2;
              int cy = dim.height/2;
              String figura = lista.getSelectedItem();
              if (figura.equals("Linie"))
              g.drawLine(cx/2,cy/2,3*cx/2,3*cy/2);
              else if (figura.equals("Dreptunghi"))
              g.fillRect(cx/2,cy/2,cx,cy);
              else if (figura.equals("Cerc"))
              g.fillOval(cx/2,cy/2,cx,cy);
              ML listener = new ML();
              canvas.addMouseMotionListener(listener);
              public class ML implements MouseMotionListener{
                   @Override
                   public void mouseDragged(MouseEvent arg0) {
                        // TODO Auto-generated method stub
                   @Override
                   public void mouseMoved(MouseEvent arg0) {
                        // TODO Auto-generated method stub
              public static void main(String []args){
              Desenare d = new Desenare("Desenare 2D");
    Where exactly do i have to add the MouseMotionListener , i guess that i should add it to the canvas , and the inherited metod shoul be modified in order to use canvas.repaint() at the location where the draggin effect has ended, or if there is some other way when i press the mouse on the figure and start moving around to getX() and getY() and use the repaint method at those coordinates , wich is a drag and drop effect , i think that it would be MouseMoved , but i`m not sure, and also not sure how to use the Event Listener , where exactly ?
    Thanks,
    Paul

    When you post a code, use code tags for propere formatting. Click CODE icon on the taskbar for generating code tag pair you need.
    In order to do dragging the figure on the canvas or panel, you should use advanced Java 2D APIs, including Shape and its descendants. Example shown below might help, but beware, this version does not remember previous drag result for a figure over multiple lista Choice selection. Previous drag result is reset for the next selection of the same figure.
    If you want to prevent flickering on the screen while dragging, use javax.swing and its components. If you have to use AWT, draw the figure into an Image or BufferedImage of full panel size and call g2.drawImage() in the paint() method.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.event.*;
    public class Desenare extends Frame{
      private Panel selPanel;
      private Choice sel;
      private Choice fond;
      private Choice lista;
      private MyCanvas canvas;
      Color fcolor, bcolor;
      enum Fig{LINE, RECT, CIRCLE};
      Fig fig;
      int xL0, yL0, xL1, yL1;
      int xR0, yR0, xR1, yR1;
      int xC0, yC0, xC1, yC1;
      int dxL, dyL, dxR, dyR, dxC, dyC;
      Shape shape;
      public Desenare(String titlu){
        super(titlu);
        selPanel = new Panel(new GridLayout(6,1));
        fcolor = bcolor = Color.white;
        dxL = dyL = dxR = dyR = dxC = dyC = 0;
        Label label1 = new Label("Culoare");
        sel = new Choice();
        sel.addItem("Alb");
        sel.addItem("Albastru");
        sel.addItem("Verde");
        sel.addItem("Negru");
        sel.select(0);
        Label label2 = new Label("Figura");
        lista = new Choice();
        lista.addItem("Dreptunghi");
        lista.addItem("Linie");
        lista.addItem("Cerc");
        lista.select(0);
        Label label3 = new Label("Culoare Fond");
        fond = new Choice();
        fond.addItem("Alb");
        fond.addItem("Albastru");
        fond.addItem("Verde");
        fond.addItem("Negru");
        fond.select(0);
        IL itemListener = new IL();
        sel.addItemListener(itemListener);
        fond.addItemListener(itemListener);
        lista.addItemListener(itemListener);
        selPanel.add(label1);
        selPanel.add(sel);
        selPanel.add(label2);
        selPanel.add(lista);
        selPanel.add(label3);
        selPanel.add(fond);
        selPanel.setBackground(Color.LIGHT_GRAY);
        canvas = new MyCanvas();
        add(selPanel, BorderLayout.WEST);
        add(canvas, BorderLayout.CENTER);
        addWindowListener(new WA());
        setSize(400, 300);
        setVisible(true);
      class WA extends WindowAdapter{
        public void windowClosing(WindowEvent e){
          System.exit(0);
      class IL implements ItemListener{
        public void itemStateChanged(ItemEvent event){
          Object o = event.getSource();
          if (o == sel){
            String culoare = sel.getSelectedItem();
            fcolor = genCuloare(culoare);
            canvas.repaint();
          else if (o == fond){
            bcolor = genCuloare(fond.getSelectedItem());
            canvas.setBackground(bcolor);
          else if (o == lista){
            String figura = lista.getSelectedItem();
            if (figura.equals("Linie")){
              fig = Fig.LINE;
            else if (figura.equals("Dreptunghi")){
              fig = Fig.RECT;
            else if (figura.equals("Cerc")){
              fig = Fig.CIRCLE;
            shape = prepareShape(fig);
            canvas.repaint();
      Shape prepareShape(Fig fig){
        Shape shape = null;
        if (fig == Fig.LINE){
          shape = new Line2D.Float(xL0, yL0, xL1, yL1);
        else if (fig == Fig.RECT){
          shape = new Rectangle2D.Float(xR0, yR0, xR1, yR1);
        else if (fig == Fig.CIRCLE){
          shape = new Ellipse2D.Float(xC0, yC0, xC1, yC1);
        return shape;
      Shape prepareShapeDrag(Fig fig){
        Shape shape = null;
        if (fig == Fig.LINE){
          shape = new Line2D.Float(xL0 + dxL, yL0 + dyL, xL1 + dxL, yL1 + dyL);
        else if (fig == Fig.RECT){
          shape = new Rectangle2D.Float(xR0 + dxR, yR0 + dyR, xR1, yR1);
        else if (fig == Fig.CIRCLE){
          shape = new Ellipse2D.Float(xC0 + dxC, yC0 + dyC, xC1, yC1);
        return shape;
      Color genCuloare(String culoare){
        Color color;
        if (culoare.equals("Negru")){
          color = Color.black;
        else if (culoare.equals("Verde")){
          color = Color.green;
        else if (culoare.equals("Albastru")){
          color = Color.blue;
        else if (culoare.equals("Alb")){
          color = Color.white;
        else{
          color = Color.black;
        return color;
      class MyCanvas extends Canvas{
        public MyCanvas(){
          setBackground(Color.white);
          ML ml = new ML();
          addMouseListener(ml);
          addMouseMotionListener(ml);
        public void paint(Graphics g){
          Graphics2D g2 = (Graphics2D)g;
          setCoords();
          g2.setPaint(fcolor);
          if (shape != null){
            g2.draw(shape);
            g2.fill(shape);
        void setCoords(){
          int w = getWidth();
          int h = getHeight();
          xL0 = w / 4;
          yL0 = h / 4;
          xL1 = xL0 * 3;
          yL1 = yL0 * 3;
          xC0 = xR0 = xL0;
          yC0 = yR0 = yL0;
          xC1 = xR1 = w / 2;
          yC1 = yR1 = h / 2;
      public class ML extends MouseInputAdapter{
        Shape s = null;
        Point p0 = null;
        Point p1 = null;
        @Override
        public void mousePressed(MouseEvent e) {
          double dist = 0.0;
          p0 = p1 = e.getPoint();
          if (shape instanceof Line2D){
            dist = ((Line2D)shape).ptSegDist(p0);
            if (dist < 2){
              s = shape;
            else{
              s = null;
          else{
            if (shape.contains(p0)){
              s = shape;
            else{
              s = null;
        @Override
        public void mouseDragged(MouseEvent e) {
          int dx, dy;
          if (s != null){
            p0 = p1;
            p1 = e.getPoint();
            dx = p1.x - p0.x;
            dy = p1.y - p0.y;
            if (s instanceof Line2D){
              dxL += dx;
              dyL += dy;
            else if (s instanceof Rectangle2D){
              dxR += dx;
              dyR += dy;
            else if (s instanceof Ellipse2D){
              dxC += dx;
              dyC += dy;
            shape = Desenare.this.prepareShapeDrag(fig);
            canvas.repaint();
      public static void main(String []args){
        Desenare d = new Desenare("Desenare 2D with Dragging support");
    }

  • Ive lost the ability to drag and drop and photos in iphoto 5

    hi my powermac was doing fine yesterday . but today and cant drag and drop anything. can someone run me through a step by step guide of what the problem amy be and how to fix it. it would be much appreciated. thanks you

    Chris
    This is the v6 forum
    Launch Font Book (in your Applications folder).
    Select the Helvetica font. Is it enabled? If not, enable it. Even if it is, disable it and re-enable it.
    You do this via the Edit menu in Font Book, or using the little tick at the bottom of the font list.
    Regards
    TD

Maybe you are looking for

  • After upgrading to Leopard: Leopard crashes because of "SFWordProcessing"

    Hi! Sorry for this double posting, but actually "rachelynne" posted here problem in the iWeb-Forum. http://discussions.apple.com/thread.jspa?threadID=1221556&tstart=0 So, this is my problem: If I type any letters into a pages document, i might sudden

  • How can I stop apps from opening automatically on start-up?

    I liked Snow Leopard better.  When I quit, all the apps went away, and the new start-up was clean. Lion forces me to wait for each app to open, unless I took the trouble to close it before shut down. I turned Settings > General > Restore... off, but

  • Changing ESS and MSS Pictogram

    I am trying to changing the standard icons that came with ESS and MSS business package with custom icons. I have places my custom icons - using SE80 and going to MIME repository and saved it there. But when I go to SPRO and go for the Homepage Framew

  • Configuring XI Adapters

    Hi all, I am a basis consultant, installed Netweaver 2004s (XI 3.0 on Oracle 10.2 windows platform) and having a minimum knowledge ion configuring XI I have configured SLD as per the guide and the RFC connections are woeking fine..But When ever i log

  • Can't verify email for iCloud on iPad or Mac

    can't verify email for iCloud on iPad or Mac / not getting email (I've apple ID)