How to rotate/spin basic 3d filter

Hi everybody,
In Motion 2, I have put a layer in 3D perspective by using the basic 3D filter. Now I want to rotate/spin the layer in 3D. Is this possible? I tried placing keyframes and clicking/dragging the filter, but that didn't work. Any help is appreciated!
greets
Menno

hi,
you can animate the 3d filter to make it rotate in a faux 3d way. But you can make the whole thing spin in 3d space. For that you will have to get Motion 3
regards
adam

Similar Messages

  • How do I set up a filter to stop relayed mail?

    How do I set up a filter to stop relayed mail?
    Unsolicited Bulk E-mail (UBE) is electronic mail sent to large numbers
    of recipients without their knowledge or consent, usually advertising commercial
    products or services. It is the electronic equivalent of paper "junk
    mail", and is commonly referred to as Spam.
    <P>UBE is usually just a nuisance, but the volume of UBE received at a
    certain site can at times become so onerous that business-critical functions
    are affected. This is especially true when UBE is used maliciously
    to produce a denial of service attack, where a mail server is inundated
    with UBE and crashes because of the load. Another common UBE problem
    is when a mail server is used as a relay for UBE, so that a particular
    server spends all its time routing e-mail that isn't destined for its
    users. Some ISPs have reported that their mail servers have been
    hard coded into certain spam programs, so that they are constantly being
    used as a relay. Not only does this slow down their mail service
    locally, but sometimes other ISP's will identify the afflicted ISP as a
    source of spam and begin to block messages, legitimate and spam alike,
    coming from that ISP. ISP's often name UBE as their number one problem,
    preventing them from providing fast, reliable service.
    <P>For a full definition of UBE see http://www.imc.org/uce-def.html
    (Unsolicited Bulk Email: Definitions and Problems).
    <P>Messaging Server 3.5 Hosting Edition supports powerful filtering capabilities
    on messages as they are received by the server. Various criteria
    can be applied to incoming messages, including testing on number of recipients,
    sender domain or IP address, messages being relayed, and more. Messages
    can then be bounced, dropped, or reviewed by an administrator before being
    delivered. Providers can filter out unwanted mail at the source or block
    a third party from using their messaging server for relaying email.
    <P><B>UBE Filters Functionality Overview</B>
    <P>The UBE filter is a plugin for Netscape Messaging Server 3.5. It works
    by examining all incoming mail before it is routed throughout the system
    (to users mailboxes or to other email servers). The UBE filter uses a set
    of rules (also known as filters) to decide what to do with each piece of
    mail. The filters are used to trap specified types of mail.
    Mail that is trapped can be rejected, forwarded to a specific mailbox (e.g.,
    the postmaster), deleted, or altered in some way. Mail that "passes"
    all the filters continues on its normal course.
    <P>Filters can be set up two ways, either using the straight forward Graphical
    User Interface (GUI) or by setting up the filters directly in the filter.cfg
    file. Generally, one would use the GUI interface for simple, one
    line filters. To set up more complicated, multi-part filters, editing
    the <I>filter.cfg</I> file directly would be faster. Both methods
    are accessed via the Messaging Server Admin tool, under Plug-ins.
    The following discussion gives some high level examples of how to set up
    simple filters using the GUI and via the <I>filter.cfg</I> file.
    For detailed information on how to set up and configure the UBE Filter
    plug-in, see chapter 5 of the online help, or http://home.netscape.com/eng/Messaging/guide35/ch5.htm#Controlling
    unsolicited bulk email (UBE).
    <P><B>Setting Up UBE Filters with the GUI</B>
    <P>The following screen shot shows a simple UBE filter being set up using
    the UBE GUI. What is being set up is a filter to check all incoming
    messages to see if they come from a domain that has been a regular source
    of UBE. In this case, the name of the offending domain is "spammer.com".
    So, each message that comes in has its "From" field checked to see if
    it is from "spammer.com". If it is, the action is REJECT, meaning
    the message is bounced back to the sender, with the appended message "I
    don't accept mail from spammer.com".
    <P>
    <BR>
    <P>Any field in the message can be examined, with some of the most popular
    including the Subject, To, and Cc fields. Any regular expression
    can be placed into the Value field, thus allowing the filter to check for
    various conditions, including containment of a particular phrase (e.g.
    Subject includes "make money"), or number of recipients (e.g., if greater
    than 100, REJECT). For more information on how to write regular expressions,
    see http://home.netscape.com/eng/Messaging/guide35/ch5.htm#Controlling
    unsolicited bulk email (UBE)
    <P>There are a number of actions that can be taken on a trapped message.
    The most common are forwarding to a "watchdog" account such as the postmaster,
    rejection, and deletion. But, in addition, programs such as virus
    checking can be run on a message to trap infected messages.
    <P><B>Setting Up UBE Filters by editing the <I>filter.cfg</I> file</B>
    <P>In the above example, the filter that was set up was converted to a
    short filter script that looked as follows:
    <P>Channel-From ".*@spammer.com" REJECT
    "I don't accept mail from spammer.com"
    <P>This can also be directly entered into the <I>filter.cfg</I> file by
    choosing the option "Edit Config File" from the UBE Page. This becomes
    interesting for more complicated filters that require more than one filter
    line. The following example shows a set of filters that were set
    up to check for various conditions. For example, the fifth
    and sixth line down is a filter that checks messages for viruses.
    <P>
    <BR>
    <P><B>Using the UBE Filter for Anti-Relay</B>
    <BR>
    <P>One of the most requested needs of the new UBE filters supported in
    Messaging Server 3.5 is to provide "anti-relay", i.e., to stop UBE which
    is from an outside domain and destined for another outside domain.
    In these cases, the mail is usually UBE and is relaying to hide the source
    of the original spammer.
    <P>There are two possible scenarios for anti-relay. One is where
    there is a separate machine outside the firewall that checks for e-mail
    for its domain. The other scenario is when there is only one machine
    handling both internal and external traffic.
    <P><I>Scenario One: Separate machines used for internal and external
    mail</I>
    <P>Outside of the firewall are mail servers that handle all incoming mail
    from the internet. Internal users connect to mail servers inside
    of the fire wall. The scenario looks like this:
    <BR>
    <P>What we want to allow is users 1 and 2 (U1 and U2) to send mail anywhere
    but X1 and X2 should only be allowed to send mail to our servers.
    <P>Solution:
    <P>On the External Mail Server create a filter script that checks the Channel-to
    header for domains that are internal to us. Allow these through and
    reject all other mail. E.g., the filters would look as follows:
    <BR>
    <UL># if the mail is bound for domain1 or domain2 then exit the script
    (and allow the mail to continue)
    <BR>Channel-To "domain1.com" EXIT
    <BR>Channel-To "domain2.com" EXIT
    <BR># otherwise reject it outright ($ANY means any header and .* means
    it has any text)
    <BR>$ANY ".*"
    REJECT "This machine only accepts mail bound for domain1.com or domain2.com"</UL>
    We don't need to do anything on the internal server since only our users
    can get to it (because of the firewall) and we want to allow them to send
    and receive any and all mail.
    <BR>
    <P><I>Scenario 2: Single machine used for internal and external mail</I>
    <P>In this scenario the same machine is used for both internal and external
    connections. The problem we face here is that we need to allow the
    local users to send mail outside our domains but not allow external users
    to do the same. Note: This set up is not generally recommended, since it
    makes the Messaging Server open to external attacks.
    <BR>
    <P>Here, we want to allow U1, U2 and U3 to send anywhere and X1 and X2
    to send to domain1 or domain2 only.
    <P>Solution:
    <P>The solution in this case is to put the same script as scenario 1 on
    the server but pre-pend it with lines that check for a connection from
    the internal domains. If the connection is from our users it must
    be from certain IP addresses, say 128.128.128.* or 128.128.129.*, so we
    look for that. If it's not from one of these two IP addresses, then
    it must be from outside and we apply the same logic as in scenario 1.
    <BR>
    <UL>#if the connection is from our internal domains then exit the script
    (and allow the mail to continue)
    <BR>Host-From "128\.128\.128\." EXIT
    <BR>Host-From "128\.128\.129\." EXIT
    <BR># if the mail is bound for domain1 or domain2 then exit the script
    (and allow the mail to continue)
    <BR>Channel-To "domain1.com" EXIT
    <BR>Channel-To "domain2.com" EXIT
    <BR># otherwise reject it outright ($ANY means any header and .* means
    has any text)
    <BR>$ANY ".*" REJECT "This machine only accepts mail bound for domain1.com
    or domain2.com"</UL>

    I agree anti-relay can be using UBE feature. However, there is serious problem in reject the spam mail. My nms is using UBE feature to stop spam mail. According to the work flow of the UBE, the mail is received by nms completely and UBE is going to invesgate the mail address. Although UBE can stop the spam mail, the spam mail have a trouble in returning the mail to the sender. The reason is the sender address is usually not existed in the world. That will cause a lot of mail waiting in the mail queue.
    In my experience, do not use UBE for anti-relay.

  • Verizon Blackberry Internet Service Client (BIS)- How to create an e-mail Filter

    Hello. Thank you in advance for replying to my question. I am trying to create an e-mail filter so that a contact's e-mail messages do not get delivered to my BB and instead just go straight to my regular e-mail account. I understand that you can do this function from the BIS, however when I tried to create an account I received a message that said "please use your device to access the BIS." I did just as the message told me but I did not get the same menu options from my BB as I would have gotten from doing it from the internet. The page only showed a list of my e-mails and an "edit" and "delete" choice for each one. There was no "Filter" button for me to click. I remember a while ago I able to access this page and was able to remove the BB signature (i.e.. "This message is being sent from a BB"), so I know that it was possible to access this page. I do not know why I am not able to accesses it now.               
    If anyone out there has Verizon and knows how to access the BIS, please let me know how. Or if you know how to create an e-mail filter function, please let me know.
    Thank you,
    Fred
    Solved!
    Go to Solution.

    Hi there!
    To log into your BIS account from a PC/browser (not the BB browser), go to this URL:
    https://bis.na.blackberry.com/html?brand=vzw
    Enter your BIS credentials and you will then be in your BIS account screen. From there, use this KB to create the filter you desire:
    KB04558 Add a filter to a BlackBerry Internet Service account
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How to rotate a text in the adobe reader for mobile ios ?

    how to rotate a text in the adobe reader for mobile ios ?

    There's no rotate command to rotate the document. Instead, rotate the iPad. If it doesn't rotate, turn off the Rotation Lock switch on the side of your iPad.

  • How can I create a search filter on my muse project?

    How can I create a search filter on my muse project like the 'sort by' function of this website? http://trufcreative.com/work
    By that I mean be able to narrow down the content displayed on a single page (preferably with an animation) without having the switch pages or reload the browser.
    I'm assuming this isn't something Muse can do natively, but if anyone knows the code, and how to make it work with Muse, that would be awesome.
    Cheers!

    yes i have same problem. i couldnt create one. please help me

  • Does anyone know if/how to rotate a video clip?  I shot it so that it is sideways on my computer screen and I cant figure out how to rotate it.

    Does anyone know if/how to rotate a video clip in iphoto?  I shot it so that it plays sideways on my computer and I cannot figure out how to rotate it.  Thanks.

    You can't do that in iPhoto. You'll need a video editor like iMovie for the job.
    Regards
    TD

  • How to rotate a art board in a illustrator using adobe extended javascript

    How to rotate a art board in a illustrator using adobe extended javascript
    how to create mirror image of each textframe content of artboard

    1. there's no "Rotate" function, you have to rotate all your objects and then "resize" your artboard to simulate rotation.
    2. there's no "Reflect" function either, to make "mirror" images, use the ScaleMatrix function, see this post
    Reflect whole objects

  • How to install plugin and exta filter in photoshop cs ? and any special filter for special effects ?

    how to install plugin and exta filter in photoshop cs ? and any special filter for special effects ?
    kindly recommend me any best one and tel me step by step how i will add more plugins n filters

    A Plug_in normally come with an installer or install instructions. Check the documentation for the plug-in you trying to install.  It sounds like you don't know what plug-ins you want to install.  In that case you don't need to install any.  At some point you may read about a plug-in and what it can do and feel you have a need for it.  Then you will have a reason to install a plug-in that is not installed by default.  There may also be a cost involved most worthwhile plug-ins are not free.
    Adobe Optional Plug_ins downloads are Plugins Adobe want to remove from Photoshop  and no longer install by default. Also at some point in time these will no longer install into the current Photoshop for Adobe will remove feature or interfaces the use. For example the CS5 optional plugins will install in Windows CS6 perpetual version 13.0.1.3 but not in Subscription version 13.1.2 or perpetual Mac version 13.0.6 fot its 64bit only and the Mac CS5 optional plug-in for Picture package is only a 32bit plug-in.
    You will need to keep and maintain old versions of Photoshop if Adobe remove features you use in new versions of Photoshop.

  • How to rotate photos in albums?

    how to rotate photos in albums??

    yes, i can downloaded the photo(s) and use preview or iphoto ot some other program to rotate each one, but it seems so awkward, inelegant and SLOW, just to take a quick peek at the five separate photos that someone sends.
    is there really not an app or some similar thing to help?  i recall downloaded an app for explorer on windows, to take care of the same problem...

  • How to rotate photos in photostream so they don't show sideways on apple tv

    how to rotate photos in photostream so they don't show sideways on apple tv? i am viewing my photos on my tv and many of them are sideways. how do i fix this?

    ihint
    Welcome to the Apple Discussions.
    You'll need an application that edits the pics to do this: Acorn, Seashore, Photoshop Elements, Graphic Coverter are some, but there are many others - search on MacUpdate
    Of course, iPhoto will do this too.
    Regards
    TD

  • HT201401 how to rotate a video after recording on my iphone

    how to rotate a video after recording on my iphone?

    Import the video with your computer as with any other digital camera and you can use a video viewing/editing app on your computer to rotate the video.
    For what purpose?

  • How to rotate a Video in WindowsPhone 8.1 Silverlight

    Hi,
    Let me explain my problem.
    I want to record video without shutter sound, so i choice CaptureSource  instead of
    MediaCapture.
    With MediaCapture i can set SetPreviewRotation(VideoRotation) to
    change to rotate of video, the problem is with CaptureSource,
    i can't do that.
    So i looking for some way to rotate a video.
    With library, maybe ffmpeg is the right way, but i can't use it with WP.
    Anyone can tell me how to rotate a video, please ?

    Since you didn't share any code, I hope this works for you. They key here is to rotate the VideoBrush.
    //check if webcam is detected
    if (captureSource.VideoCaptureDevice != null)
    captureSource.Start();
    //RotateTransform
    RotateTransform aRotateTransform = new RotateTransform();
    aRotateTransform.CenterX = 0.5;
    aRotateTransform.CenterY = 0.5;
    aRotateTransform.Angle = 90; //set this value to what you need
    //create a videobrush
    VideoBrush vBrush = new VideoBrush();
    //set the rotate transform to VideoBrush relativetransform
    vBrush.RelativeTransform = aRotateTransform;
    //set it to us the capture source
    vBrush.SetSource(captureSource);
    //fill the rectangle with the video brush contents
    vRect.Fill = vBrush;
    Hope it works.
    Abdulwahab Suleiman

  • How to rotate pencil mark in Acrobat X?

    How to rotate pencil mark in Acrobat X?
    When I am coping pencil mark between pdfs it auto-rotates into horizontal position.
    Thanks in advance.
    Greg

    Hey,
    Can you please share the snapshots of both PDF pages with pencil marks before and after rotation.
    Regards,
    Anubha

  • How to rotate a whole table

    Hi,
    In a page layout document, I have a table that was created to be read 90°.
    Now, I need to bring the table in a normal orientation.
    I know how to rotate de text inside the cell but I need to rotate the whole table.
    So the header that is actualy the left column become the top row.
    I can't figure out out to rotate the table.
    I copied and pasted the table outside the page to rotate it. But, when pasted back in the page layout, it still turn 90°.
    Does anyone can help me?
    Thanks

    The only way to rotate an entire table is to rotate the text frame that
    the table is in.
    So just select the text frame that the table is in, and rotate 90 deg.
    You will need to readjust the textframe so that it fits the page margins
    again.
    Ariel

  • How to Test Mail's Trainable Filter?

    In the Apple Support Discussions topic No Junk mailbox in Training mode? a question arose regarding how to test if the trainable filter (the filter that evaluates the "Message is Junk Mail" condition) is evaluated independently of the other conditional tests of the Junk Filter rule -- IOW, if some other test condition in the Junk Filter rule, like sender is not in the address book, evaluates to false, does the "Message is Junk Mail" test which follows it in the rule's list of conditions ever get evaluated?
    A proposed test for this involved resending to yourself a message that Mail had previously marked as junk using the "Message > Send Again" function of Mail. It has been pointed out to me that this probably isn't a valid test because "Message > Send Again" doesn't send the original message in unaltered form (there are substantial changes in the header info regarding sender, path, etc.) & thus the filter may not consider the resent message as junk, even if it were to evaluate it.
    So, for testing purposes, does anybody have a suggestion about how to resend (or fake resending) a received message to myself without altering its header info?

    What matters is whether the Message is Junk
    Mail condition would still evaluate to true
    regardless.
    That depends on what you are trying to determine & if the test produces decisive results.
    For instance, consider tests with the standard Junk Filter automatic settings & no other rule involving "Message is Junk Mail" in the list. A test is performed in an attempt to determine if the filter's conditional tests are performed in the indicated order only until one evaluates to false.
    "Send Again" should not cause the "Message is Junk Mail" test to be evaluated at all, since in this case the sender is oneself & the Junk Filter should exit as soon as the 'sender not in Address Book' test is evaluated.
    Yet, when I try this with a message (correctly) marked as junk when originally received, the resent version is still marked as junk, & this happens not just on my on Mac but on the few others I have checked as well. I have tested with only a limited number of junk messages because on the other Macs the owners do not keep them for long & on my own I do not get that many (AOL is my primary account & has excellent spam filtering), so I would love to know if readers of this topic see similar results.
    BTW, I should mention here what might be a potential hazard of using "Redirect" for testing with "real" spam: As I hope everybody knows by now, it is a bad idea to enable automatic loading of remote html images because doing so can alert spammers one's email address is valid. In one case, when I tried the "Redirect" method on my own Mac, AOL refused to accept the redirected message, possibly because of AOL's spam filters. At that point, Mail displayed the message, asking if I wanted to try sending it from another account, edit it, or what. Even though I have the option disabled, Mail loaded the original's remote html images along with its other content. I don't know if that is a design feature of Mail, a problem with just my Mac, particular to AOL, or what, but I want readers to be aware of it, just in case.
    Anyway, for this reason I have since confined myself to testing with "Send Again," which seems safe in all cases, & mostly to testing only on my on Mac, just in case it is not.
    Back to the "so what" aspects of this topic: It may be that the "Message is Junk Mail" test is sometimes treated differently from the other conditional tests in the Junk Filter in that it may be evaluated first or even if other tests before it evaluate to false. This makes some sense as a design feature in that even if the Junk Filter's automatic mode action isn't performed, it gives users more training opportunities. It may be a bug. It may just be something particular to my Mac. It may be something else, perhaps having to do with trusting junk headers, or something more subtle as yet unconsidered.
    In any event, the point is holding all variables save one constant in any single "black box" test of a multi-variable system is a necessity for definitive results because variables may be interdependent. Because of this, the ability to resend to oneself the same message in unaltered form would be useful for a variety of tests, so I would still like to know if anyone has any ideas about how to do this.
    iMac G5/2.0 GHz 17" ALS (Rev B)   Mac OS X (10.4.7)   512 MB RAM, Kensington Trackball

Maybe you are looking for