RotationY on MC with image inside

Is it possible to use rotationY on an MC that has an image inside? I am trying it and it does not seem to work. Is there another way to do this?
Thanks a lot!!!

I'm new to actionscripting but... I've been working with moving around 3d movie clips made of a number of bitmap images and haven't had any problems.  Post the bit of code your having problems with and I might be able to help.

Similar Messages

  • Problem with image inside UL

    I have a UL with a width of 200px width by 55px height. I
    have created a background image for the UL with the same
    measurements. When I add the image as a background image inside the
    UL the UL is about 40px wider than the image and I have to resize
    the UL down to about 160px. - less than the image size.
    Whats going on? There is nothing inside the UL at the moment
    apart from the background image.

    A-ha!! I'd set the margin, but forgotten the padding. Sorted
    now thanks :)

  • Problem with images inside of table cells

    I've run into a problem on this web page:
    http://www.solidrocknet.org/index2.html
    The the background of the table cells which contain an image
    is showing
    through in the form of a strip at the bottom of the cell. You
    can see
    this as a black strip in the cells which contain the logo
    graphic,
    centerpiece photo, and the photo strip and as a blue strip
    under the 4
    separate photos on the bottom.
    These problems are appearing in Firefox. It almost looks
    correct in
    IE6/7 except that the blue strip appears under the bottom
    photos.
    Can anyone see what I am doing wrong?

    The best practice is to include -
    a img { border:none; }
    in your CSS so that any image inside an anchor tag is
    prevented from having
    the border.
    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
    ==================
    "K0rrupt" <[email protected]> wrote in
    message
    news:f5i5fc$bhp$[email protected]..
    > sometimes browsers like to display a blue lines around
    pictures. So as
    > good practice you should add it.
    >

  • Report with image / howto use nvl

    HI to all,
    i'm playing aroun with image inside a report:
    I would like to use an nvl function with an image: here the code, taken from an example app:
    select
    "PHOTO_CATALOG_ID",
    "PHOTO_NAME",
    "DESCRIPTION",
    "UPLOADED_ON",
    "MIME_TYPE",
    '<img src="#OWNER#.display_thumb?p_photo_id=' || nvl(PHOTO_CATALOG_ID,0) || ' "/ WIDTH=100 HEIGHT=100>' thumbnail
    from "PHOTO_CATALOG"
    where
    instr(upper("PHOTO_NAME"),upper(nvl(:P1_REPORT_SEARCH,"PHOTO_NAME"))) > 0 or
    instr(upper("DESCRIPTION"),upper(nvl(:P1_REPORT_SEARCH,"DESCRIPTION"))) > 0 or
    instr(upper("MIME_TYPE"),upper(nvl(:P1_REPORT_SEARCH,"MIME_TYPE"))) > 0
    I would like to have a fixed grid of image 6 col * 2 row: that's quite easy however what doesn't work is nvl(PHOTO_CATALOG_ID,0): i got a missing image, but image with photo_catalog_id=0 isn't taken at all.
    For image =0 i've uploaded a white image.
    Anywhere if someone has another solution / idea for making a thumbnail like app in apex, wasn't bad to hear...
    However: i don't want a report with an image col. I want different image (let's say that i would like to have the grid 6col * 2 row) with pagination style.
    Each image should stay in a row of image table.
    Thanks a lot

    Guys,
    i haven't seen there was album v2 on application express studio: maybe this is what i am looking for.
    bye

  • How to add round image inside the table column? with different background color, column value should appear in the middle of the round portion.

    Hi
    This question is related to table component implementation.
    I want to display the column values inside the small round image with different colors and value should appear in the middle.

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem in creating client side PDF with image using flex and AlivePD

    I need a favor I am creating client side PDF with image using flex and AlivePDF for a web based application. Images have been generated on that pdf but it is creating problem for large size images as half of the image disappeared from that pdf.I am taking the image inside a canvas . How do i control my images so that they come fit on that pdf file for any image size that i take.
    Thanks in advance
    Atishay

    I am having a similar and more serious problem. It takes a
    long time to execute, but even attaching a small image balloons the
    pdf to 6MB plus. After a few images it gets up to 20MB. These are
    100k jpeg files being attached. The resulting PDF is too large to
    email or process effectively. Does anyone know how to reduce
    size/processing?

  • [Mac OSX / JS] How to find images inside sub folders using getFiles?

    Hi,
    My script uses the variable myFolder to store the path for the images Folder. But when I try to use myFolder.getFiles() to retrieve images that are in sub folders the script fails. The result is null. What can I do to force myFolder.getFiles() to search inside all sub folders?
    var myFolder = Folder().selectDlg("Select images Folder");
    var myFiles = myFolder.getFiles();
    I will appreciate any help.
    Thanks,
    Candido

    Hi John,
    Thanks for your help.
    I'm rushing to my work  so I don't have enough time to sort it out at the moment.
    If I understand you correctly, it should be something like so:
    var files;
    var folder = Folder.selectDialog( "Select a folder with images" );
    if (folder != null) {
         files = GetImages(folder);
         if (files.length > 0) {
              alert("Found " + files.length + " image files");
         else {
              alert("Found no image files");
    function GetImages(theFolder) {
         var imageFiles = [],
         fileList = theFolder.getFiles(),
         i, file;
         for (i = 0; i < fileList.length; i++) {
              file = fileList[i];
              if (file instanceof Folder){
                   GetImages(file);
              else if (file instanceof File && file.name.match(/\.(jpg|psd|tiff|pdf|eps)$/i)) {
                   imageFiles.push(file);
         return imageFiles;
    But it doesn't work.
    Regards,
    Kasyan

  • How to work with images in Keynote

    Hello,
    I'm a Keynote newbie and am having problems working with images. My basic question is, do I have to resize my .jpgs every time I put them in Keynote? It seems that if I choose to Insert>Choose a .jpg, it will fill my entire presentation and I have to resize. If I drag a .jpg, from iPhoto using the Media browser button, the .jpg will land squarely on the part of my canvas that's meant for the image (in the photo-with-title master slide). BUT, the image will just be masked and I once again need to resize it to fit the designated area.
    My second question is, if resizing is a fact of life in Keynote, are there any shortcuts which would allow me to resize quickly/automatically to the size of the image area on the canvas?

    I think Keynote inserts images in their native size, meaning that if you have a big jpg to begin with, it'll appear big on the slide. If you can't adjust the size of the images you have to begin with (for instance, you could easily adjust their size in a program like GIF Coverter--which would actually allow you to resize several at a time--before you begin to deal with Keynote at all) there is another solution to make it easier. Adjust the magnification of the slide to 50% so that when you insert the big images you can find the corners easily.
    I should add that I've only ever used Keynote 1. But Keynote arrives (inside a new iMac) as soon as tomorrow.

  • Problems with ScrollViewer inside a Kinect Region

    Hi,
    I'm building a WPF application using KinectRegion. I have a Scrollviewer inside the KinectRegion, scrolling with HandPointer works fine. I want to know when the scrolling interaction has finished (the user open his/her hand). Which event should I use? I
    thought it was ManipulationCompleted (and ManipulationStart for closing the hand) but it is not being fired.
    I also noted that the scrollviewer goes on scrolling even when the user's hand is moving outside the "screen zone", how can i disable this behavior? (so scrolling stops in the border of the screen).
    Thank you.

    Thanks Carmine, I will explain myself better.
    I would like to build a "carousel" component: a ScrollViewer with several images inside. I would like it to have some kind of "gravity effect" so when the user "drops" the carousel it will automatically navigate to a certain
    position (according to the extent of the scroll action). I can track scroll changes through the proper event in the ScrollViewer, but I need to know when the scrolling interaction has finished.
    For a different component, I'm using the code Rob Relyea posted here to
    build a custom IKinectControl so I can attach event handlers to Kinect Manipulation events (and I know when a dragging interaction has finished through ManipulationCompleted event in the IKinectController), but if I use a similar pattern for the carousel,
    the ScrollViewer inside the IKinectControl seems to capture the events and ManipulationCompleted for the parent element is never triggered.
    How can I access to low level interaction for a ScrollViewer? I don't know how KinectRegion handle interactions for child elements.

  • Images inside pop-ups in CHM not displaying correctly

    I am generating a CHM using RoboHelp 10 on a Windows XP machine.
    I have a few pop-ups in some topics. These pop-ups contain screen shots. After generating the CHM, when I click the pop-ups to view the screen shots, they are not displayed correctly. That is, half of the image does not appear and there are no horizontal scroll bars either to scroll. This happens for pop-ups that appear on the left side of a topic. The images inside pop-ups that appear to the right side of a topic appear fine when clicked.
    The help file was originally created using RH 7. I upgraded the source files to RH 10 successfully and there were no errors during the upgradation.
    I even tried generating the CHM on other systems with RH10 and the same system configuration as mine but ended up with the same results. I assume there is some compatibility issue maybe between RH 7 and RH10.
    Looking forward to any helpful insights here as this is pretty urgent at the moment for me to resolve the aforementioned issue at the earliest.

    Hi Rick,
    Thank you for the response. Alas, updating the DHTML effects doesn't help. In the project that am working, I have used hyperlinks that are marked to be displayed as auto-sizing pop-ups.
    I also tried editing the eHlpDhtm.js file as mentioned in the thread here, https://forums.adobe.com/thread/1297423#expires_in=86399993&token_type=bearer&access_token =eyJhbGciOiJSUzI1NiIsIng1dSI6I…. But that was of no avail either.
    Do you have any other insights here?
    Regards,
    Anamika
    P.S. Am using RH 10.0.1.292.

  • Issues with Images

    Hi,
    Im quiet new to j2me, doing a project in it for college
    I`m having awful trouble with images i have this code but it doesn`t work:
    (inside the class)
    Image Image1;
    (inside a function)
    try { Image1=Image.createImage("/logo_PNG.png");
    catch(Exception e)
    message="error";
    The program runs but never displays the iimage, the picture just never goes into Image1.
    Using the debug mode in JBuilder I get: Image1: javax.microedition.lcdui.Image = null

    Got it, it was the folders that it was in that was wrong.

  • Pen tool: Resize image inside a layer/ stop pen outline / white space after crop

    I have 3 noob questions all related to the pen tool.
    1. Whenever I use the pen to outline something and drag the image to another psd file I see a grey pen outline around the image.
    ex. http://screencast.com/t/GmKWAr5UH
    2. Whenever I outline with the pen and then select inverse and then delete the background, the background becomes white. I want to drag my outline into my new file but without a white background. it should be transparent so it appears like a collage.
    ex. http://screencast.com/t/Rh4Uvq4xBM
    3. how do I select an image inside a layer to resize it. Nothing I do creates handles around the image isnide the layer.

    Theres some basic stuff you are not understanding…
    1. In Photoshop there is the pen tool for creating abstract vector edges, and selection tools (lasso, magic wand etc). You need to turn the results of the pen tool into a selection. Best way is using the the Command/return shortcut, or command clicking on the path in the paths panel.
    2 layers need to be , not - If you want to delete areas (make them transparent). To do this either go to Layer/New/Layer from background - or hold Option and double click the Background layer.
    3 See answer 2, and use Free Transform (command T)

  • AF shows Green sq - Afterwards Display shows white sq with yellow sq - with image often blurred why

    New powershot 320hs - I'm getting the green auto focus bars when shooting a image, but afterwards the display detail shows a white sq with yellow inside square on the image I shot and the second tiny image for AF check tells me it is not sharp.  This happens often when shooting and I have to shoot several pictures of the same image before I get a sharp picture.  I noticed better results with face detection on but I'm shooting plant images so I don't understand why this is happening?  I have had other elphs without this problem.
    Rose Gatto 

    Hi ballina!
    Thank you for posting.
    There are certain limitations on how close to the subject the camera can be and still achieve a focus lock.  The yellow square indicates that the camera was unable to focus on the subject.
    How close to the subject is the camera when you are focusing on it?
    If this is a time sensitive-matter, additional support options are available at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Calling a Breadcrumb image inside a Table view column

    Hi
    I want a sample code to call any bread crumb related image inside a table view column.
    Please help with a code snippet.

    I mean that, inside the iterator class of the tableView, write this code in the RENDER_CELL_START method.
    method IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
      CASE p_column_key.
        WHEN 'ICON'.
    p_replacement_bee = CL_HTMLB_IMAGE=>FACTORY(       id        = p_cell_id                              src      = '@3J@'  ).
        ENDCASE.
    Inside the method, GET_COLUMN_DEFINITIONS you need to append a column for icon, see the code below:
    APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
        <def>-COLUMNNAME = 'ICON'.
        <def>-TITLE      = 'Display Icon'.
    For more info you can refer to weblog on HTMLB TableView Iterator by Brian.
    Hope I am clear.
    Regards,
    Ravikiran.C

  • Image inside of PDF file?

    I am creating a .bmp file in Photoshop and inserting it into a word document. I then save that image as a .pdf. When viewing pdf and hovering your cursor over the image inside the .pdf, the name of the image file appears(like a text tool tip). Is there a way to prevent this from happening?
    Thanks

    PDF Optimizer - Perhaps not available in Standard.
    Look for it under the 'Advanced' menu drop-down.
    When Acrobat supported file formats are brought into PDF with Acrobat (PDFMaker) many have configuration options associated with their "Convert to PDF".
    A supported graphics file format, by itself or if in an authoring file (FM, DOC, etc.) will be 'touched' by these.
    Open Acrobat's Preferences. Select the Category "Convert To PDF".  Scroll down the center pane's listing of  file formats. Locate and select PNG. Click the 'Edit' button. Some configuration options for compression and color management are provided. You could play with these.
    HOWEVER -
    The Word to PDF process would have to be via PDFMaker (Convert... from the Acrobat Bar) and *not* via Save As PDF-XPS.  The MS Office routine does not provide the functionality described above for Acrobat. The Office process is completely separate from anything "Adobe" or "Acrobat".
    Also, something described often by Bill@VT -- Word, particular 2007, 2010 seems to do some 'odd' things to graphics in a Word file that is going to anything other than a piece of paper.
    Some folks seem to get satisfactory behavior by use of EPS.
    Also, it may be worth playing with a JPEG of the logo.
    About the PDF.
    From what you describe it seems that you have a web link, in the PDF, to the stand alone PNG. This would permit separate download of the PNG.
    I suspect that Acrobat Standard 9.x does not provide the tool set available in Pro or Pro Extended. So, you'd not be able to edit/delete the web link (or link) in the PDF.
    Perhaps, back in Word you have a 'Hyperlink' present that can be edited/removed?
    Also, in Word, try an "import" - browse to file - select - make it an integral part of the Word file. Then produce the PDF.
    Fundamentally, the PDF reflects the content mastered in the Word file. The Office Save As PDF-XPS or the Adobe PDFMaker merely process this out with whatever configuration option settings each provides.
    Be well...

Maybe you are looking for