Sub Layers inside of Web Layer - Re ordering

I am trying to re-order sublayers in the Web Layer. It is realy for organizational purposes but I would still like to do it. Does anyone know if there is some kind of trick to get this to work. All the other non-Web layers allow the re-ordering of sublayers as expected.
Regards,
Steve

I can't imagine why you would attempt to crearte web layer sub layers.  The web layer is active across all layers on a selected page. As each page has its own web layer, you can create a different slicing template for each page.

Similar Messages

  • Relative Stacking order of Sub Layers and items

    I want to get the items in a layer sorted in their stacking order (including any sub-layers).
    For example:
    Layer 1
       item A
       Layer 1a
       Group B
       item C
    In the example above, I would get back an array like this:
    [item A, layer 1a, Group B, item C]
    Of course, you'd think this is a simple enough thing given that zOrderPosition is freely available:
    function getChildrenInStackingOrder(layer){
        var sublayers=layer.layers;
        var pageItems=layer.pageItems;
        var result=new Array ();
        var size=sublayers.length+pageItems.length;
        for(var i=0;i<sublayers.length;i++){
           result[sublayers[i].zOrderPosition]=sublayers[i];  <<<----------- ERROR
        for(var i=0;i<pageItems.length;i++){
           result[pageItems[i].zOrderPosition]=pageItems[i];
        return result;
    My problem is that AI CS4 throws up at the line marked above with a message "Internal Error 1200". I'm guessing that it's illegal to get the zOrderPosition of a sublayer.  Any thoughts?
    Anurag.
    PS. Do any Adobe engineers read this forum at all? Seems like there's a lot of internal documentation that could help in answering some of our questions.

    This is a BUG.  Bugs exist in any software. But when a company allows its users to waste hours and hours trying to figure out what they're doing wrong, only to find it's a bug that Adobe didn't bother to document prominently in their user guides, it borders on cruel. And it will continue to happen to others.
    Illustrator's scripting documentation clearly says that zOrderPosition is available (read-only, which is fine) for all PageItem and Layer objects. The fact that it is relative to the parent group or layer is totally OK; it's good, in fact. Or it would be, if it wasn't useless because it is broken. "Internal Error" ? ngngn..
    Some of the replies here point to possible workarounds using Document.pageItems, it's unforgiveable that such a workaround is necessary, but here is another, similar trick. It relies on an interesting (undocumented) aspect of how selections behave: If you select a bunch of objects in any order and then iterate through Document.selection, it turns out that the objects in the selection array have been sorted into proper z-order for you.
    var doc = app.activeDocument;
    var layer = doc.activeLayer; // select your parent layer before running this
    // Convert a collection to a regular JS Array, so we can use concat()
    function toArray(coll) {
        var arr = [];
        for (var i = 0; i < coll.length; ++i) {
            arr.push(coll[i]);
        return arr;
    // Get all the objects in a layer and its descendent layers
    function getAllPageItems(layer) {
         var items = toArray(layer.pageItems);
         for each (var sublayer in toArray(layer.layers)) {
              items = items.concat(getAllPageItems(sublayer));
         return items;
    var items = getAllPageItems(layer);
    // Some items here will not be in z-order.
    for each (var item in items) {
         $.writeln(item);
    $.writeln("---------------------------");
    // Select everything in the active layer:
    doc.selection = items;
    //Notice that the objects have been resorted into z-order in doc.selection:
    for each (item in doc.selection) {
         $.writeln(item);
    Of course if you want to preserve the original layers without flattening, you'll have to do some additional, ridiculous stuff. But, hope this helps someone.
    Anyone out there who looks at this and thinks "What an idiot, doesn't this guy know you can just do 'x' .." PLEASE correct me, and be as disparaging as you want. I will still thank you.

  • Is there a way to color layers and sub layers in Fireworks?

    Hello all,
    I'm trying to find a way to colorize the layers and sub layers in the layer panel in Fireworks CS5.5, like you can in Photoshop. I work in a small web design company doing GUI design and when I pass the files on to the developers they are asking for easier ways to sort the content of various layers and sublayers at a glance. In Photoshop you can apply a color to a layer or group in the layrs panel and that works great for an internal labeling scheme. Is there anything like this built into Fireworks or are there any add-ons from a 3rd party etc. that would allow this? It wold save a lot of trouble and time for us. I can't find anything anywhere about it, but it may be that my search terminology is poor. I'm not sure how you would word a search for this kind of feature. I keep getting information about applying colors to shapes etc rather than colorzing the labeling of layers panel itself.
    Thanks in advance for any help or information!

    Thanks for the information,
    I was relatively certain there wasn't a native way to do this. I was hoping maybe someone had created a plug-in but as you say, I could see where it would be very difficult to modify the internal workings of the software like that.
    I went ahead and put in a feature request per the link you provided... maybe someday that will do some good haha! I use sublayers and pages currently and have on a few occasions used states. I have a few options that are open to me if it were just me doing the work but I work with a couple developers and they know how to get around in Fireworks enough to make a slice and select needed objetcs (as long as I group complex shapes and mult-tier effects) but that is about all they do and are willing to know about "design" software lol! They like the sublayers because I think it's similar in behavior to the database and coding software they use. I have convinced them of the beauty of pages for alternate colors and versions of the same site but that is about as far as they are willing to go right now.
    They want to mainly be able to quickly turn off specific text and certain effect layers as needed so they can sort slicing faster and see where the desired objects and layers are at a glance. We've been using sub layers to break things up between these components but they aren't as happy with that because it still means often having to read the names on the layers palette and when you have an extensive project with many items in the layers panel, it gets hard to read at times. It also addes even more folders to sort through becuase of the high level of specicifity. It's not a deal breaker, just a way to speed up the workflow and keep tension down haha! The onion method sounds interesting but I'll have to demo it first and see how easy it is to fool with hiding various combinations... you know how "coders" can be sometimes
    Thanks for the input! Here's to hoping Adobe thinks this feature is worth it in the future! Can't see where it would be terribly difficult to add!

  • Randomise Layer Stacking Order in AE CS3

    Hi,
    I am working on a file with over 100 layers and wondered if anyone knew how to randomise layer stacking order?
    I have seen a plugin that can do it but it costs over $100!
    I cant believe that Adobe would not include this as a standard function within After Effects, seems like it would be really useful to alot of people!
    Anyway, if anybody knows of either a way i can do this or a free plug in that can do this it would be much appreciated!
    Thanks!
    J

    As Jonas mentioned, the KindaSorta script from Jeff Almasol does what you're looking for. A link to this script appears in the
    "Change the stacking order for selected layers" section of After Effects CS3 Help on the Web.
    In fact, many dozens of scripts from Jeff are linked to from the pages of After Effects CS3 Help on the Web.
    Try this Google search:
    almasol site:livedocs.adobe.com
    You'll find a wealth of great material from our scripting master.

  • Illustrator layers inside AE

    Hi everyone!
    Apologies again for my lack of  knowledge in this area.  I have multiple layers inside Illustrator, each  with the shape outlines for different words.  See this thread...
    http://forums.adobe.com/thread/872916
    ...for details (and many thanks to CarlosCanto again!).
    Everything  works great inside Illustrator -- all of the layers are in sequential  order of how they were typed.  However, once I import the Illustrator file into After Effects, all of the layers are alphabetized by the name of the layer (no longer in the order they were originally typed).  I need to preserve the layer order from Illustrator inside After Effects.
    If anyone could help out it would be MUCH appreciated.
    Thanks!
    EDIT:  I'm using all CS4 products, if that helps.

    Okay... I suppose that works.
    I ran into another  problem though.  The selection boxes around all of the layers are all  the size of the composition, and not the size of the words.  This makes  it really difficult to move the words around by hand, because they're  all stacked on top of each other.
    When I imported the  Illustrator file I chose "Import as Composition - Cropped Layers"  thinking that would do the trick.  Is there any way to make the  selection boxes the size of the words and not the whole composition?
    Thanks!

  • Duplicate web layer

    Hi all,
    I've been searching and can't find the answer to this. I have
    tried to move on to Fireworks from Imageready now I have no choice,
    but I am having trouble finding the same features that imageready
    offered... Could anyone tell me:
    1. How do I duplicate a sub-layer in the Web Layer? I have a
    set of buttons with rollover states. In Imageready I could create
    one set with the OFF state, then duplicate that and it would keep
    all the slice names the same. Then I could just change the OFF bit
    to ON at the end of each title. Does anyone know a good way of
    doing this in Fireworks?
    2. If I duplicate a slice, can I keep the filename the same?
    Thanks for your help.

    cozzabags wrote:
    > Thanks for your reply Linda. This would be handy for
    things such as Rollover
    > states, where Button's will remain the same shape in
    slice.
    But they will. The frames are where the stacks are located,
    not the web
    layer. The web layer rides on top of everything.
    Here's a description that might help to get your head around
    the concept
    of the way frames work in Fireworks.
    Frames are like the cells of an animation, but instead of
    being in a
    strip, as they are in a film, they are stacked on top of each
    other, as
    they are in a flip book. On each frame you can have many
    layers--the
    background layer, a tree image layer, a house image layer.
    Unless you
    instruct Fireworks to share these layers across the frames,
    each frame
    will have its own discrete set of layers.
    When you draw a slice over frame one, the slice creates a
    cutting guide
    that affects all the material on the frames below frame 1 as
    well. Let's
    say you have 6 frames. Naming the slice on frame 1
    automatically names
    all the images stacked under it in frames 2 through 6 as
    well. Each
    frame will be exported as a separate image, named
    sequentially, as
    myimage, myimage_f2, myimage_f3, etc.
    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/

  • Is it possible to open up an excel file inside a Web Browser not IE?

    I'm trying to find out if it is possible to open up a pivot excel file inside the a web browser, but i don't want to use Internet Explorer for that i'd prefer firefox for that.
    I have a web application that uses an excel file for one of its reports but i don't want the user to have to download the file in order to view the report and that particular report has various ordering criteria so i don't want any of the funtionality of the file to be lost in the process, so is it possible to do it? what tools would help me acomplish that?

    I don't think this is possible.
    You may be able to make it display in Firefox if the file is defined as the XML Excel format and not the xls or xlsx formats. But that would require saving the file differently and you would most likely loose all/most functionality
    You may find some Excel translators in Java (most notably POI from Apache). But they would still require you to adapt them to web format and you would have to duplicate much of the Excel functionality yourself. So it would be a long term option.
    You could check out Google Docs. They have a spreadsheet application that I believe can convert Excel files to their format. You may be able to use it inside your web site with permissions.

  • Why does "double clicking" onto a group expands sub-layers?

    when i have an object that has sub-layers (i am assuming that illustrator creates these automatically), if i accidently double click the object, my layers pallet expands. I have to go back to layers pallet and collapse layer to resume work.

    OK, the double click in an empty space helps, but I do not find "isolation mode" in my preferences. I'm running Illustrator CS2...is there another name for isolation mode? (help topic displayed nothing for this term)
    thanks again

  • Sub-Process Main Process Web-Service

    Hi,
    I have a main Process and a sub-process inside this main process.
    I have a Wait activity inside this sub-process, which waits for an external call from another system to call my Web-Service at this Wait activity. This Web-Service is built as Process As a Web-Service Call.
    But I fail to get any information back from this Wait Activity which keeps waiting for the call from the external system which calls my Web-Service at this Wait Activity.
    But the external system is calling my Web-Service and it gets a error notification from BPM..
    Why is that so?
    Is it because its a sub-process inside a main process or something else?

    Did you use PAPI code inside your web service or did u just use PAPI Web Services ( like did u just pressed the button Launch PAPI Web Services ) and it created the WSDL for you and u used it to create the client?
    I am using the latest version of OBPM..
    Oracle 10.3.10
    Can you let me know what do u mean by PAPI interface.. Is it the PAPI code of is the PAPI Web Service which is built by BPM automatically and could be used?
    Edited by: user8707382 on Sep 10, 2009 9:00 AM

  • Servicegen for sub-class inside vector variable of Super

    java.lang.NoSuchMethodError
    at com.netsboss.WSBE.model.QueryItemCodec.typedInvokeGetter(QueryItemCod
    ec.java:87)
    at com.netsboss.WSBE.model.QueryItemCodec.invokeGetter(QueryItemCodec.ja
    va:56)
    at weblogic.xml.schema.binding.BeanCodecBase.gatherContents(BeanCodecBas
    e.java:295)
    at weblogic.xml.schema.binding.CodecBase.serializeFill(CodecBase.java:25
    3)
    at weblogic.xml.schema.binding.CodecBase.serialize(CodecBase.java:195)
    at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUti
    ls.java:184)loop
    at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUti
    ls.java:170)
    QueryItem {
    private Vector airItiners;
    public Vector getAirItiners() {
    return airItiners;
    public class AirItinerary implements Serializable{}
    QueryItem is my return class. The return result will include sub class AirItinerary
    in QueryItem's Vector. I notice servicegen will only generate stub and web.xml
    for QueryItem.
    I get above error, when the result return to client. How to generate necessary
    sub-class inside a vector variable of Super class?
    Stephen

    Hi Stephen,
    write my own ser/deser? Any other quick way?Our excellent support group ([email protected]) may be able to help with
    an alternative solution. If you could create a small reproducer, then
    this will help them with a clear picture of your goal.
    One more problem, wls deloy my WSBE.ear as a war correctly. But error show noDouble check the console log for any messages. Also try:
    http://[host]:[port]/[contextURI]/[serviceURI]
    See: http://edocs.bea.com/wls/docs70/webserv/client.html#1051033 and
    also check the console to verify the app is or is not deployed. See:
    http://edocs.bea.com/wls/docs70/programming/deploying.html
    HTHs,
    Bruce
    Stephen Zeng wrote:
    >
    Hi Bruce:
    Our company use wsl7.0. We are not able to update to wls8 in this project. Do
    I have to
    write my own ser/deser? Any other quick way?
    sub class variable:
    public class AirItinerary implements Serializable{
    private String air;
    private Vector flightItem; //sub class of AirItineray
    One more problem, wls deloy my WSBE.ear as a war correctly. But error show no
    deloyment found. web-services.xml has been generated by servicegen under web-inf
    path. Thanks Bruce.
    Stephen
    Bruce Stephens <[email protected]> wrote:
    Hi Stephen,
    The java.util.vector should be converted to a SOAP Array, see:
    http://edocs.bea.com/wls/docs81/webserv/assemble.html#1060696 however
    the issue of the sub-class is most likely the problem. Can you simplify
    the data types? You may just have to write your own ser/deser, see:
    http://edocs.bea.com/wls/docs81/webserv/customdata.html#1060764
    This is with WLS 8.1, right?
    Thanks,
    Bruce
    Stephen Zeng wrote:
    java.lang.NoSuchMethodError
    at com.netsboss.WSBE.model.QueryItemCodec.typedInvokeGetter(QueryItemCod
    ec.java:87)
    at com.netsboss.WSBE.model.QueryItemCodec.invokeGetter(QueryItemCodec.ja
    va:56)
    at weblogic.xml.schema.binding.BeanCodecBase.gatherContents(BeanCodecBas
    e.java:295)
    at weblogic.xml.schema.binding.CodecBase.serializeFill(CodecBase.java:25
    3)
    at weblogic.xml.schema.binding.CodecBase.serialize(CodecBase.java:195)
    at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUti
    ls.java:184)loop
    at weblogic.xml.schema.binding.RuntimeUtils.invoke_serializer(RuntimeUti
    ls.java:170)
    QueryItem {
    private Vector airItiners;
    public Vector getAirItiners() {
    return airItiners;
    public class AirItinerary implements Serializable{}
    QueryItem is my return class. The return result will include sub classAirItinerary
    in QueryItem's Vector. I notice servicegen will only generate stuband web.xml
    for QueryItem.
    I get above error, when the result return to client. How to generatenecessary
    sub-class inside a vector variable of Super class?
    Stephen

  • My sub layers insist on opening my themselves.

    I'm a cartoonist, and I do rather complex vector drawings.  It's no unusual for my work to have hundreds of layers, and those layers have dozens of sub-layers.  When I opens said files, several layers expand to reveal all the sublayers.  I then have to colapse them, one at a time.  Is there a quick way to close all sub layers at once?

    it has been long discussed in this forum, unfortunately no
    the workarounds, either avoid sublayers or move everything under one Mothership Layer then Alt+Click to collapse/expand all sublayers
    http://forums.adobe.com/message/4565587#4565587
    http://forums.adobe.com/message/2112707#2112707
    http://forums.adobe.com/message/3880002#3880002

  • Selecting Layers Inside Collage

    I'm having trouble selecting specific layers inside a
    collage. Many of the layers overlap, so the smaller images are
    harder to select, sometimes even impossible.
    It'd be much easier if I could select the image from the
    timeline. But I'm trying to alpha tween each of the images and
    selecting the layer from the timeline doesn't give me access to the
    color menu in the properties box.
    Also an unrelated problem with the images which I've imported
    from photoshop. The layer masks I've created for each of these
    images aren't showing completely. The mask is very blotchy.

    You might try unchecking Auto-Select and set to Layer instead of Group.
    MTSTUNER

  • Auto align layers moves my locked layer?

    I am using CS4 and I want to align a couple of layers. I have no problem getting it to work, except for the fact that it will move all of my layers, even my background layer wich is locked. I thought that if you first locked a layer, then selected the other layers, all of those unlocked layers would be aligned to the locked layer? I want to keep that background layer from moving.
    Thanks,
    Steve

    Yes the new Auto-align feature in Photoshop should be better implemented than it is. Locking the Movement of layers should certainly regsiter with Auto_align, and its quite ridiculous that it doesn't. If all selected layers happen to be locked then a warning should come up
    D. Fosse has your answer over how to do this at present, it requires re-ordering your layers.
    You should post a Feature Request about this.

  • Sub Layers don't look crisp

    I'm having difficulty with sub layers. I'm not getting a crisp enough sub layer on my DVD menu's.
    What is the best method for creating a sub menu in photoshop?

    Here's a plug-in ,designed by Chris Lanke, for Photoshop which I've been using alot lately. In fact, I'll be using it for all my overlays/subs. from now on.
    http://www.videotoolshed.com/?page=links
    It's a filter which "smooths" antialiased text before your export out of photoshop. Using the black, blue and green highlight color settings in the inspector you can make those edges look great. I did some work for a documentary that needed palm tree leaves as buttons and it really worked out great.
    BTW..this site has alot of cool tools as well.

  • Sending an email from inside a web pl/sql procedure

    Hi,
    I need to send an email to a predefined address say "[email protected]",
    and use a prefedined mail server "server11" from inside a web pl/sql procedure.
    I want this to be oblivious to the user, so no forms etc...
    Is there a way to do this using mailto:// without something popping up?
    Something like this would be first class:
    sendmail( to, from, subject, text, mailserver )
    Thanks in advance,
    Barry

    Hi,
    One needs to create a procedure or write a PL/SQL block which would do it
    Follow the commands as mentioned in this URL:
    http://www.quest-pipelines.com/newsletter-v2/smtp.htm
    http://download-east.oracle.com/otndoc/oracle9i/901_doc/appdev.901/a89852/utl_smtp.htm
    Thanks,
    Anu

Maybe you are looking for

  • Flash CS4 crashes in Mac OS X 10.6.2

    Flash CS4 began crashing immediately after upgrading to 10.6.2 on my Mac Pro with 8 GB of memory. I can open my Flash CS4 (v. 10.0.2.566) app, but when I then try to open any .fla it crashes about 2 seconds after the file finishes opening. This occur

  • IPhone3GS and icloud usage

    I've just uploaded the iOS 5 and iTunes gave me 2 error reports. Then, I dealed with this problem and upgraded to iOS5. Now, i would like to know if i am able to use iCloud with iPhone 3GS or what I can do for using it? Thank you.

  • Again about non Latin 1 characters for XE beta

    May be it is possible create beta XE universal language version? The statistic of threads shows actuality of this function for testing/education/development needs. It's not possible study/develop with XE without inserting necessary real data. It's to

  • Can you use an iphone in Haiti using a SIM card for airtime?

    Can you use a SIM card for airtime minutes in an iphone in Haiti?

  • Change in certificate validation algorithm in Adobe Reader 10.1.2

    Some experiments I have done with both Adobe Reader 10.1.1 and 10.1.2 show that their implemented algorithm vor validating the certificate of a signature is different: In all versions of Adobe Reader up to and including 10.1.1 no revocation checking