How to create an OPACITY Gradient?

First, thanks to Andy Mees, whose very handy Gradient Filter I've just added to my FCP Effects arsenal. It came from this thread:
http://discussions.apple.com/thread.jspa?threadID=1526509&tstart=45
What I was actually searching for though is slightly different. Specifically:
Is there a way (an existing FCP feature; a clever workflow; or a 3rd party plug-in) to manipulate the opacity of a clip spatially, separate from the current ability to control a clip's overall opacity temporally (by keyframing different values)?
In other words, is there a way I can define (in both shape and size) an *opacity gradient* for a given clip?
As an example, let's say an effect where the clip's opacity progresses smoothly from 80% on the left edge of frame to just 10% opacity on the right edge -- allowing any video layer(s) beneath that clip to be very visible near the right edge of frame, but barely visible the closer you look to the left edge of frame.
Just to be clear: I'm not wanting to change the darkness or lightness (or color) of part of the clip in the way you normally think of a gradient operating -- just the opacity, but over a flexibly-definable gradient. Ideally, this opacity gradient could be linear or radial (or even other shapes?), with both its shape, and the opacity values assigned to its beginning and end points, all keyframe-able.
So -- does anything like this ability already exist (and am I going to exclaim "D'oh!" when I hear what it is), or is this an effect which is easier asked-for than achieved?
Thanks,
John Bertram
Toronto

Sure...
Create a Custom Gradient from the "A" (viewer window) RENDER - Custom Gradient.
Create one that goes from BLACK to WHITE left to right.
Change the BLACK color luma slider to something around 80% black and the WHITE color luma slider to something 10% White (or 10% black if you want to get technical!!)
THEN...
Put video in V1 and the gradient in V2 and the second level of video in V3. Right Click (control click) the V3 video and set it's COMPOSITE MODE to Travel Matte - Luma.
Remember, the BLACKER it is the more will show thru from the bottom layer.
Best of luck...
CaptM

