Posting images in post?

How can I post photo's in this post so that people can know what I'm talking about?

In the future, post these types of questions in the forum designed just for questions about the Apple Forums. is the forum. Here is the link.
Also, here is another helpful post about customizing your posts in the forums. It has instructions for color changes, photos, links, etc...
Hope this helped!
C h r i s t o p h

Similar Messages

  • 3D annotation poster image: Retrieve poster from default view

    Hello
         I have developed a plugin whic embed 3D data into annotation.
         In deactivated mode of 3D annotation i show annother image as appearance and it works great,My problem is i want show the poster image as snapshot of default view of 3D annotation the same way we have setting in propery page of 3D annotation.  (Properties->Lauch settings ->Poster Image->Retrieve poster from default view).
         How can i achieve this using c++ sdk ?

    You probably need to find some way to render offscreen and grab the bits or something.  AFAIK, that's computed/rendered when you choose that and then embedded asa static image.

  • Artifacting and low resolution in poster image

    Hi, I'm having real problems with poor quality poster image/final still of video front cover.
    I have an H.264 mp4 which I created in After Effects and inserted using the Media panel within DPS.
    As you see below, it plays on page load and I have chosen the finished front cover to be the poster image when it ends from within the Folio Overlays panel. I have set the video to stop on the last page.
    When the video stops you can see all the artifacting around the text which I would expect to be as crisp as the original PSD file I uploaded as the poster image.
    Is there anything I'm doing wrong or is there anything that can improve the quality of the final still? Is the poster image even being displayed or is it the final frame of the video? (I imagine this is the case)
    I hope you can help.
    Thank you

    I've sorted it!
    Dropped the poster image altogether and recreated the movie elements as I would in InDesign on the page and the movie plays to the end and finally reveals the page underneath. I was overcomplicating things.

  • Video files show very low resolution poster image

    Using Indesign CC and the latest tools and content viewer I am creating Autoplay video animations for the cover of our weekly magazine.
    With each issue I have published the same problem occurs where the poster image for the video file is very low resolution and makes our content look very amateur (for a brief moment) before playing the video file at full resolution.
    I have tried creating animations using flash, photoshop and Edge Animate, exporting MP4, MOV and OAM files. The problem is present with all movie files and with the Edge animation files a white flash appears before the file plays.
    Is there a solution for either of these issues? We are looking to continue to use animations for our covers and need them to look 100% crisp and clean.

    Sorry to jump in but I'm having the same issue too!
    I have an H.264 mp4 which I created in After Effects and inserted using the Media panel within DPS.
    As you see below, it plays on page load and I have chosen the finished front cover to be the poster image when it ends from within the Folio Overlays panel. I have set the video to stop on the last page.
    When the video stops you can see all the artifacting around the text which I would expect to be as crisp as the original PSD file I uploaded as the poster image.
    Is there anything I'm doing wrong or is there anything that can improve the quality of the final still?

  • Can I set a static frame (jpg or png) image as a poster image when embedding flash video into a dreamweaver page?

    hello everybody - my subject line pretty much says it all...
    i'm looking to have my users see a single static frame (a
    poster image) that they can then click on to start playing a video.
    how do i set this in either flash or dreamweaver?
    anybody have any info?
    much appreciated!

    Will the video appear in place of the image clicked on? Or
    will it be in a
    separate window?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "mitrzne" <[email protected]> wrote in
    message
    news:fvangc$9rd$[email protected]..
    > hello everybody - my subject line pretty much says it
    all...
    >
    > i'm looking to have my users see a single static frame
    (a poster image)
    > that
    > they can then click on to start playing a video. how do
    i set this in
    > either
    > flash or dreamweaver?
    >
    > anybody have any info?
    >
    > much appreciated!
    >

  • Need to remove scrollbars that appear around downlevel poster image in IE

    I have a responsive animation, so I have not played around with height and width dimensions.  Both are set to 100%/auto.  Overflow hidden or visible doesn't make a difference.  Perhaps a '"scrollbars="no"' declaration somewhere, just don't know exactly where (not a javascript programmer)? I need to resolve this issue!  Help please, anyone? Animation plays fine in all browsers with no scrollbars.  It's only the downlevel poster image that has this issue.

    The artwork has no printable border.
    What you are seeing is the artboard bounds. You can prove it to yourself by printing the document (print to PDF if you don't want to waste paper) or by changing the artboard size via File | Document Setup.
    The artwork does happen to have a rectangle that exactly coincides with the artboard size. It provides the taupish background. If you select it and look at the appearance palette, you'll see it has a fill but no stroke.
    {Beaten to the punch by Larry.}

  • How to get poster image (from_movie) when placing SWF file with JS?

    I am able to place the poster from movie (flv) file. SWF files seems to belong to Movie class. I can place the generic posters (standard, none and proxy_image), but not "FROM_MOVIE".
    I am getting the following error message:
    "Error 81926" "The poster image could not be changed to the requested image".
    I will attach my code (sligtly modified from the sample "placeMOVIE" which is coming with CS5) containing also code for other property settings to be tested.
    Hoping to find a good solution for this, thanks in advance!
    Erkki
    /PlaceMovie.jsx
    //An InDesign CS5 JavaScript
    //Shows how to import a movie  file.
    main();
    function main(){
        mySetup();
        mySnippet();
        myTeardown();
    function mySetup(){
        var myDocument = app.documents.add();
        myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;
        myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;
        myDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;
    function mySnippet(){
        var myDocument = app.documents.item(0);
        var myPage = myDocument.pages.item(0);
        //<fragment>
        //Given a page "myPage"...
        var myFrame1 = myPage.rectangles.add({geometricBounds:[72, 72, 288, 288]});
        //Import a movie file (you'll have to provide a valid file path on your system);
        var myMovie = myFrame1.place(File("~/Desktop/SWFsivut/a1.flv"))[0];
        //alert("myMovie.name: " + myMovie.name)
        //alert("myMovie.visibleBounds: " + myMovie.visibleBounds)
        var mySWF_bounds = myMovie.visibleBounds;
        myFrame1.remove();
        var myFrame2 = myPage.rectangles.add({geometricBounds:mySWF_bounds});
        var myMovie2 = myFrame2.place(File("~/Desktop/SWFsivut/01.swf"))[0];
        //alert("myMovie2.name: " + myMovie.name)
        //alert("myMovie2.constructor: " + myMovie.constructor.name)
        //alert("myMovie2.moviePosterType (DEFAULT), 1852796517 = NONE" + myMovie.moviePosterType);
        //myMovie2.moviePosterType = 1852796517; //NONE
        //alert("myMovie2.moviePosterType, 1852796517 = NONE: " + myMovie.moviePosterType);
        //myMovie2.moviePosterType = 2020623970; //STANDARD
        //alert("myMovie2.moviePosterType, 2020623970 = STANDARD: " + myMovie.moviePosterType);
        myMovie2.moviePosterType = 1298558310; //FROM_MOVIE
        //alert("myMovie2.moviePosterType, 1298558310 = FROM_MOVIE: " + myMovie.moviePosterType);
        //myMovie2.moviePosterType = 1299216505; //PROXY_IMAGE
        //Add a preview image. You'll have to provide a valid path on your system.
        //myMovie2.posterFile = "~/Desktop/SWFsivut/a1.flv"; // this path works with colons !!!!
        //myMovie2.posterFile = "EkinHD/SWFsivut/01b.jpg"; // this path dont with slahes !!!!
        //alert("myMovie2.moviePosterType, 1299216505 = PROXY_IMAGE !!!: " + myMovie.moviePosterType);
        //</fragment>
    function myTeardown(){

    ... still continuation to my question...
    You can put the poster for SWF using UI Media panel as shown here. So does this mean that there is a bug in a scripting environment?

  • Edge poster image no longer visible in design mode

    Just updated to Muse 2014.3
    In design mode the preview of Edge Animations has been replaced with the "Eg" icon.
    The animations works just fine but it is more difficult to place them properly without a preview image.
    I checked the Edge Animation file to make sure that the poster image was selected.

    Yes, it came down to something corrupted with OS X as suddenly I started getting the long grey progress bar every time I booted OS X (no problems when booting Windows 7 on the Boot Camp partition).
    Disk Utility could not repair it and for some reason I couldn't boot off a USB drive that I had setup as a recovery drive, so I couldn't repair it via Disk Warrior nor TechTool (I misplaced the boot DVDs over the years of moving).
    Since this was my laptop that I only use when I'm on the road, all my important information was synced to my desktop Mac so I just started over and reformatted the entire hard drive and reinstalled everything (it gave me the opportunity to try out 10.7 preview release on a clean install as well as I wanted to upgrade from 32-bit to 64-bit Windows 7 anyways) and now everything works fine, including Target Disk mode.

  • Poster Image in Strobe Player: Must it be a Bitmap Image?

    Hello,
    Quick question: must the poster image be a bitmap image in the Strobe and Flash players in OSMF?  I would like to use .jpg images because the quality is much better, etc.  When I try to create an image in Photoshop and convert it to a bitmap, the quality is very degraded and must be in black and white.
    Thanks so much.
    Jim

    Thanks very much for the reply.  I had uploaded a .gif, which didn't work, then went into the documentation and saw it written that poster images were bitmap images and assumed that meant that I need to use a bitmap in order for it to work.

  • What exactly does a new poster have to do to get permission to post images?

    Recently there was a forum update that disabled new posters to add images
    (AND links?) Supposedly this was to reduce spam. So far so good.
    Not surprisingly, immediately after the update we have numerous posts in the Forums Issues forum complaining about this feature and no doubt plenty of users just submitting to this policy in silence.
    This whole feature is a SEVERE (that's right. bold AND in caps) hindrance. I don't have the stats, but I'm sure a considerable percentage of
    (non spam) original posts are from new users with no previous forum activity. Pictures are especially important in the Chart Control forum as visualization is what charting is all about.
    (This is the forum I frequent. So yes, I'm biased.)
    Ofcourse, I'm sure the forum developers have weighed the pros and cons and studied the stats and then decided what to do after serious consideration...
    The question is: What exactly does a new poster have to do to get permission to post images? Wait for how long? Reply to a confirmation email? "Participate" more?
    (Say it ain't so.) How much more?
    If there really is a workaround by adding an image tag with the edit html button, I don't want to hear it. It's as silly a way to add images as in the before times, the long long ago.
    (Also, if this is possible, this whole restriction feature is actually worse than useless. Spammers will exploit this sooner than later. (A very good point made by our dear friend Quincy in a post that has since been deleted it
    seems.))

    I believe answering that question defeats the purpose of having the "feature".
    I suspected as much.
    I was hoping to add some explanation to the chart forum FAQ, I guess "Body text cannot contain images or links until we are able to verify your account."
    (if this really is the only message new posters get) will have to do.
    I still feel this is more of a hindrance to the quality of the forums than not. As confirmed it seems by Naomi, spammers already have a workaround.
    Sipla, it sounds like we should add this FAQ to this article:
    http://social.technet.microsoft.com/wiki/contents/articles/7359.forums-help-faq-en-us.aspx
    What do you suggest?
    What does the message say to the user who cannot post links and images yet? We should map to that language.
    Thanks!
    Ed Price (a.k.a User Ed), SQL Server Customer Program Manager (Blog,
    Twitter,
    Wiki)
    It says "Body text cannot contain images or links until we are able to verify your account."
    If this means you will get a verify email, then you should get a verify email.  The message infers that either action will be taken by the forum mods that will be apparent to the user or that the user needs to take some sort of action. 
    If this is not the case, the wording needs to be changed; it should not mislead you.  This is an incredibly vague status message.
    I do not have any record of a verify email in my inbox history.  All I have is an email this morning from MSDN Site Support (I also posted a request yesterday in MSDN Site Feedback) asking me which account I needed verified.  I only have one account. 
    Almost immediately after I replied, I was able to post links and photos.  Honestly I do not know which came first though, the "verification" or my reply to the email or someone noticing the thread about compaining about it a month after signing up.

  • Streaming RTSP to BlackBerry , poster image/movie

    I implemented an HTML page in which a js script detects the user-agent and display a specific player according to it. Everything works fine for desktop, and iPhone/android mobile sets.
    Regarding Blackberry  ( tested with 9300 Curve), I can stream using the following QT Object :
    QT_WriteOBJECT('rtsp://sd-30152.dedibox.fr:1935/vod/mp4:sample.mp4','480','270', '', 'autoplay', 'false');    
    this works very well, I modified it to have an initial player before playing, with a grey background and sized according to the clp)
    QT_WriteOBJECT('rtsp://sd-30152.dedibox.fr:1935/vod/mp4:sample.mp4', '480','270','', 'scale','tofit', 'bgcolor','#CCCCCC', 'autoplay', 'false'); 
    This works again ....
    I tried to set an initial poster image, located at posterUrl, using the command
    QT_WriteOBJECT('http://video.mysportacademy.com/testPlayer/assets/images/breizh_flag.png', '480', '270', '',  'rtsp://sd-30152.dedibox.fr:1935/vod/mp4:sample.mp4', 'target','myself', 'controller','false');
    I can get the image displayed but WHEN CLICKING ON THE IMAGE, nothing happen... the streaming doesn't start at all....
    is it possible ? and if yes , what's wrong in my command ...
    thanks for your feedback
    note : trying to reach the page

    ... still continuation to my question...
    You can put the poster for SWF using UI Media panel as shown here. So does this mean that there is a bug in a scripting environment?

  • Is it possible to have a poster image for audio in epub like iteractive pdf?

    Is it possible to

    Hi,
    Poster image if chosen in InDesign for audio does not show up in EPUB. This is a bug in HTML/EPUB export and we are aware of this.
    Regards,
    Pooja

  • Quictime poster image flickers, dissappears

    Hi,
    My client has asked me to see if I can find a solution to the problem he is having. I don't have a mac so I can't replicate the problem but he was pretty specific on what his happening and the versions of his software.
    He has a desktop Mac, PPC, non intel top of the line about 5 years ago.
    He is running Mac OS 10.5.8, firefox 3.5.7 and quicktime 7.6.4, these all appear to be the most recent version.
    What is happening is that when he opens a page with a quicktime movie, the poster image appears briefly and is then replaced by a white area. He can then click on the area and the movie begins. If he opens a new browser window with another quicktime movie, this second movie shows the poster image and works as expected.
    Has anyone else had this type of problem?
    Thanks,
    Tracy
    Message was edited by: zengardner

    Hi,
    Try deleting this file from ~/Library/Preferences.
    com.apple.quicktimeplayer.plist
    Move that file to the Trash and restart the Mac.
    ~ refers to the Home Folder
    Carolyn

  • Poster image not working when I turn browser javascript off

    I have inserted a poster into the downlevel stage and the poster image has been uploaded to the correct folder, along with all the JS files. So, I am not sure why the poster image doesn't display when javascript is turned off in my browser.
    Any suggestions? Thanks

    The downlevel stage is for browsers that don't support modern standards -- not for disabled JavaScript. JS is required for Animate content to display on both modern and legacy browsers.
    You might want to try manually placing an image with HTML/CSS in place of the AN stage if you need to support browsers with JS disabled; which IIRC is a very small percentage of viewed web content
    Sarah

  • How to change MobileMe album poster image?

    By default, Aperture (or MobileMe) will use the first image in the synchronized album as the poster image. Is there any way of choosing a different image to appear as the Album's poster image?
    ...Rene

    I know that you can do this when viewing your gallery online, but I don't know if there is a way to do it in Aperture.
    In your browser:
    navigate to www.me.com
    log in to your account
    click on the Gallery button (sunflower icon)
    click on the specific gallery you want to change
    click on (select) the photo that you want to use as the new poster image
    with the desired image selected, click on the actions (gear) icon in the toolbar
    choose Set Key Photo command from the menu

Maybe you are looking for

  • Public Folder Migration Fails from Exchange 2007 to 2013

    I am attempting to sync public folders between Exchange 2007 and Exchange 2013.  All the data has been copied over to the Exchange 2013 server but I am getting an error when creating the folders and their permissions.   I saw a previous thread which

  • Problem with creating ssl on wls 10.3

    I have oziiden.jks containing private key, which is used on two other weblogic servers(on winxp and aix5.3), and now i'm trying to use this jks to create ssl on wls 10.3 on aix5.3. The configuration is the same for keystrores and sll in all 3 servers

  • Updating to iOS 7 broke my Wi-Fi (and how I fixed it)

    I have an iPad 2; it worked fine; I updated from iOS 6 to iOS 7. Immediately after updating, it could not connect to my home WiFi network (Airport Extreme). All other devices on the network (MacBook, iPhone, iPod, Roku, Wii, wireless printers) contin

  • How do I get itunes tracks to windows media player

    I need help.

  • Bt vosion boxes

    Hello I am new to the forum. My question is can you use more than one vision box off the one router as I want to have vision tv in another room in the house.