Transperancy and effeciency

im posting here code that i got out of the internet on how to creat transperant window in C#.. try it , it looks cool and not too heavy on cpu..
Why doesnt java have somthing like that?, a true transperacny.. discuss.
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace TransparentForms
    /// <summary>
    /// Summary description for Form2.
    /// </summary>
    public class Transparent : System.Windows.Forms.Form
        internal System.Windows.Forms.GroupBox GroupBox1;
        internal System.Windows.Forms.Button cmdApply;
        internal System.Windows.Forms.NumericUpDown udOpacity;
        internal System.Windows.Forms.Label Label1;
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.Container components = null;
        public Transparent()
            // Required for Windows Form Designer support
            InitializeComponent();
            // TODO: Add any constructor code after InitializeComponent call
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Dispose( bool disposing )
            if( disposing )
                if(components != null)
                    components.Dispose();
            base.Dispose( disposing );
        #region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
            this.GroupBox1 = new System.Windows.Forms.GroupBox();
            this.cmdApply = new System.Windows.Forms.Button();
            this.udOpacity = new System.Windows.Forms.NumericUpDown();
            this.Label1 = new System.Windows.Forms.Label();
            this.GroupBox1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.udOpacity)).BeginInit();
            this.SuspendLayout();
            // GroupBox1
            this.GroupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                    this.cmdApply,
                                                                                    this.udOpacity,
                                                                                    this.Label1});
            this.GroupBox1.Location = new System.Drawing.Point(12, 75);
            this.GroupBox1.Name = "GroupBox1";
            this.GroupBox1.Size = new System.Drawing.Size(268, 116);
            this.GroupBox1.TabIndex = 4;
            this.GroupBox1.TabStop = false;
            // cmdApply
            this.cmdApply.Location = new System.Drawing.Point(172, 64);
            this.cmdApply.Name = "cmdApply";
            this.cmdApply.Size = new System.Drawing.Size(80, 24);
            this.cmdApply.TabIndex = 5;
            this.cmdApply.Text = "Apply";
            this.cmdApply.Click += new System.EventHandler(this.cmdApply_Click);
            // udOpacity
            this.udOpacity.Increment = new System.Decimal(new int[] {
                                                                        5,
                                                                        0,
                                                                        0,
                                                                        0});
            this.udOpacity.Location = new System.Drawing.Point(88, 32);
            this.udOpacity.Name = "udOpacity";
            this.udOpacity.Size = new System.Drawing.Size(48, 21);
            this.udOpacity.TabIndex = 4;
            this.udOpacity.Value = new System.Decimal(new int[] {
                                                                    50,
                                                                    0,
                                                                    0,
                                                                    0});
            // Label1
            this.Label1.Location = new System.Drawing.Point(20, 36);
            this.Label1.Name = "Label1";
            this.Label1.Size = new System.Drawing.Size(56, 16);
            this.Label1.TabIndex = 3;
            this.Label1.Text = "Opacity:";
            // Form2
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
            this.ClientSize = new System.Drawing.Size(292, 266);
            this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                          this.GroupBox1});
            this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.Name = "Form2";
            this.Text = "A Transparent Form";
            this.GroupBox1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.udOpacity)).EndInit();
            this.ResumeLayout(false);
        #endregion
        private void cmdApply_Click(object sender, System.EventArgs e)
            this.Opacity = (double)udOpacity.Value / 100;
        [STAThread]
        static void Main()
            Application.Run(new Transparent());
}

