Is it possible, to use a Keynote background in another theme?

I'm using Keynote 6.5 under Yosemite and would like to use the "Industrial" theme for one of my presentations but with the background from the "Chalkboard" theme. Is there an (preferably easy) way to do this?
Additional information: I know I can change the background image by editing the master slides. So really, my problem is, I can't find the location where Keynote stores the background images. I fear, they are stored within the Standard.kth and Wide.kth Keynote theme files for standard and wide presentations respectively.

I just found out that with my approach described above, Keynote doesn't recognize the pasted content as Title and Body elements so that they can be changed only by editing the master slide. Apparently, I was a little rash here.
What worked for me in the end was to open two new presentations, one with the "Industrial" theme and one with "Chalkboard", and go through all master slides, pasting the text styles from "Industrial" into "Chalkboard". To copy text styles in Keynote, use  cmd+alt+c and to paste it back in, use cmd+alt+v.
After that, I only had to adjust the style of bulleted lists manually.

Similar Messages

  • Is it possible to use the moving background in versions search as my default background?

    Hi,
    Is it possible to use the moving background in versions search as my default background?
    Thanks!
    lenms

    I just found out that with my approach described above, Keynote doesn't recognize the pasted content as Title and Body elements so that they can be changed only by editing the master slide. Apparently, I was a little rash here.
    What worked for me in the end was to open two new presentations, one with the "Industrial" theme and one with "Chalkboard", and go through all master slides, pasting the text styles from "Industrial" into "Chalkboard". To copy text styles in Keynote, use  cmd+alt+c and to paste it back in, use cmd+alt+v.
    After that, I only had to adjust the style of bulleted lists manually.

  • Is it possible to use the same calculations in another frame. Or maybe another solution.

    Hello everyone.
    Sorry to bother you again. As you have probably have seen before  I am working on a calculator. I ran into another problem as i want to add some more features to the calculator i already made.
    The problem is this:
    I have included a checkbox. That checkbox has to enable and disable a drop down box and 2 sliders. And when they are enabled they
    have to make a 2nd calculation beside the 1st calculation. But they need to use parts of the 1st calculation. How can i implement
    this without messing with the first script?
    I tried to make the long script easier readable with the colors. I hope someone can help.
    import fl.controls.ComboBox
    import fl.controls.Slider
    import fl.controls.DataGrid
    import fl.controls.dataGridClasses.DataGridColumn
    import fl.data.DataProvider
    var levelArray:Array=new Array("disastrous","wretched","poor","weak","inadequate","passable","solid","excellent"," formidable","outstanding","brilliant","magnificent","worldclass","supernatural","titanic", "extra-terrestrial","mythical","magical","utopian","divine")
    var trainingArray:Array=new Array("Goalkeeping","Defending","Defensive Positions","Crossing","WingAttack","Playmaking","Scoring","Shooting","Short Passes","Through Passes","Set Pieces")
    var trainingBase:Array=new Array(3.0206,5.4824,10.9648,3.2341,5.3902,4.6613,4.8536,8.0893,4.2989,5.0575,0.9938)
    // years slide
    yearsSb.addEventListener(Event.CHANGE,onYearsChange)
    // days slide
    daysSb.addEventListener(Event.CHANGE,onDaysChange)
    // Current skill slide
    skillminSb.addEventListener(Event.CHANGE,onMinSkilChange)
    // To skill slide
    skillmaxSb.addEventListener(Event.CHANGE,onMaxSkilChange)
    // sublevel slide
    subSb.addEventListener(Event.CHANGE,onSubChange);
    // coach slide
    coachSb.addEventListener(Event.CHANGE,onCoachChange)
    // assistans slide
    assSb.addEventListener(Event.CHANGE,onAssChange)
    // intensity slide
    intensitySb.addEventListener(Event.CHANGE,onIntensityChange)
    // stamina slide
    staminaSb.addEventListener(Event.CHANGE,onStaminaChange)
    for (var i=0;i<trainingArray.length;i++){
              trainingCb.addItem({label:trainingArray[i], data:trainingBase[i]})
    trainingCb.addEventListener(Event.CHANGE,changeEvent)
    trainingCb.selectedIndex=0
    // datagrid
    //dg.columns = ["Week", "Skill", "Length", "Age" ];
    var weekCol:DataGridColumn=new DataGridColumn()
    weekCol.dataField="Week"
    weekCol.sortOptions = Array.NUMERIC;
    weekCol.width=50
    dg.addColumn(weekCol)
    var skillCol:DataGridColumn=new DataGridColumn()
    skillCol.dataField="Skill"
    skillCol.width=150
    skillCol.sortOptions = Array.NUMERIC;
    dg.addColumn(skillCol)
    var lengthCol:DataGridColumn=new DataGridColumn()
    lengthCol.dataField="Length"
    lengthCol.width=75
    dg.addColumn(lengthCol)
    var ageCol:DataGridColumn=new DataGridColumn()
    ageCol.dataField="Age"
    ageCol.width=75
    dg.addColumn(ageCol)
    // variables
    var years:Number
    var days:Number
    var yearsFactor:Number
    var level:Number
    var subLevel:Number
    var levelFactor:Number
    var trainingFactor:Number
    var coachFactor:Number
    var assistentsFactor:Number
    var intensity:Number
    var stamina:Number
    var weeks:Number
    var skillUp:Number
    var baseLevel:Number
    var newLevel:Number
    var skillDown:Number
    // initialise graph mc
    var graphMc:MovieClip=new MovieClip()
    graphMc.x=80
    graphMc.y=760
    for(i=0;i<levelArray.length;i++){
              var skilLab:skillLabel=new skillLabel()
              skilLab.txt.text=levelArray[i]
              skilLab.name="sl"+i
              skilLab.x=30
              var graphPoint:point=new point()
              graphPoint.name="gp"+i
              graphMc.addChild(skilLab)
              graphMc.addChild(graphPoint)
    addChild(graphMc)
    // events
    function onYearsChange(e){
              yearsVal.text=yearsSb.value.toString()
              calc()
    function onDaysChange(e){
              daysVal.text=daysSb.value.toString()
              calc()
    function onMinSkilChange(e){
              skillValMin.text=levelArray[skillminSb.value-1]
        if (skillminSb.value > skillmaxSb.value) skillminSb.value = skillmaxSb.value;
        calc()
    function onMaxSkilChange(e){
              skillValMax.text=levelArray[skillmaxSb.value-1]
              if (skillmaxSb.value < skillminSb.value) skillmaxSb.value = skillminSb.value;
              calc()
    function onSubChange(e){
              subVal.text=((subSb.value)/10).toString()
              calc()
    function onCoachChange(e){
              coachVal.text=levelArray[coachSb.value-1]
              calc()
    function onAssChange(e){
              assVal.text=assSb.value.toString()
              calc()
    function onIntensityChange(e){
              intensityVal.text=intensitySb.value.toString()
              calc()
    function onStaminaChange(e){
              staminaVal.text=staminaSb.value.toString()
              calc()
    function changeEvent(e){
              calc()
    calc()
    function calc(){
              years=yearsSb.value
              days=daysSb.value
              level=skillminSb.value
              subLevel=subSb.value/10
              skillDown=skillmaxSb.value-1
              yearsFactor=Math.pow(1.0404,years+days/112-17)
              levelFactor=-1.4595*Math.pow((level+subLevel)/20,2)+3.7535*(level+subLevel)/20-0.134 9
              trainingFactor=trainingBase[trainingCb.selectedIndex]
              coachFactor=1+(7-Math.min(coachSb.value,7.5))*0.091
              assistentsFactor=1+(1.041392685-(Math.log(assSb.value+1))*Math.LOG10E)*0.2749
              intensity=1/(intensitySb.value/100)
              stamina=1/(1-staminaSb.value/100)
              weeks=yearsFactor*levelFactor*trainingFactor*coachFactor*assistentsFactor*intensity* stamina
              weeks=Math.max(weeks,1)
              skillUp=1/weeks
              baseLevel=level+subLevel
              newLevel=baseLevel
              var dosta:Boolean=false
              var weeksNo:Number=0
              var weeksCount:Number=0
              var dp:DataProvider=new DataProvider()
              while(!dosta){
                        weeksNo++
                        weeksCount++
                        days+=7
                        if(days>111){
                                  years++
                                  days=days-112
                        reCalc()
                        newLevel+=skillUp
                        if((newLevel-level)>=1){
                                  dp.addItem({ Week: weeksNo, Skill: (Math.floor(newLevel))+"-"+levelArray[Math.floor(newLevel)-1], Length:weeksCount+" weeks", Age:years+"y "+days+"d" })
                                  level++
                                  weeksCount=0
                        if((newLevel-skillDown)>=1){
                                  dp.removeItem({ Week: weeksNo, Skill: (Math.floor(newLevel))+"-"+levelArray[Math.floor(newLevel)-1], Length:weeksCount+" weeks", Age:years+"y "+days+"d" })
                                  level++
                        if(newLevel>=20 || years>=31){
                                  dosta=true
              dg.dataProvider=dp
              drawGraph(dp)
    function reCalc(){
              yearsFactor=Math.pow(1.0404,years+days/112-17)
              levelFactor=-1.4595*Math.pow(newLevel/20,2)+3.7535*newLevel/20-0.1349
              weeks=yearsFactor*levelFactor*trainingFactor*coachFactor*assistentsFactor*intensity* stamina
              weeks=Math.max(weeks,1)
              skillUp=1/weeks
    function drawGraph(dp){
              if(dp.length>0){
                        var lastRow=dp.getItemAt(dp.length-1)
                        var weekNo:Number=parseInt(lastRow.Week)
                        var topSkill:Number=parseInt(lastRow.Skill)
                        var firstRow=dp.getItemAt(0)
                        var baseSkill:Number=parseInt(firstRow.Skill)-1
                        var skillH=300/(topSkill-baseSkill)
                        var weekW=450/weekNo
                        graphMc.graphics.clear()
                        // draw greed
                        graphMc.graphics.lineStyle(2,0xffffff)
                        graphMc.graphics.moveTo(50,0)
                        graphMc.graphics.lineTo(50,300)
                        graphMc.graphics.lineTo(500,300)
                        graphMc.graphics.lineStyle(1,0xcccccc)
                        for (i=0;i<weekNo+1;i++){
                                  graphMc.graphics.moveTo(50+(450/weekNo)*i,0)
                                  graphMc.graphics.lineTo(50+(450/weekNo)*i,300)
                        for (i=baseSkill;i<=topSkill;i++){
                                  graphMc.graphics.moveTo(50,300+baseSkill*skillH-skillH*i)
                                  graphMc.graphics.lineTo(500,300+baseSkill*skillH-skillH*i)
                        // draw line
                        graphMc.graphics.lineStyle(2,0xff0000)
                        graphMc.graphics.moveTo(50,300)
                        for(i=0;i<dp.length;i++){
                                  var r=dp.getItemAt(i)
                                  var s=parseInt(r.Skill)
                                  var w=parseInt(r.Week)
                                  graphMc.graphics.lineTo(50+w*weekW,300+baseSkill*skillH-s*skillH)
                        for(i=0;i<levelArray.length;i++){
                                  var sl=graphMc.getChildByName("sl"+i)
                                  sl.y=300-skillH*(i-baseSkill+1)
                                  if(sl.y<0 || sl.y>300){
                                            sl.visible=false
                                  }else{
                                            sl.visible=true
                                  var gp=graphMc.getChildByName("gp"+i)
                                  if(i<baseSkill || i>=topSkill){
                                            gp.visible=false
                                  }else{
                                            r=dp.getItemAt(i-baseSkill)
                                            s=parseInt(r.Skill)
                                            w=parseInt(r.Week)
                                            gp.visible=true
                                            gp.txt.text=r.Age
                                            gp.txtW.text=r.Week+" w"
                                            gp.y=300-skillH*(i-baseSkill+1)
                                            gp.x=50+w*weekW
    /* Click to Go to Scene and Play
    Home.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene);
    function fl_ClickToGoToScene(event:MouseEvent):void
    removeChild(graphMc);
    //remove graphMc listeners, if there are any
    graphMc=null;
              MovieClip(this.root).gotoAndPlay(1, "Scene 1");
    stop();

    Thanks for the pointer.
    Ill try to explain better. In the calculator i want to include a checkbox that include the sliders and combobox that are wrote below.
    Also when the checkbox is selected there should be a 2nd calculation like the first one and also the output should be shown next to
    the 1st calculation. But this time the calculation should respond to the sliders and combobox that are included with the checkbox.
    // Current skill slide
    skillmin1Sb.addEventListener(Event.CHANGE,onMinSkilChange)
    // To skill slide
    skillmax1Sb.addEventListener(Event.CHANGE,onMaxSkilChange)
    for (var i=0;i<trainingArray.length;i++){
              training1Cb.addItem({label:trainingArray[i], data:trainingBase[i]})
    training1Cb.addEventListener(Event.CHANGE,changeEvent)
    training1Cb.selectedIndex=0

  • Is it possible to use a seperate form inside another form?

    Hello-
    Creating a new hire vibe process. This process has many components, most of which only new hires need to complete. But there are other areas where both new hires and existing employees may need to complete. Completing a dental insurance application is an example. I currently have a dental insurance form, and a new hire form. Is it possible to add the dental insurance form within the new hire form? Under Layout Options I see an option for Form. I added it to my new hire form but it did not work
    Thanks
    Craig

    Craigcia,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Is it possible when using the markup tools to make them locked in position?

    I am using Acrobat 8 Pro and my boss wants to be able to draw on a PDF. which is fine when he uses the markup tools provided, the only problem is that when he has to draw something that starts and ends on a existing markup it selects the markup and moves it. Is there anyway to make it so that a selection tool has to be engaged before something can be selected, instead of automatically being able to select things once the cursor it brought over it. Thanks

    If you save the document manually as a PSD file in Phtoshop not from within an Action, Script, Plugin or Droplette.  You may be able to write a Photoshop that would do as save as Jpeg,  And you should be able trigger its execution by setting up a Script Save event using the Script event manager.  When You do a manual save  the script should be triggered.  I wrote may be able to for I have never tried to write that script or set up a Script Manager Save event.  I have only use open events.

  • How to use CL_GUI_ALV_GRID in background run

    Hi expert,
    is possible to use CL_GUI_ALV_GRID in background run?
    Usually I do a call screen and I put the set_table_for_first_display method in the PBO.
    How I can use the ALV GRID in a background run?
    Moderator message: please search for information and try yourself before asking.
    Edited by: Thomas Zloch on Jul 11, 2011 10:17 AM

    Hi,
    Check out standard examples in SAP by passing BCALV* & pressing F4 in SE38.
    Regards,
    Amit
    Reward all helpful answers.

  • Change Desktop background from another account ?

    Hi Guys,
    Just wondering if it's possible to change a desktop background from another account on the same machine.
    I'm running 10.6.8, and there's no particular reason for doing this at present, but we do have a couple of work machines where the user has been restricted from making changes to the machine, and it'd be easier to do this from the administrator account.
    Also, is it possible to change a desktop background via Apple's remote desktop?
    Thanx in advance.

    This same thing happens to me, and while not the end of the world, it is defintely annoying.  Have you figured it out?  Thanks!

  • How to use an Object Type from Another Database

    Hi,
    I have this requirement that I need to call a stored procedure from another DB (db1) but I am having a problem with this because one of the input parameters uses an object type defined in that DB (db1). Is it possible to use an object type from another database? TIA!

    Sven W. wrote:
    At least for queries, but I think also for procedure arguments..You (both) probably missed my post?
    We can't use a remote type as procedure argument, even with the same OID.
    It's OK for query on a remote object column though :
    SQL> conn remote_user@remote_db
    Entrez le mot de passe :
    Connecté.
    SQL> create type mytype oid '19A57209ECB73F91E03400400B40BBE3'
      2  as object (att1 number);
      3  /
    Type créé.
    SQL> create table mytable (col1 mytype);
    Table créée.
    SQL> insert into mytable values (mytype(777));
    1 ligne créée.
    SQL> create or replace function myfunc (p_in in mytype) return number
      2  is
      3  begin
      4   return p_in.att1;
      5  end;
      6  /
    Fonction créée.
    SQL> disconn
    Déconnecté de Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    SQL>
    SQL>
    SQL>
    SQL>
    SQL> conn my_user@local_db
    Entrez le mot de passe :
    Connecté.
    SQL> create type mytype oid '19A57209ECB73F91E03400400B40BBE3'
      2  as object (att1 number);
      3  /
    Type créé.
    SQL> select * from mytable@test_dbl;
    COL1(ATT1)
    MYTYPE(777)
    SQL> declare
      2   res number;
      3  begin
      4   res := myfunc@test_dbl(mytype@test_dbl(777));
      5  end;
      6  /
    res := myfunc@test_dbl(mytype@test_dbl(777));
    ERREUR à la ligne 4 :
    ORA-06550: Ligne 4, colonne 26 :
    PLS-00331: référence non valide à REMOTE_USER.MYTYPE@TEST_DBL.WORLD
    ORA-06550: Ligne 4, colonne 2 :
    PL/SQL: Statement ignored
    SQL> declare
      2   res number;
      3  begin
      4   res := myfunc@test_dbl(mytype(777));
      5  end;
      6  /
    res := myfunc@test_dbl(mytype(777));
    ERREUR à la ligne 4 :
    ORA-06550: Ligne 4, colonne 9 :
    PLS-00306: numéro ou types d'arguments erronés dans appel à 'MYFUNC'
    ORA-06550: Ligne 4, colonne 2 :
    PL/SQL: Statement ignored

  • Is it possible to get a black background when using Picture Book layout in iphoto?

    I want to customize the layouts more in iphoto--either be able to use a black background when using the Picture Book layout, or have more layout options in the Photo Essay layout.  Are either of these possible?
    Thanks!

    Yes.

  • Is it possible to advance a Keynote presentation (running on iPad) using a bluetooth keyboard?

    Hello, I figure I must be doing something wrong, as this is such an obvious feature.
    I have a bluetooth keyboard controlling my iPad. I have Keynote on that iPad. Is it possible to hit RIGHT on the keyboard causing my presentation to advance one slide?
    This is driving me nuts.
    Failing this, is it possible to use Keynote remote on iPhone to control an iPad presentation?
    I've convinced my bosses to use & buy keynote/ipads and now I'm panicing.
    Presentation tomorrow!!

    Keynote Remote for iOS (see App store)

  • Is it possible to use Mac's Bluetooth and emulate a phone ?

    Does anybody know if it is possible to use the Mac and have the Bluetooth interface emulate a phone? Doesn't matter that much which phone model/type.
    Background: I have a Nokia 6021, it has a Bluetooth interface and it pairs properly with the Mac. I can browse the phone and backup all addresses from it. No problem.
    Now I have a new car, the Toyota Prius 2006, which has a Bluetooth connecting and functions as a headset for the phone, No problems either.
    But then the Prius has it's own dictionary of addresses and phone numbers, which it can use via the fast select function, and you can fill them from the phone. No problem, except for one thing: the Nokia is only able to sent one phone number at the time and to do so the coneection has to be broken, re-established, sent it, broken, re-established, and then one number is done. I did the most urgent ones, but for more then 200 numbers in my phone.... Pwoeiwie....
    The problem is that Nokia does one at the time, I checked, no other possibility. A thought came to my mind to connect the Mac, use iSync, etc. But the Prius only accepts a device which identified itself as a phone.
    Anyone knows if this can be done, and if yes wants to tell me? Please do so, thanks in advance for heaving read this!
    Regards,
    Wim.

    Hi Julian,
    I'm not exactly sure how to interpret your question. Let me try:
    1. As a user, you set the car in receive mode. At that point you can sent an address or a bulk of addresses. But the phone only sends one at the time. I checked with Nokia, they confirmed it just cannot do it otherwise.
    2. If you ask for the message format or the technical data structure, it works when I sent the address as a "Business Card" from the phone to the car.
    3. This is not yet relevant because the car yet refuses to connect because the Mac is not seen as a phone....
    Regards,
    Wim.

  • Is it possible to use that in the Alert????

    Dear all,
    We have a table XTR_BOND, so i want whenever the user enter any value to get that record by anevent alert(After insert for that table)
    so is it possible to use it like that???
    select t.bond_issue_code, t.DESCRIPTION
    into &bond_issue_code, &DESCRIPTION
    from XTR_BOND_ISSUES t
    where rowid = :rowid
    Kindly help,
    Thanks in advance
    Regards....Ashraf

    BANNER
    Oracle Database 11g Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE     11.2.0.1.0     Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production The stored procedure adds a row to a table. There's a trigger on this table that fires when this occurs. This trigger uses DBMS_SCHEDULER to run a job. This job executes a C executable program on a remote server. When the C program finishes, it updates a field in a table in the database (using OCI driver) indicating the job is complete. The stored procedure needs to see this flag has been set showing the job is complete in order to continue.
    In a nutshell, the C program produces a lot of other results, and the stored procedure retrieves these results to send back to the calling java program. Of course, it must wait until the results are ready in the database before retrieving them.
    I'm a total newbie here (maybe there's a better way). I'd like to avoid polling if possible, thus my interest in DBMS_ALERT. I haven't been able to find clear, simple, and complete example online. I think often most discussion online give snippets that assume background knowledge.
    Edited by: tem on Apr 12, 2012 4:46 PM

  • Is it possible to remove yellow text background in the entire document?

    I have the same problem as the one that is mentioned here:http://forums.adobe.com/message/1155089 In my case the yellow background is already in the pdf-file which was created with a virtual pdf printer and then manipulated with another pdf-editor.  I noticed accidentally that it is possible to remove the yellow background in Acrobat Pro as if I'd edit an object. Getting rid of it on each page by hand would be a daunting task. Is it possible to do this somehow with the entire document? All help would be much appreciated.
    cheers
    Btw: The yellowish background does not appear in other pdf viewers.

    I'll try to describe the process but the exact numbers will depend on your document - as I said earlier when I ran a test of your file I got 3.4%, but you may not.
    Your file has a mixture of color spaces (CMYK/RGB/etc.) and so you must first run the Convert Colors tool from the Print Production Panel to get everything into a consistent space, or Preflight will choke. Run the default profile to convert to the SWOP v2 profile.
    Open the Output Preview tool from the Print production Panel and hover over one of the yellow areas, write down the percentage of yellow. Hopefully nothing else in the document will have the same percentage.
    Now open Preflight from the Print Production Panel, switch to the Single Checks tab.
    Open the Options menu, choose "Create new Preflight Check".
    Name it "yellow boxes" and apply it to "Page contents" and "Current file".
    Select the Colors group and pick "object uses Yellow with a percentage of..." - press ADD.
    Configure it with "Equal to" and your percentage (no % sign)
    Click OK, then switch to the Single Fixups tab.
    Options menu > Create new Preflight Fixup
    Name it "move yellow  to layer"
    Choose the Layers category, "Put objects on layer" and press ADD
    In the "Objects identified by a check" dropdown, select your "yellow boxes" check.
    In the Layer name field, type "yellow boxes"
    Click OK, then click the Fix button to run it.
    You'll get a message to save/close and reopen the file.
    When you do, (hopefully) all your yellow boxes will now be in their own layer.
    Open the layers navigator on the left side of Acrobat's window and turn off the eyeball for that layer.
    Print

  • Is it possible to use page-scope beans in value expression ?

    Is it possible to use page-scope beans in value expressions ?
    For example,
    <c:forEach items="${DataScreens.records}" var="record" status="status">
    <tr>
      <td><h:command_link action="#{DataScreen.editRecord}">
                    <h:output_text value="#{DataScreen.modifyLabel}" />
                   <!----- PLEASE NOTE THAT status IS OF PAGE-SCOPE IN THE NEXT LINE -->
                   <f:parameter name="id" value="#{status.count}" />
              </h:command>
      </td>
      <td>...</td>
      <td>...</td>
    </tr>
    </c:forEach>In my case, I want to use JSTL instead of <h:dataTable>, because of some special
    requirements in this screen. Can someone please provide me with a workaround ?
    I get the following error on execution..
    12/26/03 16:36:23:734 JST] 59f0302f FacesArraySuf W com.sun.faces.el.ext.FacesA
    rraySuffix Attempt to apply the "." operator to a null value
    [12/26/03 16:36:23:736 JST] 59f0302f FacesArraySuf W com.sun.faces.el.ext.FacesA
    rraySuffix Attempt to apply the "." operator to a null value
    [12/26/03 16:36:23:756 JST] 59f0302f WebGroup E SRVE0026E: [Servlet Error]-
    [Argument Error: One or more parameters are null.]: javax.servlet.jsp.JspExcepti
    on: Argument Error: One or more parameters are null.
    at com.sun.faces.taglib.BaseComponentTag.doEndTag(BaseComponentTag.java:
    961)
    at com.sun.faces.taglib.html_basic.Command_LinkTag.doEndTag(Command_Link
    Tag.java:222)
    at org.apache.jsp._meisaiJoho._jspService(_meisaiJoho.java:365)
    at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.j
    ava:89)
    Thanks,
    Ajay

    Hello Ajay,
    I cant really understand how a particular style can be applied to only an individual column.In the simplest case the attribut 'columnClasses' of data_table contains
    the same number of style classes as you have columns in your table. These
    classes are then applied one to one to the columns.
    If there are fewer classes than columns then you can think of the classes
    beeing repeated until there is one class for each column. In the extreme
    case of only one class this means that this class is applied to all columns.
    The following example shows the simplest case of three columns
    and three classes. Just remove one or two classes from the columnClasses
    attribute to see the 'repeating' behavior.
    Wolfgang Oellinger
    <%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
    <%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
    <% session.setAttribute("PersonList", new foo.PersonList()); %>
    <f:view>
    <html>
    <head>
        <title>Styled Data Table</title>
        <style>
         /* for the columns */
            .nameClass { width: 30em; color: red; }
            .birthdayClass { width: 12em; color: green; background-color: #ccc; }
            .heightClass { width: 5em; color: blue; }
         /* for the header */
            .yellowClass { background-color: yellow; }
        </style>
    </head>
    <body>
      <h:form>
      <h3>Styled Data Table</h3>
      <h:data_table columnClasses="nameClass,
                                   birthdayClass,
                                   heightClass"
                            style="border: 1px solid black;"
                      headerClass="yellowClass"
                            value="#{PersonList.members}"
                              var="person">
        <h:column>
          <f:facet name="header"><h:output_text value="Name"/></f:facet>
          <h:output_text value="#{person.name}"/>
        </h:column>
        <h:column>
          <f:facet name="header"><h:output_text  value="Birthday"/></f:facet>
          <h:output_text value="#{person.birthday}"/>
        </h:column>
        <h:column>
          <f:facet name="header"><h:output_text  value="Height"/></f:facet>
          <h:output_text value="#{person.height}"/>
        </h:column>
      </h:data_table>
      </h:form>
    </body>
    </html>
    </f:view>

  • Is it possible to use a masked layer to mask another layer?

    Hi there,
    I'm relatively new to Fireworks after coming from an Illustrator background
    I've just started playing with the masking features of Fireworks and wanted to know if it was possible to use a layer that already has a mask applied as a further mask on another layer.
    Basically, I have a rounded rectangle that I am using as a canvas to hold a series of vector circles. Circles that fall outside the rectangle are naturally clipped due to the mask.
    I then want to use these clipped circles as a mask for a series of photos that also lie within the rounded rectangle.
    I suppose I could simply cut up the circles to ensure that they are within the rectangle, but this would not allow me to resize them in future should I want to alter the design.
    In Illustrator I could use a clipping mask to achieve the required effect, which would basically clip all the layers beneath, but in Fireworks I'm not sure what to do.
    Any ideas or different approaches would be appreciated!
    Cheers,
    Tim

    Between the ability to select thumbnails in the Layers panel, and occasional use of Select > Subselect, you've actually got pretty good options for editing a simple mask. Once you start nesting them, though, you'll probably have to ungroup.
    The cool thing is, you've got options for nesting masks and working non-destructively. And grouping and ungrouping isn't a big deal, particularly if you remember the shortcuts for it (Command-G and Shift-Command-G). On the other hand, it might be nicer if Fireworks offered the ability to "unfurl" a group or a mask via an arrow, while still seeing the full effect of the mask.
    I just tried out my earlier symbol suggestion and realized that while one can apply a mask to a symbol instance, it may not be possible to apply a symbol instance as a mask, which is a bit surprising. (At least, that option seemed to be greyed-out in CS6.) So my earlier idea may just be purely theoretical.

Maybe you are looking for

  • Sales BOM Header line item confirmed without components in Delivery

    Hi Experts, The issue is about the delivery is created with the single component for the Sales BOM where as it contains two. We have analyzed the issue and checked that the missing component would have not been available in the stock during the time

  • How to i control what page a new tab displays

    when i open a new tab it displays a yahoo search page, i want it to display a google search page

  • Error sending pre-VAT

    Hello together, perhaps you have still a piece of advice for me. I am getting the following error when I sending the UVA from the tansaktion FOTV in our ERP system . Entry Date 05.06.2009 12:08:32 Transfer Ticket clearingstelle 0000015800202200209 Re

  • Constant problems with sound..

    For the past couple of weeks, I've noticed that my left earbud is either static-y or doesn't work at all. I thought it was my earbud so I used three other headphones and all encounter the same problem. It MUST be the Shuffle itself because I tested t

  • On demand process fails with session state checksum protection on

    im doing something like this: : http://apex.oracle.com/pls/otn/f?p=56976:2 but the On Demand Application Process errors if session state checksum security is turned on.. works fine if I turn it off.. any ideas?