Similar Messages

  • How to create the perfect gradient in motion

    Hi does anyone know how to create a gradient background in motion without it banding in the final movie ?
    Paul

    Hillster wrote:
    What is Floating Point?
    Floating point math. Open your project properties (CMD+J) and change the bit depth to 16 or 32 bit float. It'll cause a tremendous slowdown of playback, but presumably you should just be able to leave it off until you're ready to export.
    Also, use the best compression you can afford to. Uncompressed, Animation (maybe), or even a TIFF sequence. The less you're compressing the file, the better it'll look.
    Andy

  • How to Create a consistent Gradient w/ Soft Edge & Filter

    Hello, Im using photoshop 6, and Im trying to apply an effect for a banner photo, that will be consistent for other banner photos of the same size.
    I've attached a photo of this.
    As you can see the gradient (which contains the text) starts with a grey color then transitions to white. The right edge that meets the blue sky isnt a hard edge but rather a soft edge.
    Im not sure how to create that soft edge. Someone else had mentioned to use the gradient with colors from grey to white then to transparent to create that soft right edge.  Im not sure how to set that up.
    I used a brush in this case, and as you can see, the line is uneven.
    Also I believe the Filter used here is Ripple or Ocean Ripple.
    I was hoping if someone could walk me through what the correct steps would be to create that effect, so that I can use this consistently for several photos

    Oh, I see, PS 6. The parts here about Fill Layers and Layer Styles won't apply, but the editing method is the same:
    First, open the Gradient Editor by clicking on the Gradient in the Option Bar or the dialog for a Gradient Fill Layer:
    Set up a Gray-to-White Gradient, and add a transparent stop just pas the White stop:
    Enter a name, and click on "New" to save it. You can also save as part of a Layer Style with Gradient Overlay.

  • How to create a halo gradient for web 'master page'

    Working with PS CS5.5.
    I am needing to create a 1000px x 650px background image for a web application. I would like the resulting file size (PNG) downloaded by the web-site to be in the 50kb realm.
    What is the general strategy for creating a gradient like the attached file?
    Should I start with a solid background color and overlay the solid with a white gradient layer (center being less transparent) ... this in my mind would result in the smallest file size given that I could decrease the resolution (of the exported PNG file) without any visible effects on the web-page.
    Please advise,
    Brad

    There may be many ways to do it, but you could render a round radial gradient fill layer, adjust it to taste, then save as PNG and just resize it to whatever dimensions you like in the HTML, which could get you the oval shape.  Or you could rasterize it in Photoshop and save as a "squashed" version for a possible small savings in file size.
    The above 500 x 325 pixel gradient saved as a PNG is about 50 kb.
    This one was cropped, rasterized and squashed vertically, and takes only 26 kb on disk.
    -Noel

  • How to create an Elliptical Gradient (e.g, implement PaintContext).

    Hi,
    I found an implementation of a circle gradient that works well.
    Search this page for RoundGradientPaint and RoundGradientContext:
    http://www.oreilly.com/catalog/java2d/chapter/ch04.html
    My question is this: How do I modify this code to draw an elliptical gradient instead only a circle gradient? I would really appreciate any help.
    Thanks!

    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class EllipticalGradient extends JPanel {
        Point2D.Double p = new Point2D.Double(175, 75);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            Rectangle r = getBounds();
            double cx = r.getCenterX();
            double cy = r.getCenterY();
            OvalGradientPaint ogp =
                    new OvalGradientPaint(cx, cy, Color.magenta, p, Color.blue);
            g2.setPaint(ogp);
            g2.fill(r);
        public static void main(String[] args) {
            EllipticalGradient eg = new EllipticalGradient();
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(eg);
            f.add(eg.getControls(), "Last");
            f.setSize(400,400);
            f.setLocationRelativeTo(null);
            f.setVisible(true);
        private JPanel getControls() {
            final JSlider xSlider = new JSlider(10, 200, (int)p.x);
            final JSlider ySlider = new JSlider(10, 200, (int)p.y);
            ChangeListener l = new ChangeListener() {
                public void stateChanged(ChangeEvent e) {
                    JSlider slider = (JSlider)e.getSource();
                    double value = slider.getValue();
                    if(slider == xSlider)
                        p.x = value;
                    else if(slider == ySlider)
                        p.y = value;
                    repaint();
            xSlider.addChangeListener(l);
            ySlider.addChangeListener(l);
            JPanel panel = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.insets = new Insets(2,2,2,2);
            gbc.fill = gbc.HORIZONTAL;
            addComponents(new JLabel("p.x"), xSlider, panel, gbc);
            addComponents(new JLabel("p.y"), ySlider, panel, gbc);
            return panel;
        private void addComponents(Component c1, Component c2, Container c,
                                   GridBagConstraints gbc) {
            gbc.weightx = 0;
            gbc.gridwidth = gbc.RELATIVE;
            c.add(c1, gbc);
            gbc.weightx = 1.0;
            gbc.gridwidth = gbc.REMAINDER;
            c.add(c2, gbc);
    class OvalGradientPaint implements Paint {
        protected Point2D mPoint;
        protected Point2D mRadius;
        protected Color mPointColor, mBackgroundColor;
        public OvalGradientPaint(double x, double y, Color pointColor,
                                 Point2D radius, Color backgroundColor) {
            if(radius.distance(0,0)<=0)
                throw new IllegalArgumentException("Radius must be greater than 0.");
            mPoint = new Point2D.Double(x,y);
            mPointColor = pointColor;
            mRadius = radius;
            mBackgroundColor = backgroundColor;
        public PaintContext createContext(ColorModel cm,
                                          Rectangle deviceBounds,
                                          Rectangle2D userBounds,
                                          AffineTransform xform,
                                          RenderingHints hints) {
            Point2D transformedPoint = xform.transform(mPoint,null);
            Point2D transformedRadius = xform.deltaTransform(mRadius,null);
            return new OvalGradientContext(transformedPoint,  mPointColor,
                                           transformedRadius, mBackgroundColor);
        public int getTransparency() {
            int a1 = mPointColor.getAlpha();
            int a2 = mBackgroundColor.getAlpha();
            return (((a1 & a2) == 0xff) ? OPAQUE : TRANSLUCENT);
    class OvalGradientContext implements PaintContext {
        protected Point2D mPoint;
        protected Point2D mRadius;
        protected Color mC1, mC2;
        Ellipse2D.Double ellipse;
        Line2D.Double line;
        Map<Double, Double> lookup;
        double R;
        public OvalGradientContext(Point2D p, Color c1, Point2D r, Color c2) {
            mPoint = p;
            mC1 = c1;
            mRadius = r;
            mC2 = c2;
            double x = p.getX() - mRadius.getX();
            double y = p.getY() - mRadius.getY();
            double w = 2*mRadius.getX();
            double h = 2*mRadius.getY();
            ellipse = new Ellipse2D.Double(x,y,w,h);
            line = new Line2D.Double();
            R = Point2D.distance(0, 0, r.getX(), r.getY());
            initLookup();
        public void dispose() { }
        public ColorModel getColorModel() {
            return ColorModel.getRGBdefault();
        public Raster getRaster(int x, int y, int w, int h) {
            WritableRaster raster = getColorModel().createCompatibleWritableRaster(w,h);
            int[] data = new int[w*h*4];
            for(int j = 0; j < h; j++) {
                for(int i = 0; i < w; i++) {
                    double distance = mPoint.distance(x+i,y+j);
                    double dy = y+j - mPoint.getY();
                    double dx = x+i - mPoint.getX();
                    double theta = Math.atan2(dy, dx);
                    double xp = mPoint.getX() + R * Math.cos(theta);
                    double yp = mPoint.getY() + R * Math.sin(theta);
                    line.setLine(mPoint.getX(), mPoint.getY(), xp, yp);
                    double roundDegrees = Math.round(Math.toDegrees(theta));
                    double radius = lookup.get(Double.valueOf(roundDegrees));
                    double ratio = distance / radius;
                    if(ratio > 1.0)
                        ratio = 1.0;
                    int base = (j * w + i) * 4;
                    data[base + 0] = (int)(mC1.getRed() +
                                  ratio * (mC2.getRed() - mC1.getRed()));
                    data[base + 1] = (int)(mC1.getGreen() +
                                  ratio * (mC2.getGreen() - mC1.getGreen()));
                    data[base + 2] = (int)(mC1.getBlue() +
                                  ratio * (mC2.getBlue() - mC1.getBlue()));
                    data[base + 3] = (int)(mC1.getAlpha() +
                                  ratio * (mC2.getAlpha() - mC1.getAlpha()));
            raster.setPixels(0,0,w,h,data);
            return raster;
        private double getRadius() {
            double[] coords = new double[6];
            Point2D.Double p = new Point2D.Double();
            double minDistance = Double.MAX_VALUE;
            double flatness = 0.005;
            PathIterator pit = ellipse.getPathIterator(null, flatness);
            while(!pit.isDone()) {
                int segment = pit.currentSegment(coords);
                switch(segment) {
                    case PathIterator.SEG_CLOSE:
                    case PathIterator.SEG_MOVETO:
                    case PathIterator.SEG_LINETO:
                        break;
                    default:
                        System.out.printf("unexpected segment: %d%n", segment);
                double distance = line.ptSegDist(coords[0], coords[1]);
                if(distance < minDistance) {
                    minDistance = distance;
                    p.x = coords[0];
                    p.y = coords[1];
                pit.next();
            return mPoint.distance(p);
        private void initLookup() {
            lookup = new HashMap<Double, Double>();
            for(int j = -180; j <= 180; j++) {
                Double key = Double.valueOf(j);
                double theta = Math.toRadians(j);
                double xp = mPoint.getX() + R * Math.cos(theta);
                double yp = mPoint.getY() + R * Math.sin(theta);
                line.setLine(mPoint.getX(), mPoint.getY(), xp, yp);
                Double value = Double.valueOf(getRadius());
                lookup.put(key, value);
            double theta = -0.0;  // avoids NullPointerException
            Double key = Double.valueOf(theta);
            double xp = mPoint.getX() + R * Math.cos(theta);
            double yp = mPoint.getY() + R * Math.sin(theta);
            line.setLine(mPoint.getX(), mPoint.getY(), xp, yp);
            Double value = Double.valueOf(getRadius());
            lookup.put(key, value);
    }

  • How to create a gradient field in CS5 that doesn't striate when printed?

    Can someone explain how to create a large gradient field in CS5 that won't striate when printed? I created a poster, 18" x 24" in which the bottom third gradates from olive to black. When it prints there are thick paralell bands which are  undesirable. The tips I found online go back to 2009 which don't apply to CS5. The directions in the CS5 manual are confusing to me. Is there a simple way to do this?

    Is your monitor well calibrated?
    Did you print it locally on your own printer before sending it out?
    After you've exhausted everything else, you might consider creating a small test file with the offending gradient, and physically carry it to one of the printing locations, and speak to a technician there. Honestly, it sounds like a profile mismatch, but if this has happened at multiple Kinkos locations, then I agree, it would seem the problem is most likely in the file.
    Have you looked at individual channels? (R,G,B)
    One other idea: you say it's olive to black ... you could try an olive gradient from 100% opacity to 0% opacity, placed over a solid black layer, (or alteratively, a similar black gradient over solid olive) and see if that improves the output. Beware, some printers are really bad at 0%-5% values. If the gradient is going from 100% of one color to 0%, this might be contributing to the problem. Try going from 100% to 5% if this is the case.
    One last thing: can you post a portion of the offending area of the image here?

  • How to create square gradient?

    Hi there
    I'd like to ask how to create a square gradient in Photoshop such as this one :
    I'd like the white to radiate from a square shape, just as in the example image I have there, and not like Photoshop readily offers from a curcle within a square, i.e. the radial gradient, as PS calls it.
    Cheers!

    I am a big fan of the Vignette tool in Camera RAW.  It produces amazingly soft gradients that are hard to duplicate. 
    So if you have CC, fill a layer with white, convert to a Smart Object, and use the Camera RAW filter.  Go to the fx tab, and in the Post crop vignette set the Amount and Roundness slider all the way to the left, and adjust the Feather slider to suite.  OK that, and se the layer blend mode to Multiply.
    Duplicate the layer to increase density, or lower opacity to reduce it.

  • How to create curved gradient?

    hi all,
    i use photoshop CS2. i would like to know how to create a curved gradient or fill gradient in a curved shape. the gradient should take the shape of the curved geometry.
    kindly reply asap,
    regards,

    You could use the Radial Gradient Tool on a selection of the area you want to apply the gradient to, you can click the gradient in the toolbar to edit.
    Depending on the shape of the curve you may have to create it on a seperate layer then Edit > Transform > Distort.
    By working within a selection (marching ants) you can control where the gradient is applied and by trasforming it you can alter the shape once applied.
    There will as always in Photoshop be other ways, maybe using the Liquify filter to distort the shape for example?
    regards
    John

  • How to create a Gradientcolor from two existing swatches

    Hello all,
    I have 2 colors in the swatches palette.has anyone how to create a new gradient color from this to swatches.
    So far I can get my to colors from the palette and extract their color:
    aSwatch1 = sAISwatchList->GetSwatchByName( colList, colorName1 );
    aSwatch2 = sAISwatchList->GetSwatchByName( colList, colorName1 );
    iErr = sAISwatchList->GetAIColor( aSwatch1, &colorP1);
    iErr = sAISwatchList->GetAIColor( aSwatch2, &colorP2);
    // now somehow create a new gradient:
    iErr = sAIGradient->NewGradient( &gradientHnd );
    but what do now. to get the new color from colorP1 and colorP2. I need a simple linear gradient.
    Any hints?
    regards
    Michael

    Hello,
    > Please, excuse any ignorance below. I'm not well versed in the actual artistic side of Illustrator, just the implementation
    excused because you're the one of the few people here who give thoe most usefull answers
    > Isn't that to be expected though? From my admittedly limited understanding, the gradient being saved is really just a sequence of colour stops. I would have thought since the angle of the gradient is more of a property of how its applied to the path (or whatever) that it wouldn't make sense to save it on the gradient colour.
    No, not from my view (and needs ).
    The color for the gradient has a type of AIGradientStyleMap. this struct contains the angle für the linear gradient etc. This color is added to the swatchpalette so it shoud keep the value.
    If you replace the CreateGradientSwatch function in SnpGradien.cpp of the SnippetRunner with the following code a 2nd swatch with an different angle is added to the swatchpalette when creating a new linear gradient is created (name seems not what it should but 2 swatches are created. Applying this 2 swatches to a rectangle also the angle is changed as it should be.
    So from my point of view Illustrator doesn't take the angle when a new color/swatch is created in the swatch panel. Why the angle is saved by creating a style is another question and difficult to answer without looking inside the source of Illustrator
    ASErr SnpGradient::CreateGradientSwatch(const AIGradientHandle gradient, AISwatchRef& swatch)
    ASErr result = kNoErr;
    try {
    // Insert new swatch at end of general swatch group.
    swatch = sAISwatchList->InsertNthSwatch(NULL, -1);
    // Get gradient name.
    ai::UnicodeString gradientName;
    result = sAIGradient->GetGradientName(gradient, gradientName);
    aisdk::check_ai_error(result);
    // Set swatch name.
    result = sAISwatchList->SetSwatchName(swatch, gradientName);
    aisdk::check_ai_error(result);
    // Create the swatch color using the gradient.
    AIColor swatchColor;
    swatchColor.kind = kGradient;
    swatchColor.c.b.gradient = gradient;
    swatchColor.c.b.gradientAngle = 30;
    swatchColor.c.b.gradientLength = 1;
    AIRealPoint origin = {0,0};
    swatchColor.c.b.gradientOrigin = origin;
    swatchColor.c.b.hiliteAngle = 0;
    swatchColor.c.b.hiliteLength = 0;
    SnippetRunnerLog::Instance()->WritePrintf("gradientAngle: %.1f",swatchColor.c.b.gradientAngle);
    SnippetRunnerLog::Instance()->WritePrintf("gradientLength: %.1f",swatchColor.c.b.gradientLength);
    SnippetRunnerLog::Instance()->WritePrintf("gradientOrigin (v / h): %.1f /  %.1f", swatchColor.c.b.gradientOrigin.v, swatchColor.c.b.gradientOrigin.h);
    SnippetRunnerLog::Instance()->WritePrintf("gradientAngle: %.1f",swatchColor.c.b.gradientAngle);
    SnippetRunnerLog::Instance()->WritePrintf("hiliteLength: %.1f",swatchColor.c.b.hiliteLength);
    // Set the swatch color.
    result = sAISwatchList->SetAIColor(swatch, &swatchColor);
    aisdk::check_ai_error(result);
    // making a 2nd swatch
    AISwatchRef swatch2;
    swatch2 = sAISwatchList->InsertNthSwatch(NULL, -1);
    result = sAISwatchList->SetSwatchName(swatch2, (ai::UnicodeString("Grad2")));
      // Create the swatch color using the gradient.
      AIColor swatchColor2;
      swatchColor2.kind = kGradient;
      swatchColor2.c.b.gradient = gradient;
      swatchColor2.c.b.gradientAngle = 60;
      swatchColor2.c.b.gradientLength = 1;
      swatchColor2.c.b.gradientOrigin = origin;
      swatchColor2.c.b.hiliteAngle = 0;
      swatchColor2.c.b.hiliteLength = 0;
    result = sAISwatchList->SetAIColor(swatch2, &swatchColor2);
    catch (ai::Error& ex) {
    result = ex;
    return result;
    The CS3/CS4 question is easy: for CS3 i use the CS3 SDK and for CS4 I#m working with the CS4 SDK :-)

  • How to create radiant background?

    I'm hoping this is a RTFM question, but I'm tying to create a radiant background similar to these slides (http://blog.duarte.com/wp-content/uploads/2009/02/one-idea.jpg). I know how to create a linear gradient fill, but I can't seem to figure out how to create a radiant one.

    Put a shape behind everything and with it selected:
    +Inspector > Graphic (5th tab) > Fill > Advanced Fill > 2nd box under gradient bar+
    Peter

  • How to make a lower third with an opacity gradient?

    There is a lower third (name title) I saw while watching a YouTube video that I'd like to replicate in Premiere, in which it features what I would call an opacity gradient, rather than a linear gradient, radial gradient, or 4-color gradient. Here's a link to the very lower third I'm referring to:
    http://i1109.photobucket.com/albums/h426/btpayne13/1AE07C32-91AB-4D3B-8A42-2D588B8BB83D-14 72-000000B4B5AD1359_zpsd04cb202.jpg
    It appears to have a color stop opacity to it as well, but how can I get the lower third title itself to operate under an opacity gradient?

    Taking another look at the opacity gradient lower third I referred to, it looks like the gradient doesn't begin to take affect until about 3/4ths of the way down. Up until this point, the opacity remains constant. It's as if they keyframed the opacity gradient to begin only at this point, but I doubt you can keyframe lower-thirds.
    However, I just realized there is a way you can achieve this. It may not be the most efficient way, but it's the only method I could muster up and it appears to get the job done. Here's how: because Premiere does not feature a 6-color gradient (which would be ideal for this scenario), instead create two separate 4-color gradients under fill type. First, create one 4-color gradient, then specify each quadrant's color stop opacity all under the same percentage to ensure uniformity, say 60% for all quadrants. (I guess you wouldn't have to use a 4-color gradient for this first uniform lower third, but it may help to use it to visualize what I'm talking about.) Next, create another 4-color gradient and line it up flush with the first gradient. It is with this gradient that you will begin to level off the opacity. Set the color stop opacity of the two quadrants on the side that is flush with the previously created gradient to match the opacity of this first gradient (in this case, it would be 60%). Finally, move on over to the opposite side of this second gradient and pull down the color stop opacity to 0%. Voila.
    I'd like to upload a YouTube tutorial to more clearly illustrate step-by-step how to achieve this, as you did, but I've never created screen-capture tutorials before. If I pick up some screen-capture software and post this tutorial, I'll share it on here.

  • How to create a gradient - Video

    I was asked on the day I downloaded FCPX how to create a Graduated sky! Well as I had only just got it I had no idea.. so having promptly forgot the users name I thought Id stick the video here if anyone is interested.. probably most of you know how to do it anyway?!!
    http://www.youtube.com/watch?v=xRPHxLlLN3c

    Here is what I have figured out.
    If you click each color/opacity swatch slider in the gradient box in Motion you can publish the respective color, location, and opacity controls for that transition point in the gradient. This will allow you to change the colors for those points from within FCPX and adjust the location of the transition between zones.
    I'm just making up the terminology above.. hopefully it is clear.
    It doesn't seem like you add new points to the gradient from within FCPX at this time. If someone figures it out, please share!

  • How to create transparency gradient

    Hi
    please share how to create transparency gradient
    have attached the example

    qanibh,
    In the newest version(s), you may specify opacity values for the Gradient Fill.
    In older versions,, you may:
    1) Create the shape with the solid end colour upon the seethrough background;
    2) Copy to the front, apply a gradient to the copy, and in the Transparency palette/panel flyout Make Opacity Mask, setting Clip and Invert as wished.

  • How do I create a vertical gradient in a table, not with an object?

    How do I create a vertical gradient effect for alternating rows in a table?
    I'm trying to get my table cells to alternate and look like this:
    Thanks,
    freecondomap

    Hi, BTJT:
    We are starting work on a large catalog project where we will need to change the gradient fill to -90 on every other row in the table - excluding the header, footer and first row of each table.
    How would you adjust the script you mentioned above to do this? and would the script work in Indesign CS5.5 versus Indesign CS6
    It does get a bit more complicated. Not super-complicated, but not as simple.
    The above idiom only works for all the rows in a table. If you want to do any specific subset, then you need to use a loop.
    But is it necessary that you change the gradient angle on every other row? Isn't it sufficient to set the gradient angle on all rows, and then apply the alternating gradient on alternate rows using the the alternating fills feature, as suggested by Jeffrey?
    I guess you also want to apply to...all the tables in your document? That would then be:
    app.activeDocument.stories.everyItem().tables.everyItem().cells.everyItem().gradientFillAngle=-90;
    Unless you need to be more selective? But I don't think you do?

  • How can I add a gradient to the opacity of a layer in After Effects CC2014?

    I'm looking to create a simple gradient across a map such that the left of the map is transparent and the right is opaque. Any help is appreciated.

    If the map is a single layer. you can also use an mask and feathering to accomplish the same thing in a single layer.
    It depends on the project at hand, and what you need to do in it.

Maybe you are looking for

  • Since upgrading to Firefox 4 I can no longer send a link to a web page. I use Windows XP. Can anyone please help?

    I have used Firefox for some time and have enjoyed the bsend a link feature in the File drop dwon menu. Since installing Firefox 4 this feature no longer works. I click the option and nothing happens. In preferences and applications the mailt0 icon o

  • Variable comparison in powershell

    In my attempts to work powershell into some of my automation scripting I've encountered something I can't make sense of. Here's the scenario. I have two command prompt windows open on a Windows 8.1 machine. Both are pointed to the same directory. In

  • 2.1 RC1 breaks svn headlines during formatting code

    Hi, after i'm using CTRL+F7 for formatting code, alls svn headlines are broken. For example, -- $HeadURL: http://icisvnt.server.XXX.local/repos/i3s/trunk/i3skm/Model/src/main/sql/i3skm/10a_i3skm_mig_paket_revisionen_sync.pks$ will be formatted to --

  • HT204088 Find out how much a failed payment was for

    I have my card set up for payment but my bank declined the payment, my own fault as I hit a paid app I didn't want Want to know how much this was for but can't find out what I do owe.....

  • Merging only table rows

    I've been doing this by selecting one row at a time and then applying a cell merge.  Thing is, i've been working with lots of tables that need this done and  i'm kind of tired of having to select each row to merge them in a table with multiple rows.