Adding new items to a Master Page and share them to existing pages

I need to include new elements of navigation on the master page and I want it appear on the pages that I have already created. I added the new elements on a layer of their own which is part of the master page, but the layer on the part of Pages... option is grayed out.


jcbluesman wrote:
> I use CS4, Jim, and here is a link to the .png
> ( http://idisk.mac.com/jconstant-Public/deimos.png
>
> The 3 tabs right on the master page are ones I am trying to
> share between existing pages. I created them in PS (also CS4), then imported
> the .psd in this FW document, if that makes a difference.
>
> Thank you,
> Jim
>
OK there are two Associates as I see it.

Each of your pages is made up of a solid, opaque, for a main image bitmap.
Master Pages, by default, are at the bottom of the layer stack. Your
tabs ARE present, you just can't see them because they are covered by
the bitmap image.

Assuming that you do not have these page images of the elements multiple objects,
where you can change the blue background, there are always two things you
can do, which are pretty easy.

Go to each page and temporarily lower the opacity of the layer 1.
Use the marquee tool to draw a selection around the area of the tabs.
Delete the selection.
Replace the lay full opacity.

OR

Try to drag the master page to the top of the layer stack in each page.
Hide or remove the master page background.
This option is a little more complicated, but I've been able to do. Expect that the
bar black to appear before you release the mouse button. You may need to try
This a few times before it works.

HTH

--
Jim Babbage-. : Community MX:. &. : Adobe Community Expert:.
http://www.communityMX.com/
CommunityMX - free resources:
http://www.communitymx.com/free.cfm
---
. : Fireworks adobe community expert:.
Adobe Community Expert
http://tinyurl.com/2a7dyp
---
. : Author:.
Lynda.com - http://movielibrary.lynda.com/authors/author/?aid=188
Peachpit Press-
http://www.Peachpit.com/authors/bio.aspx?a=d98ed798-5ef0-45A8-a70d-4b35fa14c9a4
Layers Magazine - http://www.layersmagazine.com/author/jim-babbage

Tags: Fireworks

Similar Questions

  • NewElementInHierarchy() - adding new items, gradually takes more time when adding several brothers and sisters

    With my script ESTK, users select the model numbers in the list and then the script inserts an element with a model number is entered in an attribute, an element for each selected model.

    When you add a large number of elements, each element of extra brother takes a little more then the previous item adds. Adding 250 items may take longer than 3-1/2 minutes or more. During the addition of 20, 50 or 75 items happens quickly, without any noticeable length. It is somewhere in the top 110, this is where that starts to get noticed.

    I even used $.hiresTimer and writes the value to the console for each time a model has been added. Because the timer is reset to zero (0) whenever it is called, it was easier to notice than the amount that it incremented from one element to the other got progressively bigger.

    Any ideas as to why it takes so long or reflections on what I could do to speed it up?

    The structure looks like this:

    < PartModels >
    Text < NoteText > < / NoteText >
    < model ModelNumber = "ABC01" / >
    < model ModelNumber = "ABC02" / >
    < model ModelNumber = "DEF03" / >
    < model ModelNumber = "DEF04" / >


    < model ModelNumber = 'XYZ01-A' / >
    < model ModelNumber = "XYZ * B" / >
    < model ModelNumber = "XYZ500" / >
    < / PartModels >

    The script is quite simple: scroll a selected model numbers table, add a new item for each model number and value of the attribute, the value of the model number. It's the short version:

    Function InsertModelElements (modelsToIns, insElemLoc, GVdoc) {}

    var newEleId;

    var newElemLoc = insElemLoc;

    var elemDef is GVdoc.GetNamedElementDef ("Model");.

    for (var i = 0; i < modelsToIns.length; i ++) { / / modelsToIns is the selected model range }

    newEleId = elemDef.NewElementInHierarchy (newElemLoc); //ElementLoc based on NoteText first, last, or absent

    SetAttribute (newEleId, "ModelNumber", null, modelsToIns [i]); //More feature robust to set the attribute

    / * Which also works for the layout attribute * /.

    var vattributes = newEleId.GetAttributes ();

    vattributes values [0] [0] = modelsToIns [i];

    newEleId.Attributes = vattributes;


    / * At one point, I tried to use a new location of the item to the last inserted element, no change * /.

    var newElemRange = setElementSelection (GV_doc, EleId); function that returns the range

    newElemLoc = newNewElemRange.end;

    }

    }

    Any help is appreciated.

    Sincerely,

    Trent

    Thanks Russ,

    I seriously considered trying to copy/paste and started to change the code to do it. But I could not let pass, the answer should be right there in front of me, it's all too long that I worked with this stuff, I am not able to see. Then it dawned on me what's happening.

    In a previous test, I put a timer on each action that is closed. For example, I start with a container element that has 200 children of elements, each with a specific/unique model number attribute. All the 200 existing items are deleted and then replaced with 250 new items with a different value for the attribute of model number. The timer was placed after the Element.Delete () and ElementDef.NewElementInHierarchy () methods. What I've noticed with the timer, it's that each deleted item has been removed as fast as the previous item (so it took progressively less and less time to remove an item). And of course the opposite was noted for insert items, each inserted item has taken longer than the previous inserted item.

    These elements can be inserted in two areas of the structure, one of the neighborhoods within format rules that affect the formatting and is actually a bit faster. This led me to the cause being ESD format rules. The area that takes more time has quite a few rules of extensible format that apply. Whenever an element is inserted or deleted, FrameMaker through these rules for formatting the content of elements. Given that the rules apply to the parent, first, last, next, previous, etc., FrameMaker must apply the rules of the format to all elements of the structure that the rules (which are extremely complex due to various elements, attribute values, and combinations that can be inserted).

    Removal or thinning of the FormatRules in ESD, she becomes faster. But each of the FormatRules are needed. So using app. ApplyFormatRules = false; just before that the elements are deleted and inserted works very well. But the key is to implement ApplyFormatRules return to true before remove the last element should be removed and before inserting the last element to be inserted, so it allows to scroll all the rules of format of ESD for all elements in the hierarchy of these format rules apply to. ApplyFormatRules true and assign the ElementDef until the last item works also [EleId.ElementDef = GV_doc. GetNamedElementDef (insElemType);], but only before all the other functions are performed or different items are added.

    doc. Reformat() will not reformat the content correctly after the fact, because the element has been created without the format rules, so it reformats all the contents of the elements without the format rules.

    The FDK version which was created 10 years ago had the same problem of slow operation when a large number of items have been inserted, but was still an improvement over having manually insert each item, and then type the value of the attribute, if she had lived with.

    He now works surprisingly fast. I hope that my explanation of what I think is happening, including the cause/solution, is understandable.

    Sincerely,

    Trent Schwartz

  • Select multiple PDF files and share them [iOS]

    I use adobe Acrobat reader on my iPad and I would select several files and share them. Is this possible?

    Hi davidw26200688,

    I'm sorry ts not possible to share multiple PDF files at the same time in the iPad, however as a work around you can try to send the pdf by linking them directly to your email in PDF share also share the PDF by email.

    Kind regards

    Nicos

  • How to remove a submenu menu item from a master page?

    I can't remove an item from a submenu to a menu on a master page. I don't know where or how it was created, but simply by selecting it and try to remove it, does not work...

    The submenus are generated by the structure of your site. Delete the page or disable menus with context menu. If it is not a page, to temporarily change to the structure of the site and then it return to force the Muse of discount, it could be a little problem.

  • problems of changing an item on a master page

    Hello

    I was faced with a problem all day.

    I have a large document, use multiple master pages. I want a button on one page to make an element on a master page to toggle visibility. This occurs on all pages that use the master page in question.

    So... here is my code:

    if (this.rawValue == '2') {

    this.resolveNode("#pageSet.CoreMaster.nonDis").presence = 'hidden ';

    }

    if (this.rawValue ! = '2') {

    this.resolveNode("#pageSet.CoreMaster.nonDis").presence = 'visible ';

    }

    I placed it on a radio button set that has values for 1 = no 2 = yes

    If the user selects Yes (ie the value 2) makes the field of text called ' nonDis visible - if they choose No. - He then hides it. The nonDis of the element is on the master page named CoreMaster.

    It works! Finally almost. It only works on the first page of the document. It's the visibility on all other pages (that use the master page in question) still have the text as hidden nonDis field.

    By the way, thinking it was my form (it's abig form) that was at fault, I tried another nine form but nothing that an item, but with two pages and got the same problem - hidden on the first page, but not on the second.

    I have no idea why - can anyone help?

    Thank you very much

    Sunil

    Master pages are repeatable object, they also have numbers of index as [0], [1], etc.

    Your current expression makes referring only the first instance of your master page.

    To refer to all instances, you will need a loop function.

    Member of the var = xfa.resolveNodes("#pageSet.CoreMaster[*].nonDis");

    for (var i = 0; i)< mp.length;="" i="" +="1)">

    MP. Item (i) .its presence = this.rawValue! = « 2 » ? "visible": "hidden";

    }

  • Add_List_Item to search for duplicates, adding new item in a ComboBox

    I have a list item combobox with some elements defined in the property at design time.

    I add to this, t2 is my element in its when-Valiudate-Item trigger & combobox list, I give it
    Add_List_Element ('BLOCK2.t2', 1,: BLOCK2.) T2: BLOCK2. T2);

    I can see the list is filled with the new item, but not the next when I opened this form.

    what I want is when the user enters a new item, it must re - fill my list when running and
    Update forever. so that next time I should be able to post with those added during execution.

    but before you have to check if this new value exists or not.
    If there is, then it should go forward to the next_item with out adding two copies,
    on the other
    Add the new & sort the list.

    You should respond on the realization of the value:

    declare
      ok number:= get_list_element_count( 'passenger_txn.psn_customer' ) ;
      bFound BOOLEAN:=FALSE;
    begin
      for i in 1.. ok loop
        -- this might also be get_list_element_label, you have to check
        IF get_list_element_value( 'passenger_txn.psn_customer', i ) = :passenger_txn.psn_customer Then
          bFound:=TRUE;
          exit ;
        End if ;
      end loop ;
      IF NOT bFound THEN
        Add_List_Element('psn_customer',1, :psn_customer,:psn_customer);
      END IF;
    end;
    
  • added new line in the same page

    Can someone give me the code to add a new line in the same page itself. If we click on Add button a new line should come to the table.

    Thanks in advance

    Hello

    invoke a method in AM on click of a button

    Public Sub addrows()
    {
    Vo1 AddressesVOImpl = getAAddressesVO1();
    Row1 AddressesVORowImpl = (AddressesVORowImpl) vo1.createRow ();
    VO1.insertRowAtRangeIndex(0,row1);
    VO1.setCurrentRow (row1);
    }

    Thank you
    Gerard

  • MySQL Sytax error with master pages and details

    Master and detail pages.
    I get a SQL error when I click on an item in the master page.
    "You have an error in your syntax SQL; "check the manual corresponding to your version of the MySQL server for the right syntax to use near 'ID = 16 LIMIT 0, 10' at line 1"
    If I try to open the details page, I get
    "You have an error in your syntax SQL; "check the manual corresponding to your version of the MySQL server for the right syntax to use near 'ID = - 1 LIMIT 0, 10' at line 1"
    I created this pair by clicking on insert/object / master details page.
    I tried this several ways, but always get the same result.
    Is there a bug in CS3?

    Sorry that I have solved it myself.
    I accidentally put a space in a header of table in the mySQL database.
    Everything works fine now.

  • How to remove master page with script elements

    I want to remove items from the master page with script

    app.activeDocument. masterPageItems.remove ();

    and there are items on the master page to remove all the and I want to create a new one (rectangle frame or text)

    Try this,

    var myDoc = app.activeDocument;  
    
    for(var i=0; i< myDoc.masterSpreads.length; i++)
    {
        for(var j=myDoc.masterSpreads[i].pageItems.length-1; j>=0 ; j--)
        {
            myDoc.masterSpreads[i].pageItems[j].remove()
        }
    }
    

    Vandy

  • Problem when adding new column on table with report form

    Hello

    I have a form on table (either emp) with report(select_empno,ename,job_from_emp).i have insert, update, delete operations on the table.

    Now I added a new column DOB for alteration report emp.i sql query to show the new column altered report.i insert process (Block anonymous plsql) to insert this column too all by creating a new row.but the problem is with update.i am not able to find how to upgrade this new column while doing the update to line level.

    pls let me know if you can give some ideas on this.


    Kind regards
    CK

    Well, sorry for sounding terse.

    I have a few questions.

    Have you added the item to the form page and associated with the database column?
    You use your own PL/SQL page process to update or do you use the 'row emp process' process produced auto?
    If it's your own please send the code with the word {noformat}

    {noformat} (with the curly brackets and in lower case) above and below it. Your code should be formatted like this once you've hit post message:
    

    BEGIN

    NULL;

    END;

    Cheers
    
    Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    
    
  • 'Room for the heads side' on the Master Pages does not not on body pages.

    In a new document, I created master pages, each with a text frame type of the "model for Page body text, frame 'each with the same tag stream."

    For each block of text, I enabled property of "heads of Lounge next door.

    When I apply master pages to the body of the document (Format > Page Layout > Master Page use > Use Master Page: > Apply), the property of "heads of salon for side" disappears.

    Does anyone know why my text frames do not follow the format of applied master page?

    I use Framemaker 11.

    > For each block of text, I enabled property of "heads of Lounge next door.

    If I remember a recent discussion, you must enable that via:

    Format > Page layout > column layout

    [*] The heads side room

    and it is a document, not just for chosen setting the Master Pages.

  • NEW to InDesign CC, create Pages master, why can I not handle my pages once I have add the master page to it? Don't let me select anything, I went several times and he can't understand it please help?

    When I create master pages and apply the file appears to hang and allow me to do anything to my account. Does anyone know why this would happen, I am sure that his and retouch.

    The nature of the InDesign templates which is the master items can be modified on the pages of the document.  Master page items can be unlocked on the pages of a document (shift-command on a mac), but recommended is to avoid doing this.

    A little more information about your planned workflow will help us to offer new suggestions on how to better reach your goals.

  • The page master, menu and images... why the menu disappear when adding an image full screen?

    Hi all

    I use the widget Menu Muse on the single page Master on the site, but disappears from menu to a page where I placed an image "full screen".  Is there a 'picture-holder' that I could use and still have Visual and using the menu? (hope that makes sense).

    Go to your master page open the "Layers" Panel, create a new layer above all others and drag the entries in the layer of everything on that menu. This works, because the layers are not confined to a single page (master), but work across the site.

  • Master Page Items question: I use master pages for a 60 page document and just found out that some of my master page items are multiplying! There are some boundaries on the pages and some of them are constantly a quantity apparently endless on top of e

    Master Page Items question: I use master pages for a 60 page document and just found out that some of my master page items are multiplying! There are some boundaries on the pages, and some of them are constantly a quantity apparently without end on top of the other. For example, I replace to change the color of the border and notice a black there's below him so I deleted the extra and there is another and another and another... EEK. I can easily hide them, BUT I fear they will lead to complications in the case of pre-press printing. What is the cause? What can I do to prevent it? How can I get rid of the stack-up?

    It's always haapening, if you substitute any element on the page and later master you reapply the same or another master. I would NEVER say to replace any itme master page in the page. Instead create another master based on the first, make the substitutions and apply this master. Substitutions on the pages should be avoided in all cases, not only for the problem you described above, other issues of accessibility will also come into play.

  • How to create the new page in the master page and make reference to the reference text framework previous page id?

    I have problem to apply/create an element of the master page and how to run the previos page text block to create the page text

    InterfacePtr<IPageSetupPrefs> iPageSetupPrefs (,static_cast<IPageSetupPrefs * > (:QueryPreferences() IID_IPAGEPREFERENCES, docRef)));

    if (iPageSetupPrefs is nil) {

    Assert (iPageSetupPrefs);

      break

    }

    InterfacePtr<ICommand> iNewPageCmd (CmdUtils:kNewPageCmdBossCreateCommand());

    if (iNewPageCmd is nil) {

    Assert (iNewPageCmd);

      break

    }

    InterfacePtr<IApplyMasterCmdData> iApplyMasterCmdData (iNewPageCmd, IID_IAPPLYMASTERCMDDATA );

    if (iApplyMasterCmdData is nil) {

    Assert (iPageCmdData);

      break

    }

    InterfacePtr<IPageCmdData> iPageCmdData (iNewPageCmd,UseDefaultIID());

    if (iPageCmdData is nil) {

    Assert (iPageCmdData);

      break

    }

    Int32 numPagesToInsert = 1;

    PMRect pageSizeRect = iPageSetupPrefs->GetPageSizePref();

    Int32 pos = iPageCmdData->GetNewPageInsertPosition();

    ISpreadGeometry InterfacePtr<IGeometry> (spreadList->QueryNthSpread(0));

    if (iSpreadGeometry is nil) {

    Assert (iSpreadGeometry);

      break

    }

    spreadUIDRef =:GetUIDRef(iSpreadGeometry);

    PMRect dfltPMRectPageSize = iPageSetupPrefs->GetPageSizePref();

    PMReal pageWidth is dfltPMRectPageSize. Right () - dfltPMRectPageSize. Left ();

    PMReal pageHeight is dfltPMRectPageSize. Bottom () - dfltPMRectPageSize. Back to top ();

    PMRect usrDefPMRectPageSize (0, 0, pageWidth, pageHeight);

    K2Vector< PMRect> pageBoundingBoxes;

    for ( int32 i = 0; i < numPagesToInsert; ++ i) {

    pageBoundingBoxes. push_back (usrDefPMRectPageSize);

    }

    iPageCmdData->SetNewPageCmdData(spreadUIDRef, numPagesToInsert, pos +1, & pageBoundingBoxes, nil);

    / / CreateSpreadFromSpread (docRef, spreadUIDRef);

    InterfacePtr<IBoolData> iBoolData (iNewPageCmd,UseDefaultIID());

    if (iBoolData is nil) {

    Assert (iBoolData);

      break

    }

    bool16 allowShuffle;

    if (this->GetShufflePref(allowShuffle, docRef) iskFailure) {

      break

    }

    iBoolData->Set(allowShuffle);

    CmdUtils:ProcessCommand(iNewPageCmd);

    Above code, able to create a page but the problem in applied master page?

    Using document Pages face?

    I think that your posToInsertAt for IPageCmdData::Set is incorrect.

    If the doc does not have facing Pages, posToInsertAt = 1;

    If doc is facing Pages and page insertion is the left-hand Page, posToInsertAt = 2;

    If doc is facing Pages and insert page is the right Page, posToInsertAt = 1;

    posToInsertAt = spread-> GetNumPages();

    newDocCmd and newDocCmdData are not used, you can delete these.

Maybe you are looking for

  • Upgrade my computer to 10/100/1000

    Is it possible to upgrade my computer to 10/100/100?   My computer's desktop HP p2 - 1317c. If possible, what RJ45 plug would you recommend?

  • Printing without Word?

    At work, we have a program on a computer that doesn't have a word but is a Windows 7 operating system.  I want to plug in a USB key and print some documents from her but don't know if I can without Word.  I don't want to lose anything either upward l

  • application 0xc0000002 error

    -Hi, -J' have a HP laptop, works on windows vista Home premium for the time that I bought his new 2 years Sunday as I turn and see these windows as "I get this error code: SynTPEnh.exe - request" Application failed to initialize properly (0xc0000022)

  • How can I change the settings so that when I delete a file, it asks me to confirm

    I just got a new computer with Windows 8. I have not changed the settings, if its because it has been implemented. When I have a file, such as an e-book, if I want to delete, I'm used to by clicking on the delete key, then a box saying to come to con

  • &lt; P &gt; styling

    HelloCould someone help me understand how to make the paragraph styles different? I would like to have a few paragraphs with left justification, different fonts, etc in the same page. I can easily style h1, 2, 3, 4 etc, but cannot apply tags what dif