No "ANGLE" Option for Linear Gradients in Motion 4!

Referring to the help section for Motion 4, there should be an "angle" tool for linear gradients, but there's not! I have a linear gradient that runs top to bottom and I want it to run left to right. Is there any other way to do this without having to rotate my entire shape object (which would require other modifications?)
Thanks,
~Greg

You can do it by the numbers in the Inspector by changing the start and end points, or you can right-click in the Canvas and choose Edit Gradient to adjust it interactively - assuming it's a shape with a gradient applied.

Similar Messages

  • Syntax for linear gradient

    I'm getting:
    WARNING: com.sun.javafx.css.parser.CSSParser linearGradient Using deprecated syntax for linear gradient at <filename & line #>. Refer to the CSS Reference Guide.
    But I'm copying the syntax from the only reference guide I can find (no reference is included in the JDK)
    http://download.oracle.com/javafx/2.0/api/javafx/scene/doc-files/cssref.html

    The docs in the SDK have the correct reference. You can find the ref by following the link from the class doc for Node. Here is the relevant section.
    Linear Gradients <linear-gradient>
    linear-gradient( [ [from <point> to <point>] | [ to <side-or-corner>], ]? [ [ repeat | reflect ], ]? <color-stop>[, <color-stop>]+)
    where <side-or-corner> = [left | right] || [top | bottom]
    Linear gradient creates a gradient going though all the stop colors along the line between the "from" <point> and the "to" <point>. If the points are percentages, then they are relative to the size of the area being filled. Percentage and length sizes can not be mixed in a single gradient function.
    If neither repeat nor reflect are given, then the CycleMethod defaults "NO_CYCLE".
    If neither [from <point> to <point>] nor [ to <side-or-corner> ] are given, then the gradient direction defaults to 'to bottom'.
    Stops are per W3C color-stop syntax and are normalized accordingly.
    This example will create a gradient from top left to bottom right of the filled area with red at the top left corner and black at the bottom right.
    linear-gradient(to bottom right, red, black)
    This is equivalent to:
    linear-gradient(from 0% 0% to 100% 100%, red 0%, black 100%)
    This more complex example will create a 50px high bar at the top with a 3 color gradient with white underneath for the rest of the filled area.
    linear-gradient(from 0px 0px to 0px 50px, gray, darkgray 50%, dimgray 99%, white)
    The following syntax for linear gradient does not conform to the CSS grammar and is deprecated in JavaFX 2.0. The JavaFX 2.0 CSS parser supports the syntax but this support may be removed in later releases.
    linear (<size>, <size>) to (<size>, <size>) stops [ (<number>,<color>) ]+ [ repeat | reflect ]?
    Radial Gradients <radial-gradient>
    radial-gradient([ focus-angle <angle>, ]? [ focus-distance <percentage>, ]? [ center <point>, ]? radius [ <length> | <percentage> ] [ [ repeat | reflect ], ]? <color-stop>[, <color-stop>]+)
    If neither repeat nor reflect are given, then the CycleMethod defaults "NO_CYCLE".
    Stops are per W3C color-stop syntax and are normalized accordingly.
    Following are examples of the use of radial-gradient:
    radial-gradient(radius 100%, red, darkgray, black)
    radial-gradient(focus-angle 45deg, focus-distance 20%, center 25% 25%, radius 50%, reflect, gray, darkgray 75%, dimgray)
    The following syntax for radial gradient does not conform to the CSS grammar and is deprecated in JavaFX 2.0. The JavaFX 2.0 CSS parser supports the syntax but this support may be removed in later releases.
    radial [focus-angle <number> | <number> ] ]? [ focus-distance <size> ]? [ center <size,size> ]? <size> stops [ ( <number>, <color> ) ]+ [ repeat | reflect ]?

  • SVG to CSS Help for Linear Gradient

    Below is the linear gradient i created to skin the TabPane
    SVG code
    <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="6.4492" y1="95.292" x2="1186.2246" y2="95.292">
         <stop offset="0" style=stop-color:#C2B59B;stop-opacity:0.43"/>
         <stop offset="0" style=stop-color:#E2DBCE;stop-opacity:0.66"/>
         <stop offset="0.7939" style=stop-color:#C2B59B;stop-opacity:0.19"/>
         <stop offset="1" style=stop-color:#C2B59B;stop-opacity:0.02"/>
    </linearGradient>
    Css Code i used as
    #tab-pane *.tab-header-background {
        -fx-background-color: linear-gradient(#c2b59b 40%, #e2dbce 60%, #c2b59b 19%, #c2b59b 2%);
    }Now my question is how to specify theses thing in css
    x1="6.4492" y1="95.292" x2="1186.2246" y2="95.292" and offset of each stop ?
    Edited by: Pugazhendhi on Apr 12, 2012 2:59 AM
    Edited by: Pugazhendhi on Apr 12, 2012 2:59 AM

    If you look at http://docs.oracle.com/javafx/2.0/api/javafx/scene/doc-files/cssref.html#typepaint, you will see that you can give a "from <point> to <point>" in the linear-gradient.
    Here is your SVG:
    <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="6.4492" y1="95.292" x2="1186.2246" y2="95.292">
    <stop  offset="0" style="stop-color:#C2B59B;stop-opacity:0.43"/>
    <stop  offset="0" style="stop-color:#E2DBCE;stop-opacity:0.66"/>
    <stop  offset="0.7939" style="stop-color:#C2B59B;stop-opacity:0.19"/>
    <stop  offset="1" style="stop-color:#C2B59B;stop-opacity:0.02"/>
    </linearGradient>The offsets in your SVG linear gradient are percentages, not absolute values. Here, then, would be the equivalent linear-gradient (I rounded .7939 to 80%):
    linear-gradient(from 6.4492 95.292 to 1186.2246 95.292, #C2B59B 0%, #E3DBCE 0%, #C2B59B 80%, #C2B59B 100%)Having two color stops at 0% seems like a mistake.
    I also doubt that you want the absolute x1,y1 and x2,y2 values. You need to ask yourself what direction you want the gradient to go. It looks to me like this is going "to right" (since y1==y2). So, it is more likely that you want:
    linear-gradient(to right, #C2B59B 0%, #E3DBCE 0%, #C2B59B 80%, #C2B59B 100%)The thing I didn't do here is to include the opacity from the svg stops. There are a few things you can do to solve that but the easiest is to translate the stop-opacity into a hex two hex digits and add those to the color. Just multiply the opacity by 255 and convert to hex. For example, .19 * 255 = 0x30 so the third stop would be #C2B59B30. Note that standard CSS doesn't support this extra byte for opacity in a hex color, so you could translate the hex color and opacity to rgba - #C2B59B30 = rgba(194, 181, 155, .19)

  • Script for Linear Gradient Fill

    I need a script to gradient fill - linear top to bottom - rectangles. Can someone help me with this?

    Hi,
    You may need to create the linear elements first if they have not been defined at design time,  there is a sample of doing that here, http://forms.stefcameron.com/2008/03/14/field-background-color-fill/#comment-4423
    Regards
    Bruce

  • Help with "greyed out" option for Publishing a group of Parameters in Motion 5!

    How do you group published parameters in Motion 5, so that you don't have one giant list of published options for Final Cut Pro X?
    My main goal is To publish a compound parameter (a parameter with nested subparameters)
    Looking through Motion Help, it should be as easy as clicking the little disclosure triangle on the right of the inspector, but the word "Publish" is greyed out...

    I know I've looked at rigging, but based off the Motion Help Online Manual, It should be as simple as clicking on the option for publish and have nested subparameters...
    Rigging is excellent, but more steps would be needed to do the same thing i believe...

  • [svn] 4394: Adding last changes and comments on behalf of Kaushal for his radial and linear gradient transform calculations .

    Revision: 4394
    Author: [email protected]
    Date: 2009-01-05 13:13:51 -0800 (Mon, 05 Jan 2009)
    Log Message:
    Adding last changes and comments on behalf of Kaushal for his radial and linear gradient transform calculations.
    QE: Not yet.
    Doc: No
    Checkintests: Pass
    Modified Paths:
    flex/sdk/trunk/modules/fxgutils/src/java/flash/fxg/swf/AbstractFXGGraphics.java
    flex/sdk/trunk/modules/fxgutils/src/java/flash/fxg/swf/TypeHelper.java

    After posting I and lots of research I realized that I need to dive into
    PaperVision 3D as way to get where I need to go.
    However, if anyone has a solution to adding text to this code which rotates with the cube - let me know.
    Thanks

  • How do I apply a linear gradient to an S shape?

    Hi
    I recently created an S shape with the pen tool that is quite large in my photoshop cs4.  I would like to know if there is a way for me to apply a linear gradient so that it follows the path of the S shape perfectly.
    The effect should cause one of the sides of the letter S to actually fade into black (the gradient is a transparent to black gradient colors).
    Is this even possible with my Photoshop cs4?
    Ricky

    Hi,
    Thanks for the response. I have found a way to accomplish exactly what I want.
    I use a stroke, set it to 'inner' style to the bottom most option, play with side and choose gradient
    I played aorund with these settings on here and got it working perfectly.
    Ricky

  • Toolkit for feedback system? Motion; PID; Control/Simulation???

    Hi, I have to develop/program an organ bath system - a feedback system mimicking real sinusoidal breathing oscillations (shown in attached images). I have NI Labview 8.5, NI-Motion 7.6, a linear motor (M-235 DC-Mike actuator), an MID-7654 Servo Power Motor Drive and a pressure transducer. I believe I will need to control the PID controller and am aware of the PID Control Toolkit as well as the Control Design and Simulation Toolkit for NI Labview. However, is it possible to control the system using the NI-Motion software I have at the moment? If not, do I have to purchase both the PID and Control/Simulation Toolkit or just one? Thanks in advance...
    Attachments:
    feedback design1.JPG ‏25 KB
    feedback system1.JPG ‏42 KB

    Dear Garry,
    Do you have a motion controller to interface the MID-7654 to your
    computer and LabVIEW? This would be the PCI-734x or PCI-735x. If you
    do, I believe that you could implement your application with LabVIEW
    and NI-Motion. You could do so by using the analog feedback feature for
    the control loops for each axis. Then, you could specify the optimal
    sinusoidal moves/pressure patterns that mimic real breathing patterns.
    The analog feedback from your pressure transducer will be used during
    the move(s) to maintain the pressure that you want.
    Please see Chapter 13 here for more details:
    NI-Motion User Manual
    http://www.ni.com/pdf/manuals/371242c.pdf
    Here is also a good discussion forum post on Analog feedback:
    Can i use NI-7358 to implement a hybrid position force/torque control system?
    http://forums.ni.com/ni/board/message?board.id=240&thread.id=2976&view=by_date_ascending&page=1
    I believe that the above option would work for you, and you would not
    have to use the Control Design and Simulation Module or the PID
    Toolkit. Please let me know if you have any additional questions. I
    haven't actually set up a system with analog feedback from a pressure
    transducer before, but I believe that the above would be a very viable
    option.
    Best Regards,
    ~Nate

  • -webkit-linear-gradient not working with Adobe Air 3.0

    Hi -
    I recently downloaded Adobe Air 3.0 after reading that gradients are now supported (http://www.adobe.com/devnet/air/ajax/articles/air_and_webkit.html), but I have not been able to successfully implement them. For example, I have the following CSS class defined:
    .gradient_test {
         background-image: -webkit-linear-gradient(#68AB34, #3D721B);
         padding: 5px;
         color: #FFF;
    This should (and does in Chrome, Safari, etc) create a linear gradient going from light to dark green. But in Air it just appears as if no background has been applied to the selector. Am I missing some unique way to be able to apply gradients in Adobe Air 3.0?
    Thanks,
    Zach

    I don't know why this hasn't been addressed. I'm seeing the exact same problem. I've tried every permutation, but haven't been able to generate a gradient using any existing standard for webkit or otherwise (even though it's allegedly supported).
    -Matthew
    EDIT: I discovered that when the app is compiled, the gradients work fine. This one is driving my crazy, because I want to be able to test them. I get a mix of CSS support, depending on how the app is run.
    From Dreamweaver CS3 "Preview" - My CSS doesn't show gradients and shows embedded web fonts.
    From ADL - My CSS fails almost entirely, but some if it gets loaded.
    From the compiled AIR file: fortunately, everything seems to display correctly, but it's really a bad scenario for development / testing. Not sure what to do.

  • No options for advanced tools in iMovie 10.0.3

    When i go into preferences to turn on the advanced tools in imovie, i only get a slow motion, and a option for icloud loading. Any
    idea whats wrong? i have looked online for answers, but have found nothing. Does this version not have the the option for Green
    screen, side by side, etc.?

    The "advanced setting" option no longer exists in iMovie 10.0.0.  Everything is already either in a tab or layed out in front of you.
    In order to access most of your editing functions such as green screen and side by side, you may find them under the option located close to the top right hand corner of iMovie called "Adjust" which will put down a drop down menu of edits that my be done.
    For further information be sure to check out my personally video tutorial on this: https://www.youtube.com/watch?v=SkLpsYkDvIU

  • Additional options for Photoshop Brushes pop-up window

    I created Brushes to add borders or edges arround images and for every brush 4 different angles: 0, 90, 180, 270 because it is much easier to change from right click pop-up window or using , and . keyboard shortcuts then opening Brush panel or to use Options Bar every single time. What I suggest is to add at least Flip X and Flip Y in right click pop-up window from Brush Tip Shape tab. It will be great to have and angle control and clicable icon (or keyboard shortcut) to set options for current Brush as for previous. Here I mean options like Wet Edges, Color Dynamics and so on. I like randomness of colors whith Color Dynamics and Air brush mode but colors changing too fast, can you add some control over it for example to press some key and slow down display of color randomness. I know what to do to save every brush with preferred options but I plan to share this brushes and those preferences may not be very exciting for other users.

    Often, the feedback/feature request sub-forms are disbanded and shut down, when a new version is released. Not sure if that happened here, but if the last post is close to the CS 5.5 releases, then it might explain it. In a case like this, should the sub-form be closed, it would be nice to get a sticky telling everyone that it is now closed.
    Just thinking,
    Hunt

  • Which Dual AMD FirePro option for Photoshop CC?

    I was wondering which of the Dual AMD FirePro option for the new Mac Pro is best for Photoshop CC. I mainly do retouching (so no video editing nor 3D rendering in Photoshop). Basically Adobe is adding GPU-accelerated features with every release. The most important ones are the following: Liquify, Warp and Puppet Warp, Field Blur, Iris Blur, Tilt-Shift and Adaptive Wide Angle Filter
    Regarding the Dual AMD FirePro options for the new Mac Pro does it make sense to upgrade the standard D300 to the D500 (or even the D700)? I guess for 3D animations, Premiere Pro or Mari (3D paint tool) it would definitely make sense but for PS CC I can't imagine a real performance gain as the D300 is already very powerful with a dual GPU and 2GB of GDDR5 VRAM each.
    Any thoughts on to what extent Photoshop would benefit from upgrading the D300 to the D500?

    Check out MacRumors where they are speculating madly :-)
    Already been seen that more than 2GB helps and why folks are using 2.5 to 4GB cards already.
    All depends on getting good compiles generating OpenCL and learning to leverage it.
    I think MPG site would be perfect from  both computer insight and from a heavy CS/CC user like Lloyd.
    The 6-core gives the best in MHz and turbo boost for you.
    I thought macperformanceguide said it all. You read it??
    GPUs: 
    Based on past testing, I felt there was no value in paying for the D700 GPUs with 6GB memory each. If the dual D500 GPUs don’t provide a massive speedup over the prior Mac Pro 5870 video card, then something is seriously wrong. Or they are just not used, which is usually the case. And they are OpenCL, which is not necessarily supported by much software.
    But the 6-core includes the D500 GPUs as standard (over the 4 core), and so there they are. One way to save money is to start with the 4-core CPU, upgrade it to the 6-core, and this then saves about $400 on the GPUs by sticking to the D300 models.
    But at 4:00 AM I forgot about this, and besides, the fractional cost when all other costs are considered drops well below 10% of the system price. And there is no way to know for sure if the GPUs have any benefit short of testing identical configs on specific tasks. None of the GPU options are slow.

  • Options for hard disk upgrade on my MBP 15" (late 2007 - Santa Rosa)

    I suspect this is a common question here in the discussions forum, judging by the similar questions posed by other members.
    I am however, half-way into my research on hard disk options for that matter and would like to ask some specific questions in order to ensure that my upgrade is not problematic (I have been quite happy with my MBP so far :-))
    The model I have is the A1226 (Intel Core Duo, 2.2Ghz, 4GBs. This currently has the 111.79GB Fujitsu MHW2120BH hard disk, which is almost full now; hence, the need for an upgrade.
    I quite fancy the WD Scorpio Blacks, particularly the 500GB ones, even though the 320GB ones will also do to a lesser extent. My questions on this brand/type are:
    (1) Will it have an impact on the heat generated inside the Macbook (vs. my current situation)?
    (2) Will it have an impact in the battery consumption (vs. my current situation)?
    (3) Will there be an issue with the SATA speed? My MBP supports 1.5GB/s while this drive operates at 3GB/s.
    (4) If I opt for the respective model with the free fall sensor, will this function work with my MB? (NB: Not sure if relevant, but the System Profiler reports: Suddem Motion Sensor: State = Enabled)
    My aim is to clean up my current disc, upgrade it to the new bigger one and then re-install Mac OS X Leopard, upgrade to Snow Leopard and then re-install all apps. All files are backed up anyway with TimeMachine, so no issue there. If you can think of any potential issue with the upgrade and what I intend to do further after, please share it.
    The machine is out of warranty - but that doesn't mean that I want to cause damage here...
    Thanks.

    Nikos Lazaridis wrote:
    (5) What other safe options are there for upgrade drives with a 500GB capacity?
    For loading/unloading heads, I'm not sure one model/brand has been found to be better than another.
    Can I avoid this problem if I get the Scorpio Black 500GB w/o the free fall sensor? (Model: WD5000BEKT on http://www.wdc.com/en/products/products.asp?driveid=854).
    The SMS conflict, yes.
    In such a case, will Apple's Sudden Motion Sensor work?
    Yes.
    Or to paraphrase, can SMS park the heads of a WD hard disk w/o the free fall sensor?
    Yes, that is what it was developed for. Since that time, more and more HD manufacturers have incorporated it into the HD itself. There are two schools of thought on this: 1. The "SMS" built in to a HD is more properly "mated" to the HD mechanism itself, so could save a nanosecond or two engaging. 2. In the nanoseconds it takes to engage, a nanosecond here or there is not going to matter. Personally, I believe the latter. There is no need for an "SMS" enabled HD in an SMS enabled Mac. I'm sure some others believe differently.
    (NB: Interesting that the issues with SMS and the WD Scorpio have been documented in Wikipedia: http://en.wikipedia.org/wiki/SuddenMotionSensor).
    Ah, good old wiki. I hadn't seen that before. Thanks for sharing.
    No mention there of whether it is applicable to the drives with the free fall sensor or the ones w/o it (or even both).
    It actually does state it is in reference to the "aftermarket hard drives already equipped with anti-shock features." That writeup is dated however, as I believe there are more issues reported with Seagate these days.
    Message was edited by: tjk

  • Trouble with Linear Gradients

    I am trying to use a horizontal linear gradient and when I
    preview my image in a browser, there are vertical bars or "slices"
    shown instead of a smooth gradient. Has anyone seen this or does
    anyone know how to remedy it?
    rory

    neillbaker wrote:
    > Thanks for the link nice looking site way,but to be fair
    i had nose and didn't
    > see anything helpful reguards getting rid of those lines
    on a aimating gif with
    > a gradient back ground ,looks fine in fireworks but as
    soon as i browse it bang
    > them bloody lines,
    > i have tryed blur more blur dittering all sorts, please
    there must be a way
    > many thanks
    The problem is with the GIF format. It isn't capable of
    displaying
    smooth gradients. Have you tried exporting the animation in
    SWF format?
    Linda Rathgeber [PVII] *Adobe Community Expert-Fireworks*
    http://www.projectseven.com
    Fireworks Newsgroup:
    news://forums.projectseven.com/fireworks/
    CSS Newsgroup: news://forums.projectseven.com/css/
    http://www.adobe.com/communities/experts/

  • Best wide-angle lens for Canyon shots?

    Hi Experts!
    I'm a novice in photography and am going on a giant trip through Arizona/Utah this summer. I'll be visiting all the major Canyon National Parks (e.g. Grand, Zion, Bryce, Antelope, Arches, and more!) and would like a wide-angle lens for my trip.
    I have the Canon Rebel SL1. The only lenses I have currently are:
    18-55mm EF-S IS STM 
    55-250mm EF-S IS STM
    18-135mm EF-S IS STM
    I've never had a lens that DIDN'T zoom, but there have been many occasions I wanted a wider lens than 18mm. I have absolutely no idea where to start when it comes to looking for a wide-angle lens though.. I'd also be open to suggestions for a smaller range zoom if those are good too..?
    Fast auto-focus is important for me since I'm usually on the go-go-go during my trips. 
    Any recommendations would be appreciated. Explanations of why would also helpful. Thanks so much!
    Solved!
    Go to Solution.

    The best (and only actually) currently manufactured ultra-wide for EF-S cameras is the EF-S 10-22.  Canon just announced a 10-18 STM that will be released soon, but that's probably still a month off.  I still think the 10-22 is a better lens (for my needs), but the 10-18 comes in at a very good price point ($300) and adds image stabilization.  But you'd have to wait for it.
    Edit: I should say, the 10-22 is currently the only Canon manufactured ultrawide for EF-S.  Sigma, Tokina, and Tamron also make options for slightly cheaper.

Maybe you are looking for

  • Memory speed on K8T Master2

    I've always seen my current memclock in BIOS as 166MHz as it should be, since I use 166MHz/DDR333 memory. These sticks are placed in the two slots closest to CPU0, slot 1 and 2 as I figured that should support dual channel. But some days ago I came a

  • Problem with mailing notepad attachment

    Hi experts, My requirement is to send mail with notepad attachment. Im getting the attachment in mail. But half of the data is converted to junk values and half of the data is coming properly. I tried debugging and found that all the contents are in

  • Add js scripts to the database (XDB)

    Hi I have 2 js, which I need to access from HTML generated from PL/SQL. How do I load and register those 2 js in a separate directory on the server? And do I need to use another DAD to access them from the generated HTML code? (I have a DAD for the a

  • Why has my CS2 Creative Suite suddenly not working?

    I have been using my Adobe Creative Suite CS2 on this computer for a couple of years now, but I recently got a message stating a serious error had occurred and I would need to reinstall. I have tried to reinstall twice, but still get the same message

  • Boolean array to number

    I'm not sure if this has ever been brought up before, but if so, here it is again.  Lets say I have a Boolean Array shown with 8 elements arranged horizontally.  When I read it, I usually read left to right, meaning the MSB is on the left and the LSB