How to do Shining JPEG's ?

Hiya
Really new to Flash
I have been following this tutorial http://www.youtube.com/watch?v=n_lLmt2gw-0 which works fine, but how do I use a jpg instead of text to do this ?
I start a new project with the dimensions of the jpeg needed, but unlike Photoshop, I can't seem to merge the Stage and Jpeg to be as ONE which i think would work with the tutorial.
Any ideas please
Paul

I can't assume I know what you are attempting to do between that tutorial and using a jpeg.  What purpose will the jpeg serve... the mask role or the masked object role.
If the goal is to have a wave of shining move over the image, then I'd probably just create a white gradient rectangle, where the sides are alpha-ed to zero and the middle is alpha-ed to something still a bit transparent and just animate that over the image, masking it with a rectangle the same size as the image.

Similar Messages

  • How do I put JPEGs in a burn folder without having them be aliases? I see the JPEGs in "Preview" but can't fugre out how to duplicate the originals so I can burn them without them being aliases.

    How do I copy JPEGs that I see in "Preview" without getting aliases? I want to burn a new disk with copied originals, not aliases?

    You can create a new folder and drag the originals into it and burn that as well, the "burn folder" concept just makes it easier to not to have to put everything away later.
    Just delete the burn folder and your done.

  • Anyone know how to send a jpeg file to Windows via Mail without it being embedded into the receivers email

    The plain text feature in Mail application does not seem to be working. I noticed this when I send jpg attachments to Windows machines, the receiver gets the attached jpg file embedded in their email and they have no way to save the jpg image. This type of behaviour is normal when when sending rich text emails to Windows machines, but selecting plain text used to eliminate this problem in Snow Leopard.
    I have 'always send window-friendly attachemnts' selected.
    I spoke to Apple about this and they say it was designed this way.
    Can you tell me how I can send jpeg images from Lion to Windows machines so that they can save and reomve the file from their email application?

    Perhaps the boolean expression isn't working because it needs to be all caps: YES instead of yes
    In any case, a simple 1 or 0 works just fine for me without -bool:
    The command to disable in-line attachments (all attachments appear as icons)
    defaults write com.apple.mail DisableInlineAttachmentViewing 1
    To command to (re-)enable in-line attachments once disabled (all attachments appear as images or documents displayed in-line)
    defaults write com.apple.mail DisableInlineAttachmentViewing 0
    Also, when composing a new message with an attachment, be certain that 'Send Windows-Friendly Attachments' is checkmarked at the bottom of the new message screen:

  • Imported pictures are HUGE.  Way too big.  How do I reduce JPEG size?

    JPEG size imports WAY TOO BIG.  How do I reduce JPEG size?  Thanks so much@!!

    Set your camera to take lower quality pictures is the obvious answer here. You can reduce the size of image already in iPhoto when exporting them.

  • On CS5, how can I recover jpeg images that were Batch Renamed prior to removal from my flashcard?

    On CS5, how can you recover JPEG images that were accidentally Batch Renamed prior to removal from a flash card? Is it a total lose or can they be saved somehow?

    If they were renamed on the flash card that is a poor practice.  If renamed in Bridge the old names can be recovered it you have checked "preserve original name in XMP".  If not you are out of luck.  But you still have the images correct?

  • I've transferred photos to my ipod classic from my laptop. But how can I transfer JPEG images to ipod?

    I've transferred photos to my ipod classic from my laptop. But how can I transfer JPEG images to ipod?

    Hello, Blondet787. 
    JPEG photos are compatible with your device.  As long as these images are in the same folder as your pictures, then they should sync.  Below, I have included a couple articles that show you how to sync this data to your iPod.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    The article below is a little more detailed and designed more as a storage solution for media on your iPod Classic. 
    Putting iPod into Disk Mode
    http://support.apple.com/kb/ht1363
    Cheers,
    Jason H.

  • How is add/insert jpeg/gif files on wiki (code gallery)

    Hi;
    I prepared new wiki-code gallery page. I must insert/add jpeg/gif files on my page. But I dont know  How is add/insert jpeg/gif files on wiki (code gallery).
    Please help me.
    Thanks.
    http://wiki.sdn.sap.com/wiki/display/Snippets/NewTimeDomainandConversionRoutineforTotalTime

    Hi;
    Mr Moshe Naveh helped me. He sended me new template page.
    I again prepared my wiki with new template.  ( http://wiki.sdn.sap.com/wiki/pages/createpage-entervariables.action?spaceKey=stage&templateId=113147905 ) I added jpeg files on new wiki page.
    Then He moved my new page.
    Thanks him.
    Best regards.

  • How do you import jpegs and make a flip book with CC Id?

    How do you import jpegs and make a flip book with CC Id?

    You actually don't need to make a flipbook yourself. There are paid and free, ready-to-use flipbooks in Flash or HTML5 available which you just need to configure and then put all images into a specific folder and the flipbook runs them.

  • HOW do I copy jpeg files from my Windows PC to my iPad2?

    How do I copy jpeg files from my Windows PC, to my iPad2?

    If you are on iTunes 11 on your PC then you may want to enable the left-hand sidebar via View > Show Sidebar (or control-S), which might make it easier to navigate.
    To sync photos, connect and select your iPad on the left-hand sidebar of your computer's iTunes, and on the right-hand side there should be a series of tabs, one of which should be Photos - if you select that tab you can then select which photo folders to sync to the iPad's Photos app. There is a bit more info on this page. You will need to sync all the photos that you want on the iPad together in one go as only the most recent photo sync remains on the iPad - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.

  • How to display a jpeg in corner of a frame or change default bg colour?

    I am having problems of a different sort regarding display of an image in a frame. I wish to display a jpeg in a frame such that it sits exactly in the top left corner. As it is, it always sits a few pixels left and down from the corner, leaving an annoying white border. The only way to get rid of the border is to create an individual html file for every image so that the bg colour can be set to match the rest of the page - but surely there is a way to either change the default bg colour in the users browser when viewing the site or to sit the image dead in the corner so that there is no need.
    It's driving me nuts!

    Hi Greystar69 ,
    Try the following code. this code helps to understand easily how to bring it.
    acknowledge me
    import java.awt.* ;
    import javax.swing.* ;
    public class FrameBg extends Frame {
         private Image img ;
         public FrameBg() {
              super( "Test" ) ;
              img = new ImageIcon( "D:/images/rose.png" ).getImage() ;
              if( img == null ) {
                   System.out.println( "Image is null" );
                   System.exit( 0 ) ;
              setLayout( new FlowLayout() ) ;
              add( new JButton( "How   is   it?" ) ) ;
              add( new Button( "Is   it    ok?" ) ) ;
              setSize( 400 , 300 ) ;
              setVisible( true ) ;
         public void drawBackground( Graphics g ) {
              int w = getWidth() ;
              int h = getHeight() ;
              int iw = img.getWidth( this ) ;
              int ih = img.getHeight( this ) ;
              for( int i = 0 ; i < w ; i+=iw ) {
                   for( int j = 0 ; j < h ; j+= ih ) {
                        g.drawImage( img , i , j , this ) ;
         public void paint( Graphics g ) {
              drawBackground( g ) ;
              super.paint( g ) ;
         public static void main(String[] args) {
              new FrameBg() ;
    }

  • How to Delete imported JPEGS after matching RAW files are imported as masters

    Using a 5D Mark III and shoot JPEG (SD) and RAW (CF).
    Aperture 3.5.1, using a managed library
    Perviously, using a 7D so new to shooting JPEG and RAWs from an aperture Aperture workflow standpoint.
    I know that i can import the JPEGs > delete images that do not make the cut > then import the matching RAW files in the import dialogue that correspond to the JPEGs in the Aperture Library.
    I use the RAW files as my Camera Master images and once the RAW files are imported, the smaller resolution JPEGs are no longer needed or viewed in my normal edit workflow.  I only need the JPEGs to quickly go through the images to find out which RAW files i need to import at a later time to increase the speed of import > edit > deliver.
    My Assumptions:
    1.  Logic would lead me to believe that after import the user should see a stack like image representation with whatever file type is considered Master to be on top and the viewable secondary file type on the bottom.  clicking on the image stack should allow you to see both file types as you would normally see with image stacks with the same files types.  This is not the case...  What am i missing here?
    2.  Logic again would lead me to believe that when i have the ability to delete one of the 2 image types as i do not need both in the end.  After the import process is complete and RAWs are backed up, I want to delete the JPEG files as they are just taking up more space on my DAS drive array...  There is no need to keep a duplicate of every file in both JPEG and RAW format.  This is not the case as when i delete the JPEG or RAW, both files formats are deleted simultaneously.  What am i missing here?
    Problems: (correspond to Assumptions above)
    1.  I do not seem to have access to both images (JPEG & RAW) in a stack where i can expand and close the stack to see both?  It seems like i only have access to the image type i have selected as Master?  This seems counter intuitive to what the workflow should be as why would aperture 'lock the secondary file types away' so you can't easily view both file types as the same time for comparison?
    2a.  Reality seems to be that i do not have access to the JPEG and RAW image files.  I can only see one at a time by selecting the images and choosing 'make JPEG master’ and then respectively... 'make RAW master', but you can't see both at the same time for file comparison.
    2b.  Also, I can't find a way to delete the JPEG images after the RAW files have been imported.  I would presume most professional photographers shoot RAW and do not shoot JPEG as their camera master or editing master images.  I do not understand why aperture has captured both as a pair in the library that does not allow me to delete the JPEG (in this case) as i have selected the RAW as my master.
    If someone can please help...  The function seems like either i am missing something obvious or that the implemented function of using RAW + JPEGs files for import is broken from a real world workflow standpoint.

    leonie...
    thank you for clearing that up for me.
    I think that at this point it is silly to use the JPEG+RAW import functionality as it seems that it takes longer to do the above steps than to just import only the RAW files and press on from there.
    I seems what i have done in the past of only importing the RAW files and then using the quick preview functionality to reduce image load times is the best thing in can come up with without keeping 'duplicates' in the database.
    That really baffels me that there is no built in functionality to remove the JPEG from a RAW+JPEG pair and i wonder how the real world photographers who help Apple test and implement software to solve real world workflow problems thought the JPEG+RAW import was going to be used.
    I do understand that i can use a smaller JPEG file size to reduce the bloat of the database, but used over hundreds of thousands of images is certainly going to make a dent in my total aperture database size and therefore storage needs down the road.
    If you have any other workflow thoughts, or know of a 3rd party plugin/ etc... to fix this obvious shortcoming then i am all ears..
    thank you again Leonie and have a great week

  • How to load a jpeg image in to a database from a flex2 app

    Hi,
    how ouwld I browse the local fie system, select a jpeg image
    and then save
    it to a database using flex2?
    Anybody know of some sample code that I can look at?
    Thamls

    Hi Thamis,
    Take a look at the flash.net.FileReference class here:
    http://livedocs.macromedia.com/flex/2/langref/index.html
    This is the built in Flash support for file upload. You'd
    handle the upload with a servlet/jsp/etc. server-side component to
    save it to disk or as binary data in a database.
    Best,
    Seth

  • APEX 3.1.2: How to show a jpeg/pdf inside a geotag from a GIS app?

    I am developing a small Oracle Maps Application for my diploma thesis at my university. I've found the "Hands-on Lab: Developing an interactive mapping application for your Oracle database using Oracle Maps" held in October 2006 in San Francisco and I am trying to get used to this kind of applications.
    I am using Oracle EE 10g, SOA Suite 10.1.3.1 (OC4J + HTTP Server), MapViewer 10.1.3.1, APEX 3.1.2.
    Everything works fine until I want to click and see a geotag. For some unknown reason the jpeg/pdf (blob content) is not appearing. Instead I can see one of those broken small icons. When I tried to click the link to see the pdf the following message appeared:
    "Forbidden
    You don't have permission to access /pls/apex/MVDEMO.download_file on this server."
    I have granted the execute on the download procedure to public and also to apex_public_user. (I thought just in case...)
    I imagine there might be some changes in the new APEX 3.1.2 version that caused this break down? The lab was developed for an older version of Apex.
    Could you please advice me what am I doing wrong and/or how can I fix it? I would deeply appreciate your input.
    Thanks in advance,
    Roxana
    Edited by: Foxana on 23.06.2009 15:32

    Ok, so I've found the following note on Metalink: 783646.1 HTTP-403 Forbidden Error While Trying To Access The DB Procedure From The URL, that should solve my problem, if I only managed to modify the wwv_flow_epg_include_local.sql function. I opened it in Wordpad, modified it and tried to overwrite it and save it and then it says "Access to ...\core\wwv_flow_epg_include_local.sql was denied."
    Does anyone know how to solve this? Pleeaseeeee! :D
    Regards,
    Roxana

  • How do I open jpegs in Camera Raw?

    I can't seem to find any instruction on how to open jpegs in Camera Raw. It says that it will do it, but I haven't found the way to do it. Command R is never highlighted when I'm in Bridge and click on a jpeg. Help!
    Thank you,
    Gregg

    I am encountering the same problem in Bridge. Although I marked the preference to open jpeg in Camera Raw. Everytime SC3 opens with the picture.
    In early July I folowwed a thread discussing the same problem - without solution. Could it be that this is a bug in Bridge and hopefully Adobe is working on an update?

  • How do I get jpegs to associate with Photoshop CC 2014?

    I uninstalled PS CC before installing PS 2014.  I have now uninstalled PS 2014 and Bridge and reinstalled.  Bridge associates jpegs with PS 2014 as the default program but anywhere else I can't get them to associate.  I've tried "Open With" and it doesn't give me photoshop as a choice.  I choose browse and go to the executable but it still won't work.  How can I fix this?

    what operating system are you on?

Maybe you are looking for

  • Multiple calendars without syncing.

    Hi, I would like to create multiple calendars on my iPhone (Such as work, university, social etc.) with different colours. But I am not syncing my iPhone to anything. Is there anyway to do this? If not, what is the easiest way to do it with syncing?

  • Auditting Java Process under Unix

    Is there a way to see which java processes are running in Unix? ps -f does not work because the arguments passed to java are too long and get truncated

  • PP CC 2014.2 Hangs When Attempting to Import FCP7 XML

    Hi All. I'm attempting to import an FCP7 sequence into Premiere Pro CC 2014.2. Every time I try to import, the Translation Report dialog box and the "Import Files" progress indicator appear, but then PP just hangs with the spinning beach ball. I've t

  • My plugin sometimes crashes on exit

    Hi i developped a 8bf plugin for Photosop™ and when i quit the plugin, i have sometimes issues: 1) the plugin window freezes and the plugin run forever. 2) the plugin crashes PS directly. it happens more often when i've had some heavy computations in

  • Apple Mobile devices and Itunes is taking up 100% of my CPU and I can not get to the Itunes music store on 10.5

    I have installed the 10.5 version of the Apple Itunes app.  Now when I bring it up it takes up one whole CPU and my other CPU is used up by Apple Mobile devices.   I am using Windows XP Service Pack 2.    I have tried uninstalling all Apple products