i used the jna api with jgl "java gl api" written by robin.. it is open source pure java implementation of open gl and glut calls. just google it and download the jar and save it to java/jre/lib/ext or ur classpath then compile this code and see transparent 3D graphics on ur desktop..
this code is one of the examples in jgl .. i just modified it to use JFrame and jna calls to add transperancy.
Bilal El Uneis
*  movelight.java
*  This program demonstrates when to issue lighting and
*  transformation commands to render a model with a light
*  which is moved by a modeling transformation (rotate or
*  translate).  The light position is reset after the modeling
*  transformation is called.  The eye position does not change.
*  A sphere is drawn using a grey material characteristic.
*  A single light source illuminates the object.
*  Interaction:  pressing the left mouse button alters
*  the modeling transformation (x rotation) by 30 degrees.
*  The scene is then redrawn with the light in a new position.
import java.awt.Frame;
import javax.swing.*;
import java.io.IOException;
import java.lang.String;
import java.lang.System;
import jgl.GL;
import jgl.GLUT;
import jgl.GLCanvas;
import com.sun.jna.examples.WindowUtils;
public class movelight extends GLCanvas {
    private int spin = 0;
     *  Initialize material property, light source, lighting model,
     *  and depth buffer.
    private void myinit () {
         myGL.glClearColor (0.0f, 0.0f, 0.0f, 0.0f);
     myGL.glShadeModel (GL.GL_SMOOTH);
     myGL.glEnable (GL.GL_LIGHTING);
     myGL.glEnable (GL.GL_LIGHT0);
     myGL.glEnable (GL.GL_DEPTH_TEST);
     *  Here is where the light position is reset after the modeling
     *  transformation (glRotated) is called.  This places the
     *  light at a new position in world coordinates.  The cube
     *  represents the position of the light.
    public void display () {
         float position [] = {0.0f, 0.0f, 1.5f, 1.0f};
     myGL.glClear (GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
     myGL.glPushMatrix ();
         myGLU.gluLookAt (0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0);
         myGL.glPushMatrix ();
              myGL.glRotated ((double)spin, 1.0, 0.0, 0.0);
          myGL.glLightfv (GL.GL_LIGHT0, GL.GL_POSITION, position);
          myGL.glTranslated (0.0, 0.0, 1.5);
          myGL.glDisable (GL.GL_LIGHTING);
          myGL.glColor3f (0.0f, 1.0f, 1.0f);
          myUT.glutWireCube (0.1);
          myGL.glEnable (GL.GL_LIGHTING);
         myGL.glPopMatrix ();
         myUT.glutSolidTorus (0.275, 0.85, 8, 15);
     myGL.glPopMatrix ();
     myGL.glFlush ();
    public void myReshape (int w, int h) {
        myGL.glViewport (0, 0, w, h);
        myGL.glMatrixMode (GL.GL_PROJECTION);
        myGL.glLoadIdentity ();
     myGLU.gluPerspective (40.0, (float)w/(float)h, 1.0, 20.0);
        myGL.glMatrixMode (GL.GL_MODELVIEW);
        myGL.glLoadIdentity ();
    /* ARGSUSED2 */
    public void mouse (int button, int state, int x, int y) {
     switch (button) {
         case GLUT.GLUT_LEFT_BUTTON:
          if (state == GLUT.GLUT_DOWN) {
              spin = (spin + 30) % 360;
              myUT.glutPostRedisplay ();
          break;
         default:
          break;
    /* ARGSUSED1 */
    public void keyboard (char key, int x, int y) {
     switch (key) {
         case 27:
          System.exit(0);
         default:
          break;
    public void init () {
     myUT.glutInitWindowSize (500, 500);
     myUT.glutInitWindowPosition (0, 0);
     myUT.glutCreateWindow (this);
     myinit ();
     myUT.glutDisplayFunc ("display");
     myUT.glutReshapeFunc ("myReshape");
     myUT.glutMouseFunc ("mouse");
     myUT.glutKeyboardFunc ("keyboard");
     myUT.glutMainLoop ();
    static public void main (String args[]) throws IOException
         try
               System.setProperty("sun.java2d.noddraw", "true");
        }catch(Exception e){}
     final JFrame mainFrame = new JFrame ();
     mainFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
     mainFrame.setSize (508, 527);
     movelight mainCanvas = new movelight ();
     mainCanvas.init();
     mainFrame.add (mainCanvas);
     WindowUtils.setWindowAlpha(mainFrame, .7f);
     mainFrame.setVisible (true);
}

Similar Messages

  • Whats happening with my dock it turned transperant!

    Well restarted my computer and ther it was, the dock was transperant and each time I open an app. they become transperant (somtimes)
    http://farm2.static.flickr.com/1255/106967757058020380f2o.png
    What should I do? already tried deleting the com.apple.dock.plist and restarting it so it would go back to normal but it didn't work. What do I do? PLEEEZ help nobosy knows what it is!

    Well restarted my computer and ther it was, the dock was transperant and each time I open an app. they become transperant (somtimes)
    http://farm2.static.flickr.com/1255/106967757058020380f2o.png
    What should I do? already tried deleting the com.apple.dock.plist and restarting it so it would go back to normal but it didn't work. What do I do? PLEEEZ help nobosy knows what it is!

  • My computer is running slowly and the DVD app quits on start up

    Firefox and Facebook made my computer slow. It started with "Warning unresponsive script error, would you like to stop or continue" this happened all the time while looking at FB. Then it killed my iChat somehow. So while trying to fix iChat, it said in a forum, to delete your cache.... so I did and that made my comp. worse. Now I can't use DVD player or VLC player. They quit during start up. What can I do to fix it and get it back to playing DVD's? I can still use the internet but if I click on something it can take a long time to change tasks. Can I fix this myself or do I need to take it in?

    You are certainly welcome!
    Good job getting all of that information from your computer, as well! :-)
    Now, all of those processes that you "delete" (quit/force quit) from activity monitor should automatically restore once you restart your computer. Before a restart, however, the lack of the quitted processes should speed your computer up a bit.
    You said that your second login item was "swf desktop." .swf is a flash file (usually an animation). Do you have some software running that is giving you some sort of motionized desktop image? This is a HUGE CPU hog (I know from experience) and would greatly slow your computer down. I would recommend removing that item from your startup items list.
    I am not entirely sure what all of your login items represent, however, I do know that by default from a fresh install of Mac OS X, none should be present. I would actually advise to remove all of those items from your login items folder, unless you know more information about the items. Note: If you want any changes to take effect after removing login items, you must restart your computer and log in. 
    Clearing your RAM does not involve deleting a single bit of information from your hard drive. To clear your RAM, shut down your PowerBook, disconnect the power adapter (piece of hardware that plugs into an outlet in your wall), pull out the PowerBook's battery (If you have an Aluminum PowerBook, grab a coin of currency and use it to turn the silver disk on the bottom of the computer near the battery to the unlock icon. If you have a Titanium PowerBook, slide the slider on the side of the battery to the right and the battery should "pop" up), and wait about 10 minutes for the PRAM battery inside of the PowerBook to drain, thus erasing all RAM contents and not the hard drive information.
    It nothing seems to be helping you PowerBook, a hard drive whipe and resinstall may be the easiest route.
    As for backing up your hard drive data, I am sorry you are having errors. There are many ways to get around it, though. One way would be to boot a live CD of Ubuntu Linux for PowerPC. To do this, download the .iso file from http://cdimage.ubuntu.com/ports/releases/8.04/release/ubuntu-8.04.1-desktop-powe rpc.iso. Once the download is finished, you'll need a blank CD to write the file to. To do this, open DiskUtility.app and drag the downloaded .iso file to the left-hand side of the Disk Utility window (where all volumes show up). Select the .iso file within Disk Utility and burn it to a disk. Once the process is complete, insert the CD into the CD-ROM drive of your PowerBook and shut it down. Once it shuts down, press the power button (top right) on your PowerBook and hold down the "C" key on your keyboard. This will tell the PowerBook to boot from watever volume is found in the CD-ROM drive (in this case, the Ubuntu Linux CD). You may be prompted to a black screen with some white text, giving you options on what to boot, as well as some information about your display. Do NOT install Ubuntu Linux, or else it will erase the contents of your hard drive. Choose the option that will allow for you to "live" boot the CD (run without installing). This will probably take a good few minutes to boot. In the event that your display does not work properly, restart, boot from the CD, but use the command where it talks about getting your display to work properly. Once you successfully boot Ubuntu Linux, click on "Places" (top left-hand corner of the desktop) and select your internal hard drive (Macintosh HD, or whatever you named the partition). You can then plug in your external hard drive, and select it from "Places" as well. With the two windows open, drag the wanted files from your PowerBook's hard drive window to the external hard drive's window in order to copy the files. Once the transfer is complete, restart your PowerBook. You shouldn't have to hold any keys down to get it to boot back up into Mac OS X but if it doesn't boot, hold down the option key on your keyboard and select your PowerBook's internal hard drive. Make sure that your files were successfully backed up before you do a reinstallation of Mac OS X.
    There are also simpler ways to back up your documents, keeping in mind that you don't HAVE to back up your documents to your external hard drive. You said (I belive) that you could still send email from your PowerBook. Can you just attach important files (possibly indvidual files at a time) and email them to yourself, which would allow you to log onto your other (properly-working) computer and download the files to it's internal hard drive? This could take quite awhile and certainly a last resort.
    Another, more-easier and effecient way, in my opinion, would be to transfer the files over your home network to your other working computer (your newly-purchased MacBook Pro). To do this, on your PowerBook, open system preferences, click the "Sharing" icon, and check the box that enables file sharing.
    Now, on your MacBook Pro on the same network, conect to your PowerBook over the network. This can be done by (on your MacBook Pro) clicking on the Finder icon (bottom left corner of your computer screen (left-most icon in the Dock)), clicking "Finder" (top of screen in the task bar) and "Preferences." Once the Preferences window is opened, click on the "Sidebar" tab. Check the box that will show "Computer" in the left-hand side of any finder window. Close the preferences window. Click on your computer's name at the top right-hand side of your Finder window. Double click on the "Network" icon (a blue/purple sphere). Double click on your PowerBook's icon. You will most-likely be prompted to enter in some information (username and password). Enter in the proper requested information, and the contents of your PowerBook's hard drive should display in the finder window. Click-and-drag the wanted files from your PowerBook's window to a location on your MacBook Pro's hard drive. Depending on the size of the files and your Wi-Fi router speed, this could take some time. In the event that you are not using a Wi-Fi connection on a home network, let me know, and I will give other options that will allow you to do computer-to-computer file sharing (such as with an ethernet or firewire cable).
    This stuff certainly takes time... One might suggest to free up a day with nothing going on to really get things done. Don't get frustrated, as I'm here to help and am fully confident that we'll get this all figured out! :-)

  • Html Widget Crashes. How to load only one html widget at a time?

    I have a bunch of html widgets which are just tab navigators with html pages inside of them. I must have about 20 of them , mostly leading to google image searches for common searches I tend to do in my work. Instead of constantly searching for these things on google I just click on the tab with the google search for say..."tree images".  Its very fast and effecient for me.
    The problem is now I have so many that it crashes photoshop, or crashes adobe configurator most of the time if I try to open the panel file. Im guessing that the panel I made tries to load all 20 google image searches at once, instead of only loading the page I click on one at a time. Is there anyway to stop configurator from loading my html widgets that arent clicked on ?

    Anyone?

  • How do i transfer itunes data from one computer to the next

    I have recently bought the iPhone 4s and i have all my data on my son's computer. We are all creating our own iTunes on our own computers in order to create less trouble because my son and husband updated their phones and I set up my iPhone and we encountered problems with getting all our data back from the back up.
    Does anyone know an easy and effecient way to transfer me and my husbands information to our own computers?

    Here are typical layouts for the iTunes folders:
    Since things are already broken it might be best to create this layout first then use FindTracks to repair things. Ideally you would have a complete clone of the library on a second drive as a backup. You would have the library folder at the root of the drive and the media folder inside it. Connect to the library by shift-starting iTunes. If everything is in the normal layout iTunes may be able to heal itself if you attempt to get info and locate a missing file when prompted. Otherwise you would direct the script to start its search from ..\iTunes\iTunes Media.
    tt2

  • What is the method used for upload of  data

    Hi All,
    What is the method used for upload of  Data from excel spread sheets to SAP HR.
    it is Bulk Data from many countries.LSMW or BDC Session Method?
    what are country specific infotypes used for PA and OM.
    can u plz give the list of country specific infotypes used for PA n OM Module.
    Thanks
    Archana

    Hi Archana,
    To Upload bulk data I think BDC is the best and effecient way.
    Regarding Infotypes we dont have any country specific Infotypes in OM & PA. In Payroll we do have according to country wise.
    I hope you had understood the point
    Regards
    Pavani
    Remainder: Points to be given on answers

  • ADR session

    Hey-
    I'm about to do a quick and dirty ADR session for a friend of mine who's involved on making a feature film. My ideal setup is to set up a padded recording booth in the small closet near my workstation, while running a video output to a preview monitor in the booth so the actor can watch the clips as we record the ADR.
    Here's my question. I've used Final Cut Pro extensively and always used to have a preview monitor up for previewing my edits in real-time on the television. It would output via firewire to a box that converted the outgoing DV-NTSC to a composite cable output that i could run to the stanard composite input on my monitor. Can I do the same with Logic??? I've done scoring in logic in the past where I've loaded quicktime movies onto the timeline for scoring to, but I've never needed to have a LIVE VIDEO OUTPUT FEED as the track was playing/recording...
    ...this is vital for the ADR session: to be able to hit record in logic, and as the track records it not only plays the video we're recording to, but outputs it via NTSC so i can have live video playback on the monitor in the booth so my actor can watch the video in realtime and we can preview our recordings instantly and effeciantly.
    Thanks in advance!
    chris

    You sure can. Just open the movie and sync it up your movie start time with your Logic sequence (Options/Movie/Open Movie). Then go to Edit/Song Settings/Video and select Firewire for the Video Output - Dont forget to set Sound Output to "Mute" or you might hear any audio that's associated with your quicktime movie. You'll may also have to play around with External Video to Song setting (I used to enter -27 for my Canopus ADVC-100) to get it in sync. That setting is found by clicking the Video Preferences button in the lower right.
    I got rid of my ADVC-100 and instead run video out to an LCD monitor via a DVI cable. I select Digital Cinema Desktop as the Video Format and I get perfect sync all the time. No External to video offset needed.
    Good luck!
    Danny

  • 6 hr battery life on a Droid Eris out of the box

    Hello eveyone.
    I need help I just changed my blackberry storm for the Droid Eris.
    Right out of the box and charged the battery lasts 8 hrs tops then it's decresed to 6 hrs.
    THhis drop was due to my twitter and facebook usage which is very low and some emails that come in now.  I cant surf the net due to the battery drop.
    My old storm would go on for 2 days 1 full day with heavy usage. This is a new phone...what gives?
    Thx.

    It isn't the phones fault. It is due to an under amped battery. It is a strong phone that needs more juice. I would be hard pressed to believe the motorola droid or any other android phone has a huge difference in battery time. If there is a huge difference you don't use the phone as much as some of us do then. I purchased the 1750 battery from seido. Would have got the next one up the 3500 if it had been the price it is now. I recommend buying two and an external charger. I am getting ready to buy another 1750 and charger. This will increase the life of the battery for two reason primary reasons. Proper time for charging and the fact it isn't in use makes the charging cycle much better and effecient. I work in a hospital and get my phone searching quite often, from one netowork type to the next. I can get a solid 12 hours with 20% left at thend of the night when I get home. I have FB chat up litterally all the time bloo, I don't twitter that much but I get updates. I get mail pushed via gmail now. I do use wi-fi off and on as well. Since I'm in doors I don't actually leave the gps on, waste of power in general. Any of the newest smartphones have an underpowered battery. BB doesn't use use the web in the same fashion as android does and it isn't multitasking which is one of the big killers ont he phone. Use a task killer, select the improtant apps to ignor and make sure it cancels stocks and mp3 store, waste of cpu there. You can maximize the power you get with the battery you have, but the 3500, will add a small bit of thickness, but who really wants a hardworking model for a phone. She (the phone) just doesn't feel the same. Sorry to ramble so much, but it gets me when people say it is the phones fault or HTC is the cause. I disabled sense UI for a week and used the open UI that android has. I lost an hour and a half on the average daily, so I have to say from doing that and then turning it back on and getting the missed time back sense UI isn't the cause. I didn't notice any extra pps running when I used the open UI so I have no idea why it acted that way. It coudl have been caused by background jobs that the Sense UI uses but wasn't since it wasn't enabled and the services still ran, now that I mention that I need to check that out. It is the wrong battery fo the job, plain and simple. Replace your moto droid batteries and you will see a huge difference too. You can charge the new batteries for less time(4 hours or less pending on charger) and they will say full, but you get bad results when you short change your batteries charge time. To get the most out of my batteries, I charge them for a full 8 hours, the reason I am getting another battery and ext charger with dock.(http://store.androidcentral.com/mobi-products-cradle-w-spare-battery-slot/5A100A6693.htm) and the battery I am getting (http://store.androidcentral.com/seidio-innocell-1750mah-extended-battery/8A37A6399.htm) or the bigger battery (http://store.androidcentral.com/seidio-innocell-3500mah-extended-battery/8A37A6374.htm) You can find better prices but these are for reference. A note on airplane mode: It disable all radios in the phone. You will not receive calls and txt/mms messages. Basically it turns your phone into a PDA. You can enable the wi-fi for access. Since I replaced my battery I don't do it that often but sometimes I find it neccesary to use airplane mode for some of the remote desktop use I do on my phone.

  • Flex 2 SWF not loading on the web browser when Flash Player 8 is running

    I got a Flex 2 application that is not loading on the web
    browser when the users workstations got Macromedia Flash Player 8
    installed. Please advice on what could be the issue, i got security
    calls included i.e. securty.allowInsucureDomain, crossdomain.xml,
    etc.
    The application shows no issues on web browsers with Flash
    Player 9 installed.

    if you have read developersGuide it says that there somewhere
    http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part2_DevAp ps_048_1.html
    here is workaround
    http://kb.adobe.com/selfservice/viewContent.do?externalId=749eaa47&sliceId=1
    flex 9 is complete rewrite (almost) and its lot mor fast and
    effecient) you should't want to use flash 8 if you can anyways, but
    somethimes I guess there is not other way out..

  • AS3.0 Question dealing w/ the stage

    I had a question if there is a way to set the stage as not visible?  Meaning the .swf stage is transperent and takes the properties of the bg image of the bg of the page its laid on?  I'm trying to steer away from just using flash for the site and using a mixture of flash elements in a css site but I can't seem to get the stage to be transparent.  Any help on this would be great.  Thanks in advance.

    What if we add
    <param name="wmode" value="transparent">
    I meant, inside html where you publish your swf.
    <object classid="clsid:bala" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="250" height="50">
    <param name="movie" value="bala.swf">
    <param name="quality" value="high">
    <param name="wmode" value="transparent">
    <embed src="bala.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="250" height="50"></embed>
    </object>

  • I want to reuse a cutout of a face that I am making talk

    I have very successfully gotten a face to talk using Roberts Productions training video. I have successfully merged a cutout of the face that I made using the pen tool in a video clip and gotten it to move with the body in the clip. I have done this for the same face into many clips.
    But I must cutout the head that I place in the next video everytime. It is the same head. It is cutout exactly the same way. Surely there is a way to transfer just the cutout portion. When I cutout the head in the base picture, rather than in the video, then the black background area comes with it and I still have to cut it out again.
    Thanks from a newbie

    If Dave's assumptions are correct, you could also just skip the masking and edit out the background of the layers in Photoshop.  Then export them using the Export Layers to Files sccript with preserve transperancy turned on. Go to File - Scripts - Export Layers to Files.  Then choose something like PNG-24 or TIFF, anything with an alpha channel, and click preserve transperency and turn off trim layers if you want to bring them back into AE in the exact same place or use trim to crop them, but then you'll have to reposition everything.
    This screenshot is taken from my new blog where I did a short tutorial about working with image sequences in PS & AE.  if you're curious or want more info check it out here:
    http://benmarkus.wordpress.com/2012/08/09/working-with-image-sequences -in-photoshop-after-effects-cs6/

  • Overlapping Graphs in Crystal Report

    We have a requirement of designing a drilldown for which we have used Group charts in Crystal report. Our requirement is to plot graphs on 2 different summary fields on the same level i.e we require that on change of Zone, graph should be shown for Average of MTBF and MTTR values in that zone. We are using Crystal Report 2008. There is a limitation in crystal that only one summary field can be shown in a single group chart, so we hade created 2 different charts for MTBF and MTTR and overlapped one on the other and made the graph at front as transperent. MTBF is a bar chart and MMTR is a line chart.
    It works fine when we do a preview in crystal report, the top graph is transperent and we can see both the graphs.
    But when we are viewing the graph through Infoview, the top graph is no more transperent and we cannot view the 2nd graph that is at bottom.
    Can anyone help in solving the problem or is their any workaround to display 2 summary fields in one graph in group chart.
    Appriciate any immediate help, we are in a critical stage and need to solve the problem ASAP.
    Thanks in advance
    Suchi...

    Thanks for the promt reply.
    We are not exporting the report, We are directly vieweing it in info view.
    I have very little idea about infoview. Can you please let us know how we can change the setting for infoview and who can do this. We just have access to Crystal report and the Business View manager to create and use the prompt group and save our rpt file so that we can view it through infoview.

  • Problem capturing Data from TAG.

    Hello,
    We have dashboard which displays Throughput, Downtime for the particular Machine. The data for the Downtime is extracted from the TAG system. We have created Downtime BLS which is scheduled for every 1 Hour and it displays Downtime Start and Downtime End on the Dashboard after every 1 hour if it finds any Downtime.
    The requirement is whenever the machine goes down at that particular instant we need to capture the Downtime Start.
    We plan to build the 24/ 7 monitoring system to capture the Downtime Start. This has a huge Performance Issue.
    Please suggest me if there is any feasible and effecient way of capturing Downtime Start from the Tag instantly when the machine goes down.
    Thanks,
    Pallavi

    Pallavi,
    If you build the 24/ 7 monitoring system to capture the Downtime Start, it will create the huge perfomance issue.
    There is no any feasible and effecient way of capturing Downtime Start from the Tag instantly when the machine goes down.
    So you follow the following steps to avoid the performance issue.
    You build a transaction to do the 24/ 7 monitoring system to capture the Downtime Start.You schedule this transaction in backend and this transaction will store the values in a SQL table.In front end you can get the values from the SQL table.
    It wont create any performance issue.
    Hope this will help you.
    Thanks,
    Manisha

  • How to do frame by frame image restoration?

    I have a short silent movie (a .mov file) that was created from an old 8mm original film. I can open the file with Premire Pro and can view it frame by frame.  I was wondering if it is somehow possible to do a frame-by-frame restoration of this movie (such as eliminating random spots and occasional scratches), preferably with Photoshop (that has many nice image restoration tools) without losing any of the movie's original resolution?  I would welcome any ideas on how this might be accomplished? Thanks.

    felinedrive wrote:
    Thanks so much Jim, Evil, and David -- you each had great suggestions that I think have put me on the right track. Although the approach of editing directly in Photoshop seems like the easiest (and therefore best) solution for me, I will also try the exporting, editing, and importing of the numbered stills approach with Premiere as well. 
    i've done both methods, and depending on what you need, one could work better....
    i had a 7 second sequence that had several 3d rendered objects that intertwined.... i had to get rid of 1 of those objects, and so i exported that sequence as a tiff sequence and just went frame by frame in photoshop doing it. but i was doing every single frame.
    another time i had a video that had like what you were talking about some roughness throughout but not constant. that time i followed david's advice and it was very quick and effecient for that particular sequence.... you may prefer his method better for this situation....
    never worked with "film" yet, so i dunno if they have it available... but i wonder if there would be any plugins that may help remove like holes and whatnot? i dunno.... i do know that Photoshop CS5's content aware healing will proabbly do WONDERS to fix film holes and stuff.

  • Upgrade from LR 5.2 to 5.3. Is any preparation necessary?

    Is there anything I need to do before upgrading, such as backing up my develop presets ready to re-instate them after the upgrade ,or do I just go ahead, hit the "download" button and leave it to grind away?
    I can't find any description of the process so I'm hoping that's intelligent enough to take care of everything for me. Documentation never says what you don't have to do :-)
    Thanks,
    John

    I put it off for a day as I dread software upgrades.  But, as stated above, upgrading from 5.2 to 5.3 is fast and effecient. 
    My computer is attached to the internet with an extra fast cable connection and LR is on an SSD.  Start to finish, it took less than 10 minutes.
    I clicked Help > Check for updates... and went from there.  There are download screens, a license acceptance form and a reboot.  Where necessary I agreed to each suggestion.
    There were no glitches.

Maybe you are looking for

  • Installation Problem Sun Java App Server 8.2 PE

    Hello! every body Please help me to get out of this Monster :( For last 2 day i m trying to install Sun Java Application Server 8.2 PE. Installing & uninstalling Dozens of time. The Installation halted at *51% at Uncompressing sun-as-jsr88-dm.jar* I

  • Syncronization: How can i store mail for different accounts remotely, and copy most important mails manually to local folders on two devices?

    Hello. I have two devices and two accounts, so what i want is this: I only want to store mail from both accounts in a remote place and copy most important mails to local folders. (I will be grateful for any ideas as to where/how this "cloud" can be -

  • Different Results from SQL-Query in Oracle 10.2 and  Oracle 11.2

    Look at the following example: CREATE TABLE GZP_PLAN (GZP_ID NUMBER(9) NOT NULL, PARENT_GZP_ID NUMBER(9), CONSTRAINT GZP_PLAN_PK1 PRIMARY KEY(GZP_ID) USING INDEX TABLESPACE USERS TABLESPACE USERS; insert into GZP_PLAN values(1,NULL); CREATE TABLE GZP

  • Pixelated Graphics - Powerpoint to PDF

    I am exporting a PDF from Powerpoint 2003 to PDF. The problem is that the color images (logo) are quite pixelated. Depending on the Acrobat zoom level, it can look quite good, but can also look very bad. So is this just a rendering issue on the acrob

  • How to play midi files

    i recently got some midi files but when i go to play them in logic they wont play it has a signal but no sound comes out just wondering how do i get it to play and also can i load these files into any synths and how would i go about doing that