Font background fill

I use Premiere CS
4 and I would like to know if this is possible in Premiere or do I need a plug in and if so, which one would be recommend:
1.  How can I get a .mov (or video background file) to be the fill for a big bold font I have in a title, using CS4?
2.  What plug in to CS4 would help me achieve a line of type that writes out a word or phrase character by character?
Thanks
Sharon

Welcome to the forum.
For the first question:
Make white title in the Titler, superimpose on background mov/
Drop the Track Matte Effect on mov and set it to title.
For question nr2 i have no idea what you mean.

Similar Messages

  • Text background fill

    Hi,
    I do have this nice script to add a file name into the picture. I would like to add a rectangle behind the text but I don't know how.
    Could you please help me.
    / this script is a variation of the script addTimeStamp.js that is installed with PS7
    //Copyright 2002-2003. Adobe Systems, Incorporated. All rights reserved.
    //All amendments Copyright Brian Price 2004 ([email protected])
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PERCENT;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = "";
    // Set font size in Points
    myTextRef.size = 60;
    //Set font - use GetFontName.js to get exact name
    myTextRef.font = "ArialNarrow";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 255;
    newColor.rgb.blue = 200;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 2, 98);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    Like this...
    if (documents.length)
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    var txtLayer = activeDocument.artLayers.add();
    txtLayer.kind = LayerKind.TEXT;
    txtLayer.textItem;
    txtLayer.textItem.size = 60;
    txtLayer.textItem.font = "ArialNarrow";
    var TXTColor = new SolidColor;
    TXTColor.rgb.hexValue = '00ffc8';
    txtLayer.textItem.color = TXTColor;
    var X = ((activeDocument.width/100)*2);
    var Y = ((activeDocument.height/100)*98);
    txtLayer.textItem.position = new Array( X, Y);
    txtLayer.textItem.contents = activeDocument.name.slice(0,-4);
    var LB=activeDocument.activeLayer.bounds;
    var textBackLayer = activeDocument.artLayers.add();
    txtLayer.move( activeDocument.activeLayer, ElementPlacement.PLACEBEFORE)
    var Height = LB[3].value - LB[1].value;
    var Width = LB[2].value - LB[0].value;
    activeDocument.selection.select([[LB[0],LB[1]], [LB[2],LB[1]], [LB[2],LB[3]], [LB[0], LB[3]]], SelectionType.REPLACE, 0, false);
    //Background fill colour.
    var FillColor = new SolidColor;
    FillColor.rgb.hexValue = 'ffff00';
    activeDocument.selection.fill(FillColor);
    activeDocument.selection.deselect();
    activeDocument.flatten();
    preferences.rulerUnits = originalRulerUnits;
    } else {
    alert( "No Document Open");

  • Background fill floating fields?

    Is there a way to background specific text within a text object? I'm trying to shade my floating fields. It looks like the background fill
    only applies like borders, so it only applies to the entire text object.
    I know you can change the color of words within a text object. Seems like the ability to background fill particular words should be a basic feature.
    Thanks

    I figured this out. When you create the static text object at design time, make sure that it has a word with a different colour or font or something. That will ensure that its value property contains an exData object with contentType="text/html". Now you can change the contents at run time with (I've replaced the angle brackets with {}):
    var theXML = "{body xmlns=\"http://www.w3.org/1999/xhtml\" xmlns:xfa=\"http://www.xfa.org/schema/xfa-data/1.0/\" xfa:APIVersion=\"2.5.6290.0\"}{p style=\"text-decoration:none\"}The{span style=\"xfa-spacerun:yes\"} {/span}{span style=\"color:#ff0000\"}quick{/span} brown fox.{/p}{/body}";
    StaticText1.value.exData.loadXML(theXML,true);
    Jared Langdon
    www.jlangdon.ca

  • Create a Panel skin (Spark) with a background fill color I can pass as a parameter

    Hi,
    I'm trying to create a Panel skin (Spark) with a background fill color I can pass as a parameter.
    (See in bold:)
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin name="CustomPanelSkin"
                                   xmlns:fx="http://ns.adobe.com/mxml/2009"
                                   xmlns:s="library://ns.adobe.com/flex/spark"
                                   xmlns:fb="http://ns.adobe.com/flashbuilder/2009"
                                   blendMode="normal">
              <s:states>
                        <s:State name="normal" />
                        <s:State name="disabled" />
                        <s:State name="normalWithControlBar" stateGroups="withControls" />
                        <s:State name="disabledWithControlBar" stateGroups="withControls" />
              </s:states>
              <fx:Metadata>
                        [HostComponent("spark.components.Panel")]
              </fx:Metadata>
              <s:Group left="0" right="0" top="0" bottom="0">
                        <s:Rect
                                  left="0" right="0"
                                  top="0" bottom="0"
                                  radiusX="12" radiusY="12">
                                  <s:fill>
                                            <s:SolidColor color="#184c81" />
                                  </s:fill>
                        </s:Rect>
                        <s:Group id="contents"
                                             left="1" right="1" top="1" bottom="1">
                                  <s:layout>
                                            <s:VerticalLayout gap="0" horizontalAlign="justify" />
                                  </s:layout>
                                  <s:Group id="contentGroup"
                                                       width="100%" height="100%" minWidth="0" minHeight="0">
                                  </s:Group>
                        </s:Group>
              </s:Group>
    </s:SparkSkin>
    From what I read I should create a subclass, but there is not much material on the subject.
    I would later on want to use this skin in many Panel controls I have in my application.
    Thanks for the help.

    Did you read this?
    http://www.adobe.com/devnet/flex/articles/flex4_sparkintro.html

  • Pattern tool background fill

    Is there a way that the background fill of a pattern can fill the whole pattern so that there aren't gaps like the above picture? So that it woudn't matter if you expanded the border there would always be a solid fill background?

    You are welcome, newbie.
    I was wondering if there were possibly any other way to do it.
    Maybe a more specific description/showing of the (basic) artwork will lead to alternative answers.

  • Button background fill "Linear - to top" not showing after save.

    I've made the proper edits to make these buttons look very "cool" having the background filled to a gradient look which is called "Linear to top", but once I save this form and open the PDF the button color is solid rather then gradient or "linear to top"
    Any explination?

    If you have done the changes to your your button background color at the design time, it should retain the changes anywhere you open it.
    If you have done the changes to your button background color through Script, then you may need set the Save changes automatically.
    If your issue is not resolved, by changing the settings, you can post the form to [email protected], so I can have a look..
    Thanks
    Srini

  • Paragraph background fill also applies character background fill

    This is what I want and see in iBooks Author:
    This is what I get and see in iBooks on an iPad 1:
    Note the difference in the last line of text and the grey background: "expensive: satellites worth $370M were lost." acts as if there's a character background fill when I only have a parapgraph background fill applied. This seems like a bug either in iBooks Author or iBooks 2. Has anyone run into this? Any suggestions for a fix?

    Armando Fox wrote:
    This is what I want and see in iBooks Author:
    This is what I get and see in iBooks on an iPad 1:
    Note the difference in the last line of text and the grey background: "expensive: satellites worth $370M were lost." acts as if there's a character background fill when I only have a parapgraph background fill applied. This seems like a bug either in iBooks Author or iBooks 2. Has anyone run into this? Any suggestions for a fix?
    You may have inadvertantly selected background character fill. You want a text box object that contains this text and then you want to select background fill for the whole text box.
    TIP
    I noticed that some text boxes can have a different background fills depending on the mode vertical or portrait. So I choose both views to check to see if I am getting what I want. I simply fill the background in both views.
    One has to be careful that only the text box is selected otherwise you will end up filling the background for selected text. In your example turn on invisibles and check to see if a few were included in your fill producing the effect you have displayed.
    Check both views in IA.

  • Background Fills Behind Text Support with IceBrowser

    Hello,
    I was wondering if background fills is support by the supplied oracle help browser?
    I can open the htm file that I create with a different browser such as Mozilla and it works/
    Using the same file within oracle help I do not see the background fill.
    Thanks

    Hi, Darren:
    If the text lines are in a single paragraph that wraps within the frame, you can use a nested style that applies named character styles by line number (new in CS4) so you can have line1 apply a character style that applies an offset green underline thick enough to back up the text, and line2 use a yellow, etc. You can also set the sequence of nested styles to repeat the previous x-number of styles (also new in CS4.)
    HTH
    Regards,
    Peter Gold
    KnowHow ProServices

  • Font color against dark font backgrounds changing to white in Word 2010

    Hello.  I am a long-time Word and VBA user and have been experiencing a problem with Word 2010 wherein font colors against a dark font background color always appear, and print, as if they had been set to white.  By contrast, Word 2007 would retain
    whatever font color was set for each character (whether through the standard user interface or VBA).  Has anyone else run into this problem?  Is there a fix for it?  Thanks.

    Thanks for your response, Eugene.
    It's x86.
    I actually had set up an image of a comparison of Word 2007 vs. Word 2010, but when I've tried to include it here, a message comes up that says "Body text cannot contain images or links until we are able to verify your account."
    I had previously been warned that I needed to provide a phone message to "verify" my account.  I don't like giving out my phone number when it's not relevant to what I'm doing.  I'll explore to see if there are other options where I don't have
    to provide private information in order to be able to post images in my messages in this forum.  (I'm not up to any harm here!)  I do think the image that I set up would be very helpful to share; it shows clearly the difference in how Word 2007 vs.
    Word 2010 treat font/text color against dark font/text backgrounds.

  • Background fill scale to fit scroll motion issue. Please help...

    I am having an issue with the background fill. I am using an image at least 2500px wide. It seems that when I have scrolling checked, the image scales to fit the browser normally when I preview the page. However, if I turn scrolling off, when previewing the page, the background image shrinks from 30-50% and no longer scales to fit. As soon as I go back, check scrolling again, it then scales to fit as normal.  This also happens if I have scrolling checked and then set initial and final motion to 0. It again shrinks the background image and stops scaling to fit. As soon as I put any value in the initial and final motion, it again shrinks the image.
    When doing the above same thing on a master page, using the same image, even with scrolling checked, the image doesn't scale to fit.
    This brings me to a second issue. The custom scrolling on the background isn't working. No matter what I set the values to, the browser always scrolls the back ground image up, even if I change the rate or direction, it stays at 1 and in the up motion.
    How can I fix this??
    Thank you!

    This is due to the fact of image size and scroll setup with fill, Please check this post which includes a similar discussion :
    https://forums.adobe.com/thread/1362457
    Additionally this will help you :
    https://helpx.adobe.com/muse/how-to/muse-size-resolution-graphics.html
    Thanks,
    Sanjit

  • How to !not make a cropped pattern element in the whole background fill

    So with alot of reading and help i did manage to bild a background filled with pattern emelent ,but whhen i resize it ,it is croped.What i mean is
    the pattern element is this and its a simple bitmap with the name of "Box"
    and when i fill the background with this element test the FLA file and drag the corner of the SWF window (i am making it bigger ), it crops the  last pattern element in in every Row and Column.Just like in this picture
    so how do i not crop it ? and make it as the 2nd resized image (the one with the red tick,the one with the "YES").
    the problem is that i re- scale the stage so somethimes its 400-500 and other its 1000 to 400 and that is why i use the
    matrix.scale(1.1, 1.1);
    (those numbers will be a variable that will change as the stage size changes)
    i have this code in the MainClass_Test class (the document class)
            import flash.display.Sprite;
              import flash.display.Bitmap;
              import flash.display.BitmapData;
              public class MainClass_Test extends Sprite {
                        private var bg1:CreateRow_Col = new CreateRow_Col();
                        public function MainClass_Test() {
                                  bg1.x = 0;
                                  addChild(bg1);
                                  trace(numChildren)
    and this in the CreateRow_Col class
            import flash.display.Sprite;
              import flash.events.Event;
              import flash.geom.Matrix;
              public class CreateRow_Col extends Sprite {
                        public function CreateRow_Col() {
                                  addEventListener(Event.ADDED_TO_STAGE, zzz);
                        private function zzz(e:Event):void {
                                  removeEventListener(Event.ADDED_TO_STAGE, zzz);
                                  var  matrix:Matrix = new Matrix()
                                  matrix.scale(1.1, 1.1);
                                  graphics.beginBitmapFill(new Box(), matrix, true, false);
                                  graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
                                  graphics.endFill();
    i did try it with adding the new Box().width and new Box().height but that only expands the area that the background will spread.
    I did something like this with a wlile loop > and adding the pattern element to the stage and moving it until the patternElement.x < stage.stageWidth + patternElement.width,
    http://forums.adobe.com/message/5649061#5649061
    but this creates to many objects on the stage and i dont want that.

    ok i found i way to do what i want but when i scale the image backgroud to fit exactly the screen it doesnt consider the scale of the object I am applying before that .
    What i mean > when i do this  and comment the _mesh.ScaleX and Y
    var ScaleX:Number = 1
    var ScaleY:Number = 3
    /*_mesh.scaleX = stageW / background_W;
                                  _mesh.scaleY = stageH / background_H;*/
    i have 2 rows like it must do ,cause ill have different scaleX and Y
    but when i uncomment the _mesh.ScaleX and Y i dont get the 2 rows fit in the entire scree like i want , I get 5 rows (they are purfectly sized to fit the stage.stageWidth or Height - what i want but not allways five).And even worse when i change the scale to any number like .5 or 51 or 501 it just doesnt care >> i always get 5 rows.
    i have this in the CreateRow_Col class as code
    private var _mesh:Shape = new Shape();
                        private var _box:BitmapData = new Box();
                        public function CreateRow_Col() {
                                  addEventListener(Event.ADDED_TO_STAGE, zzz);
                        private function zzz(e:Event):void {
                                  removeEventListener(Event.ADDED_TO_STAGE, zzz);
                                  var stageW:Number = stage.stageWidth
                                  var stageH:Number = stage.stageHeight
                                  var elementW = _box.width
                                  var elementH = _box.height
                                  var numberElements_W = Math.ceil(stageW / elementW)
                                  var numberElements_H = Math.ceil(stageH / elementH)
                                  var ScaleX:Number = 1
                                  var ScaleY:Number = 51
                                  var background_W = numberElements_W * elementW * ScaleX
                                  var background_H = numberElements_H * elementH * ScaleY
                                  //trace(background_W + " = "+ numberElements_W + " * " + elementW)
                                  var  matrix:Matrix = new Matrix()
                                  matrix.scale(ScaleX,ScaleY);
                                  _mesh.graphics.beginBitmapFill(_box, matrix, true, true);
                                  _mesh.graphics.drawRect(0, 0, background_W, background_H);
                                  _mesh.graphics.endFill();
                                  _mesh.x = _mesh.y = 0;
                                  _mesh.scaleX = stageW / background_W;
                                  _mesh.scaleY = stageH / background_H;
                                  trace(stageH / background_H)
                                  addChild(_mesh);
    how can i fix this

  • How to add background fill to ColumnChart created without MXML?

    I'm trying to create ColumnCharts on-the-fly, without using MXML. To my surprise, I've had good luck with this so far, and have managed to figure most things out by blind guesswork, since I can't find any documentation or sample code anywhere for this.
    For example, I'm trying to turn this:
        <mx:ColumnChart id="overallSpendingChart" dataProvider="{spendingDataList}" showDataTips="true" paddingLeft="10" paddingRight="10" height="30%" width="100%" >
            <mx:horizontalAxis>
                <mx:CategoryAxis dataProvider="{spendingDataList}" categoryField="OrganizationTypeName" title="Organization Type" />
            </mx:horizontalAxis>
            <mx:verticalAxis>
                <mx:LinearAxis title="FY Spending in Millions" labelFunction="spendingInMillions_labelFunc"  />
            </mx:verticalAxis>
            <mx:series>
                <mx:ColumnSeries id="organizationTypeSpending" yField="Amount" xField="OrganizationTypeName" displayName="Organization Type [??]" showDataEffect="slideIn" />
            </mx:series>
        </mx:ColumnChart>
    into this:
            // Test to see if we can fake up a chart without using </mx:ColumnChart> resources.
            private function attemptToCreateColumnChartOutOfThinAir():void
                var testChart:ColumnChart = new ColumnChart();
                testChart.dataProvider = spendingDataList;
                testChart.showDataTips = true;
                testChart.height = 200;
                testChart.width = 300;
                var backgroundFill:FillStyle = new FillStyle();
                backgroundFill.color = new SolidColor(0xFF99FF);
                testChart.backgroundElements.push(backgroundFill);
                // There's more missing here ^ but it's all cosmetic..           
                var testCatAxis:CategoryAxis = new CategoryAxis();
                testCatAxis.dataProvider = spendingDataList;
                testCatAxis.categoryField = 'OrganizationTypeName';
                testCatAxis.title = 'Organization Type';
                testChart.horizontalAxis = testCatAxis;
                var testLinearAxis:LinearAxis = new LinearAxis();
                testLinearAxis.title = 'FY Spending in Jillions';
                testLinearAxis.labelFunction = spendingInMillions_labelFunc;
                testChart.verticalAxis = testLinearAxis;
                var testColumnSeries:ColumnSeries = new ColumnSeries();
                testColumnSeries.id = 'organizationTypeSpending';
                testColumnSeries.yField = 'Amount';
                testColumnSeries.xField = 'OrganizationTypeName';
                testColumnSeries.displayName = 'Organization Type [??]';
                //testColumnSeries.showDataEffect = slideIn;
                testChart.series.push(testColumnSeries);
                // Do we need this addChild?
                addChild(testChart);
                // Remove the visual competition
                removeExistingBitmapsFromScreen();
                // Slap it up? Maybe? Center of Oregon
                var centerOR:LatLng = stateCenters['OR'];
                testingChartAddToGoogleMap(testChart, centerOR);                       
            private function testingChartAddToGoogleMap(theChart:ColumnChart, theLatLong:LatLng):void
                var options:MarkerOptions = new MarkerOptions();
                options.icon = theChart;              
                options.iconAlignment = MarkerOptions.ALIGN_HORIZONTAL_CENTER + MarkerOptions.ALIGN_VERTICAL_CENTER;
                options.iconOffset = new Point(0, 0);
                options.hasShadow = false;
                // Create the marker, add to map
                var theMarker:Marker = new Marker(theLatLong, options);
                map.addOverlay(theMarker);   
    As you can see I'm fumbling through it. The above does seem to work, except I have not been able to blunder through how to set a background fill, both to set column colors and to set background colors for the whole graph.
    For example, how do I the ActionScript equivalent of these <mx:fill> tags:
         <mx:ColumnChart id="myChart" dataProvider="{expenses}" showDataTips="true">
            <mx:horizontalAxis>
               <mx:CategoryAxis
                    dataProvider="{expenses}"
                    categoryField="Month"
               />
            </mx:horizontalAxis>
            <mx:series>
               <mx:ColumnSeries
                    xField="Month"
                    yField="Profit"
                    displayName="Profit"
               >
                   <mx:fill>
                        <mx:SolidColor color="0x336699"/>
                   </mx:fill>
               </mx:ColumnSeries>
               <mx:ColumnSeries
                    xField="Month"
                    yField="Expenses"
                    displayName="Expenses"
               >
                <mx:fill>
                    <mx:SolidColor color="0xFF99FF"/>
                </mx:fill>
               </mx:ColumnSeries>
            </mx:series>
         </mx:ColumnChart>
    (If there is documentation on this type of technique, I'd appreciate a pointer. What I'd really love is source output from the MXML compiler, sigh.)

    John Phillips10 wrote:
    I should know how to do this, but after trying several keys and many different modes, it has me
    stumped.
    Keying is not an option according to the information you are providing.
    The project, for better or worse, was created with a transparent background. In an art installation I > projected this movie onto a screen made of blueprints...
    If you really did create it with a transparent background, using an alpha and the Animation codec, we're off to an easy solution. However, you did not use the Animation file in live playback. You created a QT movie that had a black background, possibly super-black. With little or no light coming through the black areas, it looked transparent. But there's no way to project transparency and the Animation codec cannot be played back in realtime without hardware support.
    I now have a photo of the blueprint screen and want to composite it with the movie so the "new"
    movie documents the installation view - ie where the movie is lighter, the screen shows through
    more. I've tried everything I know (which is obviously not enough!) and would appreciate your
    expertise on this.
    About all you can do is experiment with multiple copies of your layer with different filters and composite modes applied to them till you get something you think you want to use. The problem is that when you use composite modes, you can only get 100% white when you add or combine underlying pixels so the illusion of a projection is a suggestion at best. That is, white photos projected on your white blueprint should be bright but they can't be brighter than the white from either source.
    An additive dissolve filter will help you envision some possibilities but, unfortunately, it can't be keyframed in FCP.
    bogiesan

  • Failing filling path (triangle) The background fills instead. What to do?

    When I want to fill a triangle with 'fill path' it fails. The background fills instead of the triangle. What's the problem? Does anyone know how to fix this? This is what it looks like.

  • Muse Mobile Site Background Fill not working

    Hi there,
    The background fill is not working on my mobile site. I can select another color but nothing displays. There is no image as fill either :/ any ideas?

    Thanks for your response.
    So when i set up the pages i don't need to increase the margins on the inner sides of the facing pages? all of the templates i've downloaded look like they've done this?
    And should i set up the document as an A3 and create the left and right hand side myself? Or stick to A4 facing pages?
    Thanks!

  • OAM files as background fill

    Wouldn't it be nice if you were able to use a OAM file as a background fill.
    That would open a whole range of creative possibilities!

    Update: I found a temporary fix/workaround.  After importing the audio, click on Edit.  Then delete the first tenth of a second or so, then click save.  Doing so now puts the tag (Clip) in front of the audio file.  Now when previewing or viewing a published file, the correct background audio plays.  I opened a case with Adobe support as well as posting on this forum.  When I advised them of my fix/workaround, they gave me a link to report a bug/problem to their engineers.  I had some conversations with the engineers via email, but havent heard from them since June 15 when I advised them of the site where I got the MP3 files and even shared (per their request) one of the MP3 files with them.
    When searching for a possible solution for this problem in the forums, I vaguely remember coming accross this method of solving an audio problem, but it wasnt at all the same problem I was having.  I figured I would just try it and it worked!
    If I hear anything back from the engineers I will post their solution or fix (if any)

Maybe you are looking for

  • Adobe Bridge CS3 windows error

    Hi, When I open Bridge cs3 on its own after a few seconds the window banner comes up. Adobe bridge has encountered a problem and needs to close.We are sorry for any inconvenience. The same happens if I try to open bridge from within Photoshop cs3 I c

  • Delete an email address from Firefox login.

    I posted a question in regards to this account a short while ago. I can't reset my password for an account. I have used another email address to start a new account but I want to delete my other email from that account so I can use it in this account

  • HP Expert Day - January 9-10, 2013: Tough questions? Ask the Experts!

    Thank you for coming to Expert Day – the event has now concluded. **To find out about future HP Expert Day events, check out this page** On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will

  • Ken Burns Effect not working as expected.

    Hi, I have created a slideshow in iPhoto 08 and want to have all of the slides use the ken burns effect except the first one (i want this to be a 20 second title photo). To get this to work, i have disabled the Automatic Ken Burns effect in the setti

  • Is there a sync function in Aperture?

    Hi i am trying out Aperture 3. Is there a feature like Lightroom 2, Sync Folder? I use PS to edit and would like to reflect changes in Aperture 3 instead of reimport each time. Is there such feature?