How do I embed a picture in a Discussion message like this?

I've seen some Discussion messages with embedded graphics, like screengrabs. How do I do this?

see this [post|http://discussions.apple.com/thread.jspa?messageID=607563&#607563].

Similar Messages

  • How can I put a music link in the page like this?

    How can I put a music link in the page like this?
    http://members.aol.com/trumanj/midi/tjsragtime.htm
    Thanks

    Hola JB
    No, I haven't...I'm trying to learn flash and it's been keeping me very busy...maybe it's the age..
    Len, I been trying to do it that way, but, as I just mention, Flash don't like me :)
    Thanks, I will do that for sure.
    Daniel Ulysses

  • HOW TO ADD A PICTURE/PHOTO IN A MESSAGE ON THIS IPAD APPLE DISSCUSSIONS

    Can somebody help me in how I can add a picture/photo into for example, This message as I need to show a picture of what my problem is on my iPad .Thanks

    This example will link text to an image:
    <CLICK HERE TO SEE IMAGE>
    Here is the HTML code:
    ? href="/___sbsstatic___/migration-images/migration-img-not-avail.png" target="_blank"><CLICK HERE TO SEE IMAGE></a?
    Replace the ? marks with opening < and closing brackets >.
    This example will display an image in the forum:
    Here is the HTML code:
    ?img src="/___sbsstatic___/migration-images/migration-img-not-avail.png" width="368" height="395" /?
    Replace the ? marks with opening < and closing brackets >.
    This example will link the image to a lager image:
    Click image to enlarge...
    Here is the HTML code:
    ?a href="/___sbsstatic___/migration-images/migration-img-not-avail.png" target="_blank">?img src="/___sbsstatic___/migration-images/migration-img-not-avail.png" width="320" height="240" border="0" /?</a?
    Replace the ? marks with opening < and closing brackets >
    I'm using DropBox... DropBox uses unique URLs for both web page and images.
    Message was edited by: David M Brewer

  • How do i print a picture from a text message on my iphone 5

    how do i print a picture from a text message

    Open the picture by tapping on it in messages. Then in the upper right corner tap the icon that has a box with an arrow coming out pointing to the right. Select print.

  • My ipod touch 4g will not connect to tv, will not display picture. keep getting a message saying this accessory is not supported by ipod touch, what do ido to make this work and get rid of the message i keep getting?

    My ipod touch 4g 5.0.1 will not connect to tv, will not display picture. Also keep getting a message sayin this accesory is not supported with ipod touch. How do i get this to work and stop getting this message? Please help.

    - What cable re you using? Digitasl, VGA, composit, componet and who made it?
    - TV out only works with apps that support it.  It does not morror the iPod's screen
    - Have tired another TV or other display?

  • How do I make a single page website that scrolls like this adobe muse site?

    Hi there, I'm working on this site: http://johanspeaks.businesscatalyst.com/index.html
    I would like a nav bar to function and scroll through the single page like this site: http://asiercarazo.com/
    I can't figure out if it's different pages, sub pages, or the same page and if it's the same page how do I get the menubar to function like that.
    Thank you for any tips!

    Hi Vinayak!
    I am using the feature that you posted (anchors and pins) for my menu bar for my single page site. Preview it here: http://alexandrabenetbusinesscatalystcom01.businesscatalyst.com/index.html
    I would like all of the words from the menu (ADVERTISING, GRAPHIC DESIGN, etc) to be with a lower opacity. When you reach a section, I would like the corresponding word to be bolder. So I'd like to add states. Is this possible?
    Also, is it possible that my menu does not appear on my first layout? And then make it appear after?
    I would appreciate the help!
    Thanks,
    Alexandra

  • How do I attach a picture to e-mail message

    I am trying to attach a picture to send with my e-mail message. How do I accomplish this?

    Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access web mail, you need to seek support from your service provider or a forum for that service.
    If your problem is with Thunderbird, see this forum for support.
    http://www.mozillamessaging.com/en-US/support/https://addons.mozilla.org/en-US/firefox/browse/type:3https://addons.mozilla.org/en-US/firefox/browse/type:3
    or this one
    http://forums.mozillazine.org/viewforum.php?f=39

  • HT204053 How do U change your picture from your iPad message ?

    I need to know how to change the picture on my "iPad" messaging

    You just want to reset or restore?  To reset the iPad, press and hold the Home button and the Sleep/Wake button for 10-15 seconds till you see the Apple Logo on the screen (Ignore the red power off slider) and then release and let the iPad boot back up.  This is much like doing a reset on a computer and having it boot back up.

  • How do I make two pictures alternate between one another like a video game sprite?

    Hello everyone!
    I'm currently making a animation of space invaders, however I have encountered an issue. I need to be able to have all the space invaders move, and with each movement change shape. My original plan was to use two models and change their opacity every 15 frames from 0 to 100 so one would be at 100 opacity while the other would be at 0. I can't figure out how to do this other than to go through it frame by frame, changing the movement and opacity, and I have to believe there is any easier way to do this. I need the opacity to change from 0 to 100 with no transition (So 0-100 not 0-20-40-60-80-100).
    Any help is appreciated!

    you can do this with expressions.  For fun I played around with a test animation
    to do this you would have 2 precomps for each row of aliens depicting the two (one comp has the first alien look, the second comp has the second look all in the same position as the first)
    the two comps are placed in a master comp, positioned vertically to where you want them.
    this expresion would go in the position parameter of both comps.  it starts horizontal positioning at 0 and increments 100 every 15 frames
    /////////////////////// position
    var increment = 100;
    var t = timeToFrames(t = time + thisComp.displayStartTime, fps = 1.0 / thisComp.frameDuration, isDuration = false);
    var s = parseInt(t/15);
    var pos = transform.position;
    [s*increment,pos[1]]
    //////////////end position
    the next expression would go in the opacity parameter of both comps, it alternates giving 100% opacity between the two comps every 15 frames.  The comps need to appear 1 after the other in the layer stack for it to work.
    /////////////////////opacity
    var t = timeToFrames(t = time + thisComp.displayStartTime, fps = 1.0 / thisComp.frameDuration, isDuration = false) % 30;
    var s = (t%30);
    var i         = this.index %2;
    var change = [0,100];
    if(i){
        change = [100,0];
    if(s<15){
        o = change[0];
    }else{
        o = change[1];
    o;
    //////////end opacity
    Like I said, I just threw it together to show how expresions could solve it.  Ideally you would need some code in the posion to shift down and reset horizontal position to 0 every so often

  • How can I create a cast shadow on a vector like this? (see example picture)

    I would love to recreate this image in Illustrator CC or CS6 however, I'm not sure how to get this effect that shows all the detail from the image on the shadow, not just a general drop shadow effect. Maybe Illustrator is the wrong program for this? Couldn't figure it out in Photoshop CC or CS6 either. Thanks in advance to anyone who can help!

    Hello carlh490
    Hope the info' below is of help.
    Sorry for the small text in the image, I've not mastered insert image as yet.
    TREX

  • I had the iPhone 5 for a while and my Macbook Air was sending me the incoming messages from that phone, however I just upgraded to the 6 Plus and was wondering how I can get my laptop to recognize the messages from this phone now on iMessages.

    Okay so my Macbook Air has always allowed me to receive iMessages from my iPhone 5 to my computer. So basically I could use both to text.. However I just upgraded to the iPhone 6 Plus and I would like the same to happen again with my new phone, but I don't know how. How can my incoming iMessages from my new iPhone 6 plus show up on my laptop?
    -I see all the messages from my old iPhone there, but I would like to know how to set it up so that i can view the messages from my new phone.

    Hi,
    If you are signed onto the same iCloud/Apple ID for Messages, then the second number should have been registered with your Messages on the Mac at the time it was verified.
    To check this, open Messages on the Mac, click on Accounts, and see if the number is displaying and checked. If it is not, Sign out of Messages on your new device and then sign on again.
    Again, phones need to be signed onto the same Messages account that you have set up in Messages.
    Cheers,
    GB

  • How to make a Discussion Forum like this one with Oracle Portal Applications

    Hallo,
    My colleagues and I are trying to make somthing similar for our planned intranet-platform and I wonder if there are some prefabricated modules which can be used (we are all enthused by the features of your Discussion Forums).
    Maybe you can provide us with papers ("construction plan") how to bring such functionality to our intranet (I searched the Oracle page, but did not find papers of this content).
    Thanks,
    Chistian

    Yes, this would be great. I have looked at some of the Partner Applications but the only module we want is this kind of a threaded message board. I would be very appreciative of this information as well.

  • How to find the records using contains with the word like this 'some text-some text'?

    Hi,
    How to find the records using the full text contains keyword and that column contains ‘some text-some text’
    In the above some text can be anything.
    Does anybody know please let me know.
    Thanks,

    Hello,
    You can try to create a Full Text Index on the table and use CONTAINS() to get the record which contains the specify words.
    For example:
    SELECT * FROM TABLE WHERE CONTAINS(column_name, 'some text')
    Reference:
    Full-Text Search (SQL Server)
    Creating Full Text Catalog and Full Text Search
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • I tried to paste text from another site into my Firebox document, but it says "Firefox does not support Copy & Paste". How do I enable clipboard? I never had problems like this on Firefox before...why?

    I tried to paste text I copied from another site into my Notepad++ (as I've always done in the past with no problem).
    But today for the 1st time, I got a message when I tried to paste the text "Firefox does not support Copy & Paste". What?
    What happened to the clipboard?

    That's a security feature in Firefox.
    Use this extension to add the necessary permissions to Firefox - Allow Clipboard Helper: <br />
    https://addons.mozilla.org/en-US/firefox/addon/852

  • How can I find all messages like this?

    What criteria can I use in a smart mailbox to find all messages like this?
    The message from Robert Nicholson <[email protected]> concerning “Hi Testing” has not been downloaded from the server. You need to take this account online in order to download it.
    I have a lot of these because I use IMAP for my mail but there's no point in keeping these messages as they were deleted from the server a long time ago.

    Robert,
    I am not sure what a Smart Mailbox would have to offer with respect to this?
    However, the problem is likely not that the message has been deleted from the server, but that Mail 2.0 has problems with some IMAP servers at displaying some messages.
    I am hopeful, but cannot assure anyone, that a fix is being worked on for this, and perhaps will be available sometime in the future.
    If you were to access with a different version of Mail, such as 1.3.11, or another mail client, you might access these messages. Therefore, I would not be quick to try and eliminate them.
    Ernie

Maybe you are looking for