Seems simple enough right? Wrong!

Okay hopefully someone on here can help me. I am using Illustrator CS5 and I am working on a document. I'm trying to put a logo on top of another item created by the pen tool. seems simple enough right? Wrong, the software will not let me use object>arrange>bring to front or Cmd ] and cmd [ is there something that i'm doing wrong? I've redrawn the shape and it still won't let me, I've brought in the logo again, it won't let me, i've done a host of other things and it still won't let me put that stupid logo on top of the cloud (what i drew with the pen tool)
Thanks!

Not sure what you mean. Why is there more than one layer?
It could be that you intentionally created additional layers. It could be that you unintentionally created additional layers. It could be that you hit Cmd L some day. It could be that you pasted objects while Paste Remembers Layers was turned on. Or something else.

Similar Messages

  • Query taking ages...seem simple enough

    10.2.0.3.0 Standard ed.
    RHEL
    1 table, short query with 1 predicate.
    1 index : TRANSACTION_IX9 which is a functional index on the column with the function in the where clause. Index is used in the plan see below.
    Table has 100+ million rows. stats on table and index up to date.
    Takes hours to come back. Plan shows this.
    SQL> explain plan for
      2  select
      3        x1.session_id
      4        x1.received_date
      5  from transaction_tb x1
    where trunc(x1.received_date) < '01-OCT-11';  -- for some reason the date I put in here isnt coming out in the code display on the forum, probably single quotes, anyway its just 01-oct-2011
      6
    Explained.
    set linesize 132
    set pagesize 999
    SQL> SQL>  SELECT PLAN_TABLE_OUTPUT FROM TABLE(DBMS_XPLAN.DISPLAY);
    PLAN_TABLE_OUTPUT
    Plan hash value: 2633564245
    | Id  | Operation                   | Name                       | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT            |                            |    17M|  1572M|  1599K  (1)| 05:19:51 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| TRANSACTION_TB  |    17M|  1572M|  1599K  (1)| 05:19:51 |
    |*  2 |   INDEX RANGE SCAN          | TRANSACTION_IX9 |    17M|       | 48162   (1)| 00:09:38 |
    Predicate Information (identified by operation id):
       2 - access(TRUNC(INTERNAL_FUNCTION("RECEIVED_DATE"))<'01-OCT-11')
    14 rows selected.
    SQL>Yes I know there are millions of rows returned which is probably (defintely!!) not helping the query, but playing with rows returned via the date range if I shorten the time span to reduce to say 20k rows returned, Im still looking at 15 minues to get them out with the index range scan in the plan staying the same. This shouldnt be to my mind. Any thoughts?
    Edited by: deebee_eh on 26-Mar-2012 15:47

    deebee_eh wrote:
    10.2.0.3.0 Standard ed.
    RHEL
    SQL> explain plan for
    2  select
    3        x1.session_id
    4        x1.received_date
    5  from transaction_tb x1
    where trunc(x1.received_date) < '01-OCT-11';  -- for some reason the date I put in here isnt coming out in the code display on the forum, probably single quotes, anyway its just 01-oct-2011
    Before going to much further, you need to check that the actual execution plan matches the predicted plan.
    set serveroutput off
    select .... -- your query
    select * from table(dbms_xplan.display_cursor);
    {code]
    You may find that Oracle handles the run-time situation differently.  (The appearance of the internal_function() suggests this as a possibility).
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    Author:  <b><em><a href="http://www.apress.com/9781430239543">Oracle Core</a></em></b>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • HT201270 I want to sync my iPhone 4S with my MacBook Air, seems simple enough...

    I am having trouble syncing my iPhone 4S with my MacBook Air. I thought all I had to do was connect my USB cable to the iPhone and to my lapatop and voila, it wound sync, but I guess not. Any ideas?

    I didn't get any message, that was what surprised me. However I went to turn off my computer and I received a message saying it was syncing and that it would stop if I turned off my computer. I had lauched iTunes, shouldn't I have seen some messge? I thought I would see the iPhone on the desktop too. Thanks for your help.

  • Seemingly Simple

    Hello,
    I am trying to create a seemingly simple effect in Motion and having some trouble.
    I am trying to do a simple zoom out from a "fill screen" (text size fills screen) to a hault and then slow crawl (text fills screen, slams to a smaller size and then slowly crawls backward). This is pretty much a standard title animation seen on various trailers.
    The preset behaviors and text animations in Motion aren't getting the result I want, so I decided to keyframe the animation...perhaps a bad idea. In LiveType, it is a simple matter of adding a new effect, and keyframing the scale. Everything stays center and flows well; nobody gets hurt.
    In Motion, I've tried keyframing scale and size, both affect the position of the text on the X axis. In order to have the text fill the screen on the first frame, I have to change its position along the X axis. Then, to make sure it is center by the "slam" frame, I have to keyframe the X axis. This sounds so simple and nothing should go wrong, however the X axis sort of "juggles" the text back and forth creating a sort of swoop from one side to the other. Even stranger, the X axis values do not fluctuate, they continue diminish, so I cannot isolate what is creating the swoop (I do have a number of filters, however). This sound familiar to anyone?
    I've even tried keyframing the position the whole way, but it doesn't work. Plus, the text is sort of crawling back to the side, favoring the left side of the screen (moving from right to left), not center. I don't have any Motion manuals because I did the Universal upgrade deal, so I am a little lost.
    Any help is, of course, greatly appreciated!
    Thanks In Advance!
    ~Athen

    It can be rather simple, if you will do your pan and zoom in Still Life, a very inexpensive and capable program, AND then bring that footage into Motion for whatever you want to do with it in special effects, etc. Of course, you must export from Still Life in iMovieHD or QuickTime before coming into Motion. It worked for me. Of course, there may be complications for you, of which I am unaware.
    Lucky Man
    PBG4 17   Mac OS X (10.4.6)  

  • Simple enough but... calling a method from another class

    Hi all,
    I know it's simple enough, although I can't see where I'm going wrong for some reason. Basically I've got a class which extends JPanel but when I try to call one of its methods from my main class I get an error. The relevant code (I hope) is:
    Main.java
    import java.awt.BorderLayout;
    import javax.swing.UIManager;
    public class Main extends JFrame implements ActionListener {
         JFrame frame;
         public static JPanel statusBar;
         public Main() {
              // Add a status bar
              statusBar = new StatusBar();
              mainPanel.add( statusBar, BorderLayout.SOUTH );
              setContentPane( mainPanel );
         public static void setStatusBarText( String s ) {
              statusBar.setStatusText("Test");
    StatusBar.java
    import java.awt.Color;
    import javax.swing.SwingConstants;
    public class StatusBar extends JPanel {
         private int barWidth;
         private static JLabel status;
         public StatusBar() {
              super();
              //barWidth = Main.getProgramWidth();
              //setPreferredSize( new Dimension(barWidth,22) );
              setLayout( new FlowLayout( FlowLayout.LEADING ) );
              setBorder( BorderFactory.createMatteBorder(1, 0, 0, 0, new Color(160,160,160) ) );
              status = new JLabel("Test", SwingConstants.LEFT);
              //status.setVerticalAlignment( SwingConstants.CENTER );
              add( status );
         protected void setStatusText( String s ) {
              status.setText( s );
              revalidate();
    }The "statusBar.setStatusText("Test");" call in the main class file doesn't work and I get the error:
    >
    cannot find symbol
    symbol : method setStatusText(java.lang.String)
    location: class javax.swing.JPanel
    statusBar.setStatusText("Test");
    >
    Any ideas what I'm doing wrong? I created an instance of the StatusBar class called statusBar, then I use this to call the setStatusText() method (via statusBar.setStatusText()) which I thought was all correct, then it doesn't work? Even if there's an easier way to do what I want to achieve (i.e. update a JLabel from the 'central' main class file instead of setting the JLabel to static and having every class call it directly), I'd appreciate knowing where I'm going wrong here nonetheless.
    Many thanks,
    Tristan

         public static JPanel statusBar;
         public static void setStatusBarText( String s ) {
              statusBar.setStatusText("Test");
    >
    cannot find symbol
    symbol : method setStatusText(java.lang.String)
    location: class javax.swing.JPanel
    statusBar.setStatusText("Test");
    >The type of variable statusBar is JPanel. That's all the compiler takes into account. It's irrelevant that at some point in the program the type of the object pointed to by this variable is a subclass of JPanel (because at another point it might be an instance of another subclass, or of JPanel itself.

  • Making a join seems simple but I can't get it to work

    Hi All,
    I have 2 tables LUGallery and LUSubGallery, the tables are related by the GalleyID field
    LUGallery
    Gallery ID
    ClientID
    GalleryName
    5
    50
    Australia
    8
    50
    Weddings
    12
    33
    Portraits
    4
    33
    Landscapes
    LUSubGallery
    SubGalleryID
    GalleryID
    GalleryName
    67
    5
    NSW
    68
    5
    QLD
    69
    8
    Reception
    70
    8
    Location
    87
    8
    Ceromony
    97
    4
    Rain Forest
    What I am try to do seems simple but I can't get it to work the way I want it.
    I am trying to write a query to display Galleries from the LUGallery tbl that have a Sub Gallery attached to them (ie. It's GalleryID appears in the LUSubGallery tbl)
    So the query for the above example would list Australia, Weddings & Landscapes
    I have tried to write code both with inner joins and nested queries but just can't get it right,
    Any help would be greatly appreciated.
    Thanks in advance
    Kris

    I just want to
    display the GalleryNames from the LUGallery tbl once
    Then you probably do not want include all the extra columns from the LUSubGallery table.
    It returns all of the records from both tables that Have
    the same GalleryID
    That is the way this type of JOIN works. It will return one record for each matched GalleryID. If you only want to display the unique gallery names you can either:
    1) Use an EXISTS clause.  It will return the distinct records from the main gallery table IF a matching record exists in the LUSubGallery table
    --- Not tested ---
    SELECT  LUGallery.GalleryID,
    LUGallery.GalleryName
    FROM    LUGallery
    WHERE   EXISTS (
            SELECT  *
            FROM LUSubGallery
            WHERE LUGallery.GalleryID = LUSubGallery.GalleryID
    http://www.techonthenet.com/sql/exists.php
    ... OR ....
    2) Use the DISTINCT operator to return only the unique combinations of the selected columns. Note: DISTINCT considers all columns in the SELECT list . So if you only want unique galleries, do not include the LUSubGallery columns in the SELECT list.
    http://www.w3schools.com/SQl/sql_distinct.asp
    Message was edited by: -==cfSearching==-

  • I can't seem to find anything wrong

    I can't seem to find anything wrong with this syntax. Am I crazy?
    public class AA
        private int x;
          private int y;
          public AA()
              x = 0;
                y = 0;
          public AA(int a, int b)
              x = a;
                y = b;
          public int sum()
              return x + y;
          public void print()
              System.out.println(x + " " + y);
    [\code]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    brock01 wrote:
    [\code]Make that
    Describe the problem, post the actual errors, etc.

  • I recently upgraded to Mac OS 10.8.1.  I had an Epson Inkjet printer (Stylus C88 ) that had seen its better days. I repurchased a refurbished model (C88 ) to replace the old one, simple enough. Since I've done this before, I didn't think I had to install

    I recently upgraded to Mac OS 10.8.1.  I had an Epson Inkjet printer (Stylus C88 ) that had seen its better days. I purchased a refurbished model (C88+ ) to replace the old one, simple enough. Since I've done this before, I didn't think I had to install the CD. I have since discovered the CD isn't recognized on my computer and/or by this Mountain Lion system and that I had to go to Apple to upgrade the new driver for this product, and which I did, but I can't find the epson folder  other than the attached. I just want to place an alias printer logo on my desktop but I can't find it anywhere.   What to do???

    Hi, one question & one suggestion...
    What possible things are connected at home but not at the store, inlude every cable, etc.
    One way to test is to Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, Test for problem in Safe Mode...
    PS. Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive
    Reboot, test again.
    If it only does it in Regular Boot, then it could be some hardware problem like Video card, (Quartz is turned off in Safe Mode), or Airport, or some USB or Firewire device, or 3rd party add-on, Check System Preferences>Accounts>Login Items window to see if it or something relevant is listed.
    Check the System Preferences>Other Row, for 3rd party Pref Panes.
    Also look in these if they exist, some are invisible...
    /private/var/run/StartupItems
    /Library/StartupItems
    /System/Library/StartupItems
    /System/Library/LaunchDaemons
    /Library/LaunchDaemons

  • Reporting the Same Score Regardless of Right/Wrong

    Hi everyone,
    This is a very odd request...my client, for some reason, wants to report the same score for the quiz regardless of whether it's right or wrong.
    So, if the learner gets the correct answer, they get 1 point. If they get it wrong (even after giving them 2 attempts), they still want it to report 1 point.
    It sounds like they don't want to change it to 0. I've already offered that as a solution.
    They want the pass/fail settings to report 0%.
    This request doesn't make any sense to me. It completely goes against the point of reporting a score.
    Any ideas on how I should address this with them and give the same score regardless of right/wrong answers?
    Thanks,
    Kristen

    Hi everyone,
    Rod, the client wants to give a percentage. They don't care about the score. And as much as I question their request, I was asked to just research potential solutions and not question it. Frustrating, I know.
    Lieve was able to give me two solutions offline that they will consider. Thank you, Lieve!
    I can't give them unlimited attempts. The client has made it VERY clear that they only want to allow 2 attempts. And they also don't want to rely solely on slide views...they would like for it to report the same score for every learner that basically shows they attempted to answer the question (right or wrong).
    Thanks everyone!
    Kristen

  • Not enough rights for syncing iPhone

    After update to iTunes 9.1.1 I cannot sync my iPhone (3G, 3.1.3).
    Message: You don't have enough rights for this action

    check if you have read & write permissions for your iTunes music folder. in finder, right-click on it and +get info+. unlock the little padlock (you may have to enter your admin password) and change the permission settings. next, click on the little gear-shaped icon and +apply to enclosed items+ like so
    you may also give everyone read & write access. if this doesn't help, try the same on your iTunes folder (not just the iTunes music folder).
    JGG

  • Tutorial or Documentation on how to enhanced quiz Right / Wrong Captions

    Good Morning,
    I'm working on a Captivate 8 module and I've setup my quiz and all is working great.  I would however like to enhance the caption when you answer a quiz so that instead of just displaying the Green / Red box with the text, I would instead like to perhaps have an actor pop in with some text (in a speech bubble perhaps). 
    I've looked for tutorials online and in some of the documentation, but I'm not seeing how to enhance the standard quiz right / wrong captions to do anything other than show the green and red box?
    Can someone guide a bit on how to accomplish this, or perhaps some documentation / tutorial that demonstrates this ability.
    Thanks

    I have tested the same scenario at my end and able to achieve by using the advance action.
    You may uncheck the Incorrect and correct captions and create two callout boxes with correct and incorrect text and also insert two different images on the same slide. You need to hide them to display in the output "not visible in output".
    On quiz slide on success I have applied an advance action in which I have created a standard action to show the correct callout and its related image and similarly on the Last attempt I have created another standard action to show the incorrect callout along with related image.
    If you need further information please send me your email address as private message.
    Regards,
    Rajeev.

  • Very quick and simple question about a simple sum going wrong.

    Ive noticed that im having lots of ocurrences where my maths goes wrong - usually i trace this to ints multiplying doubles and stuff , or its in degrees not radians .
    But this one is too simple to seem to cause problems :
    screenY = 180 + ( 420 - (( 420 / 2200 ) * xE ) );
    heres the code line which does the calculation, and for a particular loop it
    ran as xE = 223 .
    xE is an int by the way.
    For some reason this code always produces screenY = 600 ,
    which should only be the case if xE = 0 .
    any suggestions as to how i should help the VM get it right?
    thanks in advance guys.

    Ive noticed that im having lots of ocurrences where
    my maths goes wrong - usually i trace this to ints
    multiplying doubles and stuff , or its in degrees
    not radians .
    But this one is too simple to seem to cause problems
    screenY = 180 + ( 420 - (( 420 / 2200 ) * xE ) );
    heres the code line which does the calculation, and
    for a particular loop it
    ran as xE = 223 .
    xE is an int by the way.
    For some reason this code always produces screenY =
    600 ,
    which should only be the case if xE = 0 .It happens because in integer division 420/2200 is always equal to zero. So, regardless of the value of xE, you're adding 420 + 180, which is 600.
    any suggestions as to how i should help the VM get it right? Yes:
    double value = 180.0 + (420.0 - ((420.0/ 2200.0)*xE));
    screenY = (int)value;You can simplify all this, of course. Why not do that 420/2200 = 0.19090909... calculation once and just substitute the constant value?
    %

  • X-Fi DD-DTS doesn't seem to work right playing DVD Movies with VLC Player or anything els

    I have an X-Fi Platinum with the bay and When I try to Play a DVD with VLC Player And choose a/52 over s/pdif it sounds HORRID skipping and pausing and not functioning at all.. I must choose 5. channel to have Listenable Audio. The Same goes for AC3 Encoded Files If I chose A/52 over S/PDIF in VLC player it sounds like **bleep** and doesn't seem to decode it right. I must chose stereo 2 channel to listen to AC3 encoded video's.. NOTE The dolby Digital symbol DOES appear when i chose A/52 over S/PDIF so it does know it's a digital signal.. And I have the software set to USE hardware decoder and S/PDIF in Decode selected. NOW Here's something that REALLY makes me wonder wtf is wrong, I can connect my Home DVD Player or Cable Box over the Optical?in OR the S/PDIF in and the SOB works Fine, The Dolby Digital symbol comes up and everything sounds great! I get Dolby Digital surround no problem..Why in the heck does it not want to play DVD's using the A/52 over S/PDIF or any AC3 Encoded Files?What's the deal?And I am using windows XP Pro SP2 yadda yadda yadda?Message Edited by mbrown0420 on 07-25-20070:58 PM
    Message Edited by mbrown0420 on 07-25-20070:58 PM

    Only with VLC?
    Same problem with PowerDVD, WinDVD?
    VLC media player Forum:
    http://forum.videolan.org/viewforum.php?f=4
    Unplayable DTS/Dolby Output via A/52 over S/PDIF (Videolan forum)
    http://forum.videolan.org/viewtopic....d=a&view=print
    "In the preferences menu: (tab) Audio > Output modules > (check the "advanced options" box) choose "Win32 waveOut extension output" from the drop-list, save and restart VLC (by CloudStalker)"
    http://lh3.google.es/rmorinr/Rqhsqp7cvhI/AAAAAAAAAfM/qtzo3E8-sQQ/s44/VLC_DTS_Options.JPG">
    Message Edited by Rad-Wulf on 07-26-20070:47 AM

  • Seemingly simple question regarding safe areas

    I can't seem to find a simple fix to this anywhere, though it seems to me like
    there should be one.
    When I shoot, I compose my shots in camera so that they look the same when played on a TV. Because of the nature of television, some portion is always cut off.
    Is there an easy way to size the image down to fit the title safe grid so the entire IMAGE is safe on screen?
    Please help me I am freaking out!

    downtownjunkie wrote:
    is there no happy medium for those of us who just want to make one
    disc that will play well and will show the proper image on a range
    of televisions as well as projector screens?
    The use of safe areas is that happy medium.
    Because I'm in a verbose mood, let's talk about movies for just a second. If you've ever had the chance to look at a strip of 35mm film, you'll notice that the exposed area isn't actually the same shape as a movie screen. Theatrical features are shown in a variety of aspect ratios, but they're almost always of a shape that's wider than a 35mm frame. Many movies are shot "full frame," meaning the whole 35mm film area is exposed when the camera rolls. Some of these movies are "soft-matted" in the projector at your local cinema; the film print actually has the whole exposed image on it, but it's projected through a rectangular plate that obscures the top and bottom.
    (Not all movies are done this way. Some are hard-matted, and some are printed to be shown through anamorphic lenses, and so forth. I'm just drawing an analogy here, so don't harsh my mellow.)
    Because you're showing the film through a little piece of metal with a hole cut in it, +no two projections of the same soft-matted spherical-lensed film will ever be framed exactly the same way.+
    Not only that, but next time you go to the movies, look really closely at the edges of the screen. Odds are you'll see that the projected image actually spills over slightly, by up to a foot or so. Between soft matting and differences in projection, the extreme edges of a motion-picture frame are basically a no-man's-land. Anything right at the edge of the image is not guaranteed to be visible on the screen.
    TV works the same way. Different sets handle overscan different ways. The solution — that happy medium you asked for — is to compose your shots with a "safe area" in mind. As noted above, a lot of cameras will show you safe-area guides right in the viewfinder; use them.
    But the dirty little secret is that there are actually two "safe areas." There's "action safe," which is that area of the frame in which you can reasonably expect your audience to see +stuff happening.+ And then there's "title safe," which is the area of the frame which you can reasonably expect won't butt right up against the edge of the screen. That's why when you turn on safe areas in Final Cut, for example, you see two rectangles. The outer one is action safe; the inner one is title safe. On-screen titles, as the name implies, should always be kept entirely inside the title-safe area.
    If you have any experience with print at all, consider the area outside action safe to be your "bleed." It's there to ensure that the image extends all the way to the edge of the screen, but you can never be sure precisely where the edge is going to fall.
    In this particular case, maybe you should go back and look at your show while asking yourself if it really matters all that much whether what you see on the TV is precisely what you tried to film. Losing a little bit on the sides might offend your artistic sensibilities — that's not sarcasm; we're all here because we have artistic sensibilities — but it really might not make that much difference.

  • Seemingly Simple Audio Edits Driving Me Nuts

    I have asked about this before, thought I had the proper answer, but alas it would seem not.
    After joining audio (in most cases for music transitions) into Connected Storyline, I am often then unable to apply a Transition of perform a Roll Edit because it seems there is a space in there somewhere.  I have tried the suggested remedy of Zooming in, using Position Tool to trim both sides of the edit, then deleting the space in between.  It was explained the problem invovles sub frames which aren't always visible.  Sometimes this works.  It seems like there should be a quicker solution (it's especially cumbersome if your edit is otherwise well timed, and you have to re-tweak it once you pull the edges back,) but if it worked consistently I could live with it. 
    However, far too frequently, the process is not working, and I am redoing it over and over and over again until somehow it manages to take.  I can end up spending 5 to 10 minutes on a simple audio edit, and needless to say, this is just unacceptable. 
    Can anyone tell me a reliable way to deal with this, or suggest what I might be doing wrong or something different I can try, because this is making me crazy.  There has got to be an easier way.  Any help appreciated. 

    dont think ive ever been able to get cross dissolves on audio to work. I now use FCPX as I would Logic or ProTools and I overlap audio clips and put manual fades on them. Actually its worth the extra work coz the joins are usually better. and you have ore control.
    adam

Maybe you are looking for