Is it possible to keep a movieclips filter/tint changes after breaking apart?

I already know the answer is no, but I think that could be something the developers can work on for a future version. I'm currently working on combining a bunch of movieclips with variating color schemes that I'd like to condense into a unified pallete. Breaking apart a movieclip reverts the graphics to the original colors but it would be super-helpful if flash repasted the current color settings onto the graphics once its broken apart. Maybe implementing a few of illustrators color palette tools would be great too. If this isn't the proper place, then I apologize but I wanted to pass the info along as an artist who is currently using flash as his primary art development tool right now.

I'm here, Ned. And Yes, the wishlist is the best place to post any enhancement request for further review.
This is a wonderful request and will need careful planning due to several factors. The first issue I see is filter being specific to movieclip only so it can not be applied to a graphic symbol. The second is that if we are to reapply the filter and other effects to the symbol after break apart, what happen if the inner symbol already have this effect at a different value. Lots of things to consider and think about in the design as well as engineering of this request.
Quynh
Flash Pro, QE

Similar Messages

  • I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image,

    I am using a Photoshop cs2, and I wonder if it is possible to keep the settings of the guidelines when closing an image, with the actual document ? It would be nice to have the guidelines locked down, I find it than when opening the same or another image, the guidelines are not locked, it is annoying to have to lock them down again. and it would actually be nice, to ba able to give specific directions when placing the guidelines. Thanks

    Then why are the guides unlocked when I reopen a document that I saved with the guides locked ?
    Thanks.

  • Is it possible to keep an email account on the iPhone but stop if from checking for new mail?

    I have an email account that has been deleted from the provider (Gmail), but I want to keep the old mails on my phone, while stopping it from checking for new mail.  Is this possible? 
    If I disable the account to stop if from checking for new mail (and producing a bunch of annoying pop-ups every time the mail app is opened), the account becomes invisible and the old mails disappear.  I want to keep them visible to I can read and refer to them, but want to stop the phone from trying to download new ones or check the account.
    Any help appreciated. 

    Thanks for the thought.  In this case, that doesn't really help much, as it requires a bunch of button pushing just to check emails.  Plus, if I'm not mistaken, in addition to switching modes every time I check email, it also prevents the other accounts from downloading the most recent mails as well.  Since it's possible to keep an account on a Mac computer, but take it offline, it's very disappointing if there isn't a way to do the equivalent on an iPhone so that it passively holds the mails but doesn't send constant pop-ups every time the app is accessed.

  • Is it possible to keep the "Email me when someone replies" checkbox AFTER you make a posting?

    I'm not sure if I'm the only who does this, but sometimes I forget to check off this box before submitting a new post (i.e, starting a new message thread). Currently, this feature disappears after you submit a new message thread. It is real useful feature to have, and without it, makes your posting experience a lot less desirable.
    Is it technically possible to keep the check-off box available at all times during a posted thread?

    Hi SteveCT99,
    It is possible to automatically subscribe to topics you participate in:
    At the top of the page, click on the "My Settings" link, located after the "Sign Out" link by your name in the grey box.
    Click on the "Subscriptions and Bookmarks" tab
    Check box after "Notify me for my own posts and replies"
     - and/or - 
    Check box after "Automatically subscribe me to topics I participate in" to add the topics to your subscription list.
    Scroll down and Save changes
    You should now automatically get notices each time a new reply is added to the topic.
    Please let me know if this helps.  
    Thanks,
    SunshineF
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • Is it possible to add a firewall Filter or Rule Set to the Extreme Router (802.11n)

    Is it possible to add a firewall Filter or Rule Set to the setting for the Extreme Router (802.11n) like the following:
    "ALLOW TCP/UDP IN/OUT to 208.67.222.222 or 208.67.220.220 on Port 53"  and
    "BLOCK TCP/UDP IN/OUT all IP addresses on Port 53"
    The goal of this is to create a firewall rule to only allow DNS (TCP/UDP) to OpenDNS' servers and restrict all other DNS traffic to any other IPs.
    Or, alternatively is there a way to configure same applied to the Network preferences on IMAC OS X?
    Thanks and much appreciation to anyone who has any clue about this.

    Sorry, I think you've got it backwards.
    The concern is NOT that the child can make changes to our hardware/AEBS, or even our network software on my IMAC - nothing's been changed.
    BUT, he changed the dns settings on his OWN device (ie chromebook) to google public server, accessed the AE using our home wifi network BUT bypassed our dns settings. Capeesh?
    See: http://www.pocketables.com/2013/03/how-to-use-change-the-dns-settings-on-your-ch romebook-and-use-googles.html

  • How to keep filename in textfield when filter is changed in a filechooser

    Hi, guys,
    I met a problem to keep filename in textfield when filter is changed in a filechooser
    for example, a JFileChooser has two filters
    *.jpg
    *.png
    Before I open JFileChooser, I used setSelectedFile(File) to set "aaa.jpg" as default name in textfield.
    when I change the filter to "*.png, ", I want to change the text in textfield to "aaa.png", Actually, I used setSelectedFile(File), If there is an existed file named "aaa.png", this file will be selected on fileView, but the name will not be shown on the textfield. Anybody has ideas?
    Thanks in advanced.

    I really thank you for your answer, but it seems you misunderstand what I said because of my poor english..
    what I said is:
    after you open the filechooser, the filechooser has a combobox to choose file filter and a field to show filename.
    what I want is:
    when you open the filechooser, initial name in field is "test. jpg"
    change filter, "test.jpg" will be change to "test.gif" in the field.
    I don't want to close the filechooser.
    That's why I used a listener to listen JFileChooser.FILE_FILTER_CHANGED_PROPERTY event.
    and I modified your codes
    import java.awt.BorderLayout;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.beans.PropertyChangeEvent;
    import java.beans.PropertyChangeListener;
    import java.io.File;
    import javax.swing.JButton;
    import javax.swing.JFileChooser;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.filechooser.FileFilter;
    class Testing extends JFrame {
         String defaultFile = "";
         JFileChooser fc = new JFileChooser(".");
         ExtensionFileFilter eff;
         public Testing() {
              setLocation(200, 300);
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JButton btnShow = new JButton("Show Chooser");
              JPanel p = new JPanel(new GridLayout(1, 2));
              p.add(btnShow);
              getContentPane().add(p, BorderLayout.SOUTH);
              pack();
              fc.addPropertyChangeListener(new Listener(fc));
              fc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
              fc.setAcceptAllFileFilterUsed(false);
              fc.setFileFilter(new ExtensionFileFilter(".gif"));
              fc.addChoosableFileFilter(new ExtensionFileFilter(".jpg"));
              defaultFile = defaultFile.equals("") ? "Test.jpg" : "Test.gif";
              fc.setSelectedFile(new java.io.File(defaultFile));
              btnShow.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent ae) {
                        fc.showOpenDialog(Testing.this);
         public static void main(String[] args) {
              new Testing().setVisible(true);
    class ExtensionFileFilter extends FileFilter {
         String fileTypes = "";
         java.util.List extensions = new java.util.ArrayList();
         public ExtensionFileFilter() {
         public ExtensionFileFilter(String ft) {
              fileTypes = ft;
         public String getDescription() {
              return fileTypes;
         public boolean accept(File f) {
              if(f.isDirectory()) return true;
              if (f.getName().endsWith(fileTypes)) {
                   return true;
              return false;
    class Listener implements PropertyChangeListener {
        JFileChooser fChooser = null;
        Listener(JFileChooser fChooser) {
            this.fChooser = fChooser;
        public void propertyChange(PropertyChangeEvent evt) {
            if (evt.getPropertyName().equals(JFileChooser.FILE_FILTER_CHANGED_PROPERTY)) {
                 FileFilter fileFilter = (FileFilter) evt.getNewValue();
                if (fileFilter != null) {
                    String fileName = null;
                    if (fileFilter.getDescription().equals(".jpg")) {
                        fileName = "Test.jpg";
                    } else if (fileFilter.getDescription().equals(".gif")){
                         fileName = "Test.gif";
                    String newFileName = "C:\\" + fileName;
                    fChooser.setSelectedFile(new File(newFileName));
    }Thanks again.
    Message was edited by:
    JadeSword

  • Is it possible to keep certain emails together in a folder in mac mail

    is it possible to keep certain emails together in a separate folder in mac mail?
    I have a variety of e-mails pertaining to a particular subject that I would like to keep together.
    Thanks in advance

    Yes.  Create a new mailbox folder for On My Mac via the Mailbox ➙ New Mailbox menu option.
    Name it, select the emails you want to group and drag to the mailbox in the left hand pane of Mail.
    In addition you can create a New Smart Mailbox Folder with as many conditions needed to gather the various emails into it.
    You will have to move the emails out of the In box to full time storage mailbox created above.
    OT

  • HT2242 Is it possible to keep the local country but have it display in my language?

    Is it possible to keep the local country but have it display in my language?
    For example I live in Sweden but am English so would like to have the local setting still for Sweden but all text displayed as English.

    Sorry but no, not if you're referring to the iTunes Store. The iTunes Store for Sweden displays only in Swedish; English is not an option.
    Regards.

  • I have a samsung scx 4100 series and i just updated to mountain lion and now i keep getting a "filter failed" error, anyone have any suggestions as to how to fix it.

    I have a samsung scx 4100 series and i just updated to mountain lion and now i keep getting a "filter failed" error, anyone have any suggestions as to how to fix it.

    Hi again, when you clicked on Mountain Lion and Lion in the App Store you are telling the laptop to reinstall them both.
    You may have allowed simutanious downloads checked at the bottom of the window, I don't know, but I expect Mountain Lion is downloading, so Lion is waiting for it to finish, so if you have Mountain Lion installed cancel both download's.
    Cancell both downloads anyway.
    Go to the apple logo , top left, click on it, then click on about this mac, a window will open telling you what's installed,  Mountain Lion is OX 10 version 10.8.2 click on more info, to find out more, Lion will be OX10 version 10.7.4.
    Only update were it say's check for updates, not download now.

  • My firefox icon disappears into my applications folder each time I log out. Is it possible to keep the icon on the bottom of my screen? Thank you.

    Hello, My Firefox icon disappears into my applications folder each time I log out. Is it possible to keep it at the bottom of my screen (it used to stay there)?

    Does that mean you have to sign out of creative cloud on one machine and sign back in to creative cloud on the other machine to be able to use it?
    No. You can be signed in to the Cloud (using the same Adobe ID) on two separate computers at the same time.
    If you want to activate the Cloud on a 3rd machine then you need to sign out of one of the other computers.
    Your issue on your home computer is unlikely to be related to signing in.
    Mac or Windows at home? Which operating system?

  • Is it possible to keep the menu bar at the top on for a macbook air?

    I dont like how the menu bar (file, edit, vie, etc) goes away when you make a window bigger. is it possible to keep it there the whole time?

    Not in Full Screen mode. Then you need to shove the cursor to the top of the screen to show the menubar.

  • Is It Possible To Keep Secret Photos On iPhone?

    Is it possible to keep photos on an iphone that can not be accessed by someone just browsing through your iPhone (assuming the security code has already been entered at startup)? In other words, can you set up another level of security for just part of the iPhone? This is obviously an important feature for people that date more than one woman at the same time.

    I think that, right now, the only solution is to keep your photos off the phone, accessible via the web. So for instance, if you're taking photos of extracurricular activities (whethey you're Gov. Spitzer or a reincarnated Bob Marley), use one of the web apps that let you post to a website account protected by a password, then quickly delete the pics from the phone. That way you can always have access to your pics, but they will be password protected and not viewable when you show off your fancy iPhone to the young ladies. Not the optimal solution, but it would probably work.

  • PDF Creation: Is it possible to "keep with next"

    Hi,
    Our web designer is turning html text into a pdf. The one issue we are getting stuck with is page breaks. We have figured out how to manually install page breaks, but is it possible to to insert a "keep with next" command.
    The problem we are having is that we have headers and footers on images that we wish to keep with the images when the images break the page. Right now, they often end up on a different page. Is there any way to program these lines to "keep togeather" somehow when the page breaks?
    Thanks!

    jamms wrote:
    It bothers me, I am not proud of this, that I hunt through my "Music" folder to find my TV Shows etc
    It is in the /iTunes/iTunes media/TV Shows/ folder.
    You can only view TV Shows in iTunes so why do you need to "hunt" them anywhere?
    If you really need to, you can select the TV Show (or movie or music or podcast, etc.) right click, Show in Finder.

  • Is it possible to keep the reference of VO Instance in AM session UserData

    Hi,
    I am using JDeveloper 11.1.2.0.0.
    Is it possible to keep the reference of ViewObject Instance in the Application Module Session User Data? Will it have any side effect and is it best practice?
    Instead of find the View Object every time form the Application Module, directly access the instance of viewobject stored in the user data and proceed further for our business logic implementations.
    Thanks in Advance.
    Thanks & Regards,
    Perumal S

    Its not recommended(and it may fail in real life scenario). You may run in to issues when AM is getting passivated. VO has set of supporting components and most of them are not Serialize. Assuming you deal with data from third party data source and your VO is programmatic VO, a possibility could be caching the data used for populating VO through some cluster aware caching mechanisms instead of caching VO instance. Alternatively, if the number of rows are less, use transient VO
    Edited by: Jobinesh on Nov 15, 2011 10:23 AM

  • I am trying to change the Apple ID on my I phone and my Wife's I phone.  Is it possible to keep our contacts, calander, and photos by doing this?  We do not care about our music or apps.  Is this possible?

    I am trying to change the Apple ID on my I phone and my Wife's I phone.  Is it possible to keep our contacts, calander, and photos by doing this?  We do not care about our music or apps.  Is this possible?

    Photos should be copied to the computer and synced back via iTunes.  They are unrelated to the Apple ID unless you are using PhotoStream.
    Depending on how the contacts are synced the the device, chaging the Apple ID may wipe them.
    Why do you want to change the Apple ID?  If it's an email address change, simply change the email associated with the Apple ID.  Do NOT create a new Apple ID.

Maybe you are looking for

  • Missing parameter values on export

    Hi, I am using CR embedded edition 11.5.3.438 as the reports engine for a webapplication written in C# .NET framework 2. when i export a report to some formats (not rpt's) I get a "missing parameter values" exception. the code i use: private void Exp

  • Defalut Document Type assignment for PR after MRP RUN

    Hi, I want to know we have 6 types  of different document types , i want to know after MRP RUN i want to assign a document type how to do setting for this  like for each plant i want to assign diffrent document  type after MRP RUN, also if we have no

  • Problems with 'df' command

    Hello folks, I'm having some problems with df command: Output: [nenemfromhell@myhost ~]$ df -h Filesystem Size Used Avail Use% Mounted on udev 999M 4.0K 999M 1% /dev none 999M 4.0K 999M 1% /dev /dev/sda8 133G 125G 2.0G 99% /media/DU shm 999M 0 999M 0

  • Accounting: Document Posting BAPI's

    Guru's, I'm using the following BAPI to post Vendor and Customer Document Posting. BAPI_ACC_DOCUMENt_POST. But the problem is, we are not able to pass the Posting Key in this BAPI.we tried many scenarios, but we are failed in all the ways. Could you

  • Where to write script in Empirix E-Tester

    Hi, I am new to Empirix e-tester funtional testing tool, Any one explain me where to write script in the e-teser like we write script in QTP's expertview and how to run the scripts. Which is the scripting language we can use in e-tester.