How can I automatically scale a table based on the page size?

I have multiple tables within 100s of pages of an InDesign file and when I use the liquid layout to scale the content of the pages based on the size, the tables stay the same. I've searched for a while now and can't come up with anything other than going in and manually doing it - which I don't have the time to do.

You probably haven't activated the layout adaptation (I'm on german ID, don't know the correct name for it in English) in the mini menu of the Liquid Layout panel.

Similar Messages

  • Apple Mail: How can I automatically set a signature, depending on the sender, NOT on the account?

    Apple Mail: How can I automatically set a signature, depending on the sender (have several for one account), NOT on the account?
    I have some comma-separated senders in my Apple Mail accounts, some for business, some for private (using the same account). When I'm sending a business mail, I would like to append my business signature, when I send a private one, either nothing, or a fun signature.
    Best,
    Berlin1892

    karenbee,
    Here's the solution for PCs: Tools>Options, then click Sync in the Options window. Good luck.

  • How Can I know about any change happened in the page??

    ........... I Use JDev 11g ........
    How Can I know if any change happened in the page???
    for example:
    I have a page and I press a creation button that create a new row in view object I want when I press any button that will call another page the page ask a user Are you want to save changes? before leaving a page.
    Or
    I edit the value in a view object but not committed ( I didn't commit the data in database ) . When I want to leave the page I want to display a message say : Are you want to save changes?
    How can I do that?
    Thank You...
    Sameh Nassar

    Check out http://radio.weblogs.com/0118231/stories/2004/09/23/notYetDocumentedAdfSampleApplications.html Example 60. Do not go by the 'on page load' name... This approach will allow you to plug in your custom code at any 'phase' of your adf life cycle. You can capture any request coming from your page, and check for pending transaction states and act accordingly.. I realize that the reply is a little abstruse, but this is not a drag-drop-smile requirement.. :-)
    http://download.oracle.com/docs/html/B25947_01/bcdcpal005.htm#sm0271
    Julian

  • How can I get Print to PDF to accept oversized page sizes?

    To level set, my platform is Mac OSX 10.6,  Snow Leopard. 
    I sometimes create banners and such that are designed to be plotted/printed on large format printers.  For example, a banner might print to a page that is 12" x 72".
    Now, I don't actually own such a printer, the FedEx Kinko's down the street does, hence I don't have a driver installed for it. 
    I really don't know the "best" tool for creating these drawings. I have tried MS PowerPoint (which can't seem to accept paper wider than 56 inches) and have  used NeoOffice Draw, which  seems to work ok until it comes to printing time.
    When I try to print to PDF, which is what the folks at Kinko's want, the printer systems always asks if I want to rescale the print to fit my 8-1/2 X 11 home printer(s).  No, just print it "as-is" is NOT a choice and neither is "Any Printer".   I end up having to crawl through setting up odd sized paper under "Any Printer" and somehow, I still don't really understand how, the print to PDF now saves the file sized to print as drawn.
    So, I can see a few possible approaches to making this easier. 
    Install the print driver for the printer at Kinko's.  Only, I don't think the installation process will allow that unless the printer is connected.
    Develop a dongle that fools the Mac into thinking the printer is attached.  Cute idea that could make money if I sold them, but hardly reasonable.
    Develop a dummy (virtual?) print driver that can be added without a physical printer having to be present and which opens a window when you "print" to it that allows you to specify the page size and other information with which it will "lie" to the OS and say, "Yes,  I am a printer capable of doing this....".  (FYI, I am a programmer going on 30 years now.)
    So, before I teach myself Objective-C and how to use Xcode, is there a better or known solution?  Is there an existing product I can use?  Is there a driver development kit for virtual printers?  Any chance I could get a C++ kit and not have to learn Objective-C?
    Thanks!

    Macropanther wrote:
    I don't think the installation process will allow that unless the printer is connected.
    Incorrect. Win or Mac, you can install a printer driver w/o the printer being connected.
    I have tried MS PowerPoint (which can't seem to accept paper wider than 56 inches) and have  used NeoOffice Draw
    You're using the wrong tools. PP shouldn't even be in consideration; I don't know about NeoOffice, but I tried its cousin LibreOffice, and it has issues with custom paper sizes; which is not surprising, given what these apps were designed for.
    What you need for actual banners (not web page banners) is a vector drawing tool or a DTP app. I'd say Illustrator or InDesign, but Adobe CS is expensive, and, if you're thinking of PowerPoint for this job, you're not ready for it.
    You can try Pages; although not quite DTP, it can do the job and it's inexpensive. There are other options, such as Swift Publisher (a DTP app) or Intaglio (a drawing app) -- both are more expensive than Pages, but still affordable; or you can go open source with Scribus (DTP) or InkScape (vector; requires X11). You already know the ups and downs of using open source. (These are just examples; you can find others if you look for them.)
    Although it's better to have Kinko's printer driver, to make sure of the correct options, you don't actually need it to print to PDF. You should be able to define a custom page size (eg, 12in × 72in) and create the PDF from it. Any app which uses the Mac OS X standard print function should be able to do it.

  • How can I insert into a table other than the default table in a form

    Hi,
    I want to insert into a table with some fields value of a form of another table. I have written insert code On successful submission of that form, but after submit it gives the following error
    An unexpected error occurred: ORA-06502: PL/SQL: numeric or value error (WWV-16016)
    My code is like this
    declare
    l_trn_id number;
    l_provider_role varchar2(3);
    l_provider_id varchar2(10);
    begin
    l_trn_id := p_session.get_value_as_number(p_block_name=>'DEFAULT',p_attribute_name=>'A_TRANSACTION_ID');
    l_provider_id := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'A_PROVIDER1');
    l_PROVIDER_ROLE := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',p_attribute_name=>'A_PROVIDER_ROLE1');
    if (l_provider_role is not null) and (l_provider_id is not null) then
    insert into service_provider_trans_records(service_provider_id,transaction_id,role_type_id)
    values(l_provider_id, l_trn_id, l_provider_role);
    commit;
    end if;
    end;
    Where 'PROVIDER1' and 'PROVIDER_ROLE1' are not table fields.
    How can do that or why this error comes ? Any idea?
    Thanks
    Sumita

    Hi,
    When do you get this error? Is it while running or while creating the form.
    Here is a sample code which inserts a non-database column dummy into a table called dummy. This is done in successful procedure.
    declare
    l_dummy varchar2(1000);
    begin
    l_dummy := p_session.get_value_as_varchar2(p_block_name=>'DEFAULT',
    p_attribute_name=>'A_DUMMY');
    insert into sjayaram903_1g.dummy values(l_dummy);commit;
    end;
    Please check in your case if the size of the local variable is enough to hold the values being returned.
    Thanks,
    Sharmila

  • How can i access a mysql table without putting the data in a datagrid

    I developed my air app with a datagrid which uses a php service to display all data from a table of strings in MySql.
    I now do not need the datagrid, how can i get the data from my database without putting it into a dataGrid? Do i need an array? how do i do this? anyone got any example code?

    Balakrishnan V wrote:
    var resultArrayCollection:ArrayCollection=new ArrayCollection()
    protected function resultHandler(event:ResultEvent)
         result=event.result as ArrayCollection
    You can use the result array collection now inside your program for any further changes / manipulations.
    Hope this helps; If you have further doubts, do ask...
    Balakrishnan V
    Hi, yeah this helps,
    however, how would i generate a result handler for a service that has not been called yet? Sorry my knowledge of services is very limited.
    This is a php service, get_all service that returns all the rows from a mysql table.
    I can see the service box with the service i want to use:
    but how do i pass that to a result handler?

  • How can I create UI components dynamically based on the result of WebService/HttpService call?

    I would like to create child components of the component
    based on a XML which is retrieved by WebService/HttpService call.
    createChildren() is the one to be used to create components
    dynamically. But if I use createChildren() and call a
    WS/HttpService request in createChildren method, I can not get the
    result of WS/HttpService request in createChildren().
    It seems that the result event is processed later after
    createChildren() is completed.
    How can I implement my requirement?
    I would appreciate any pointer or suggestion.
    Best regards
    Masa

    1) Use a List, with a custom itemRenderer
    2) Use a Repeater (Probably easiest)
    3) use Actionscript to addChild() components.
    Tracy

  • How can I import diagramms and tables from numbers to pages?

    I'm writing an essay, where I need diagramms and tables in it. I created some cool stuff in numbers and wanted to transfer it to pages. I thought it would be easier, but I don't have a clue how to just import the numbers stuff to my essay in pages. So I tried to copy it, but it looks not that way it looked in numbers. Another problem is: I can't layout the diagramms and tables the way I want (centered) and I need to write a description under it. I tried it with Textbox, but then I just can't group the textbox with the Table.
    Somebody with an idea?
    Thanks for your help!

    To get your data from Numbers into Pages is just a simple matter of copying and pasting. Select the cells you want to place in Pages, copy, and then past into Pages. There are a couple caveats. 1) the table you paste into Pages will be pasted inline. You'll probably want to use the wrap Inspector and change it to floating. 2) if the table is too wide you'll have to get creative about how you arrange the data and 3) Numbers lets you insert check boxes, sliders, steppers, and popup menus and these won't show but the data in the cells will.
    The charts will also copy and paste - again, you'll probably want to use the wrap inspector to switch them to floating objects. Having made the chart object(s) floating objects, you should have no trouble inserting your text box description, arranging them the way you want, and then grouping.
    Just to make sure it worked the way I remembered, I just threw together a quick table and chart in Numbers and then copy/pasted it all into Pages.

  • How do I automatically position my files based on the Media Start time?

    In the project media window, it shows the Media Start, End, Duration of my MOV files based on the timestamp in the file.
    I'm talking about the time at which the video was shot (according to the camera), not any marks I have added.  Note the distinction: all searches for this treat "Media Start" as the mark-in, mark-out points and have nothing to do with what I'm asking.
    There are gaps between the files so I don't want to add them contiguously.  I will be lining this up with other sources, and using the absolute time is the easiest way to "just do it", within a fraction of a second.
    (I have not used Premiere since version 1.5 Pro)

    I'll try that Sync command on the next one; thanks.
    At least I should be able to get this out faster than last year's New Year videos: the lighting was so bad that I had to learn color correction and the Resolve tool to accomplish it.
    I've used (if memory serves)
    Ulead Mediastudio Pro
    Premere Pro 1.5 circa 2005 
    hiatus early 2008 (last use of DV camcorder) — Feb 2013 (dSLR video)
    Avidemux (just trimming and concatenating)
    Sony Movie Studio Platnum 12, 13 (when I needed real NLE again)
    DaVinci Resolve (color correction, but hey includes basic NLE and free!)
    Adobe CC 2014 includes Premiere, so jump to that!
    I learned concepts like importing asset files to a media pool and then taking clips from that, multi-track timeline editing with razor, single and all-track ripple, rolling edit, crossfades, J and L cutting, and all that, from Ulead in 2002 and later Premere.
    Other NLEs I've used since, sometimes one-off, I had no trouble doing basic things.  It's like driving a car: basic essential functions are known but need to hunt around for the interval wipers.
    This one, though, took much longer to get moving with.  They purposefully changed some control concepts presumably for the better (where is the toggle to slide all clips beyond this one when I move it, and another toggle for keeping all tracks in sync or just editing one?   I clicked somewhere to expand the track vertically but I can't quite figure out where to do it reliably.
    But also made things unnecessarily difficult: it says drop stuff here to to start, but why not allow right-click to work and show useful things in this situation, or at least have a "new" button!  There's no speed slider or reverse buttons in the player interfaces, and in general there are commands I can't find on any menu but apparently exist.
    The scrollbar/zoom will take getting used to, but why can't the arrow buttons still be there too?  Especially at high zoom the slider is much too touchy, and clicking to move a little bit would be helpful.  Ctrl-Wheel doesn't work in the waveform source editor but does on the timeline.

  • How can we do Scrooling text on top of the page

    Hi
    I have seen scrolling text in below link on top of the page.
    http://htmldb.oracle.com/pls/otn/f?p=31517:1:2002688616473008
    Could you pls let me know how can we do this?
    Regards
    Kiran Akkiraju

    Hi Kiran, <br>
    <br>
    Do you mean the text that is going from right to left?<br>
    That's javascript... below a copy/paste of Denes site.<br>
    <br>
    Dimitri<br>
    <br>
    -This is not my code, all the credits are for Denes Kubicek-<br>
    <br>
    <script language="JavaScript1.2">
    //Specify the marquee's width (in pixels)
    var marqueewidth="475px"
    //Specify the marquee's height
    var marqueeheight="40px"
    //Specify the marquee's marquee speed (larger is faster 1-10)
    var marqueespeed=2
    //configure background color:
    var marqueebgcolor="#ffffff"
    //Pause marquee onMousever (0=no. 1=yes)?
    var pauseit=1
    //Specify the marquee's content (don't delete <nobr> tag)
    //Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):
    var marqueecontent='<nobr><span style="font-weight:bold"> Welcome to scrolling text... and of course, you can switch this newsticker off by cklicking HERE !</span></nobr>'
    marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS
    var copyspeed=marqueespeed
    var pausespeed=(pauseit==0)? copyspeed: 0
    var iedom=document.all||document.getElementById
    if (iedom)
    document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')
    var actualwidth=''
    var cross_marquee, ns_marquee
    function populate(){
    if (iedom){
    cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
    cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
    cross_marquee.innerHTML=marqueecontent
    actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth
    else if (document.layers){
    ns_marquee=document.ns_marquee.document.ns_marquee2
    ns_marquee.left=parseInt(marqueewidth)+8
    ns_marquee.document.write(marqueecontent)
    ns_marquee.document.close()
    actualwidth=ns_marquee.document.width
    lefttime=setInterval("scrollmarquee()",20)
    window.onload=populate
    function scrollmarquee(){
    if (iedom){
    if (parseInt(cross_marquee.style.left)>(actualwidth*(-1)+8))
    cross_marquee.style.left=parseInt(cross_marquee.style.left)-copyspeed+"px"
    else
    cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
    else if (document.layers){
    if (ns_marquee.left>(actualwidth*(-1)+8))
    ns_marquee.left-=copyspeed
    else
    ns_marquee.left=parseInt(marqueewidth)+8
    if (iedom||document.layers){
    with (document){
    document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
    if (iedom){
    write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden">')
    write('<div style="position:absolute;width:'+marqueewidth+';height:'+marqueeheight+';background-color:'+marqueebgcolor+'" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">')
    write('<div id="iemarquee" style="position:absolute;left:0px;top:0px"></div>')
    write('</div></div>')
    else if (document.layers){
    write('<ilayer width='+marqueewidth+' height='+marqueeheight+' name="ns_marquee" bgColor='+marqueebgcolor+'>')
    write('<layer name="ns_marquee2" left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"></layer>')
    write('</ilayer>')
    document.write('</td></table>')
    </script>

  • How can I get my Pro-100 to print 12x12 page size? It won't let me set that size.

    I use 12x12 paper for scrapbooking.  Every time I set the paper size for 12x12, the printer says to choose the A3 size (11 x 16).  But then there's a wide margin of white left over.  How can I get the printer to print edge to edge?

    You need to buy a paper trimer.  Office Depot has several to choose from.  Believe me and save your self a lot of headache and just get the trimmer.  Print what you want on a larger size paper that the Pro-100 accepts and trim away.
    Are you using a post editor like Photoshop Elements?  If not I highly recommend you buy it, too.  There are others, some are even free, but PSE is the best.
    EOS 1Ds Mk III, EOS 1D Mk IV, EF 50mm f1.2 L, EF 24-70mm f2.8 L,
    EF 85mm f1.2 L II USM, EF 70-200mm f2.8 L IS II,
    Sigma 120-300mm f2.8 EX APO, Photoshop CS6, ACR 9, Lightroom 6

  • How can I recover documents that were stores in the pages app?

    I have an original iPad. This evening, as I was using it, I got a message that an update was available for pages. I selected "update". It attempted to install the new pages and froze. I connect to iTunes to try to get it back to old version of pages (the new versions won't work on the original iPad) by restoring to back-up. That resulted in deleting the pages app.
    Ahhhh!!!! I need my documents! They had been backed up to iTunes and it was recently backed up to iCloud.
    Someone please help me figure out how to find my docs!!!
    THANK YOU

    Basics of File Recovery
    Files in Trash
    If you simply put files in the Trash you can restore them by opening the Trash (left-click on the Trash icon) and drag the files from the Trash to your Desktop or other desired location.  OS X also provides a short-cut to undo the last item moved to the Trash -press COMMAND-Z.
    If you empty the Trash the files are gone. If a program does an immediate delete rather than moving files to the Trash, then the files are gone.  Recovery is possible but you must not allow any additional writes to the hard drive - shut it down. When files are deleted only the directory entries, not the files themselves, is modified. The space occupied by the files has been returned to the system as available for storage, but the files are still on the drive. Writing to the drive will then eventually overwrite the space once occupied by the deleted files in which case the files are lost permanently. Also if you save a file over an existing file of the same name, then the old file is overwritten and cannot be recovered.
    General File Recovery
    If you stop using the drive it's possible to recover deleted files that have not been overwritten by using recovery software such as Data Rescue II, File Salvage or TechTool Pro.  Each of the preceding come on bootable CDs to enable usage without risk of writing more data to the hard drive.  Two free alternatives are Disk Drill and TestDisk.  Look for them and demos at MacUpdate or CNET Downloads.
    The longer the hard drive remains in use and data are written to it, the greater the risk your deleted files will be overwritten.
    Also visit The XLab FAQs and read the FAQ on Data Recovery.

  • How can I change between JSP and Java in the page language attribute

    Does any one know the answer to this? I am trying to Switch between the 2 in the middle of the page. I want to include a file that uses <%@ page language = "JAVA" %> but the main mage uses Java Script. How can I switch it for this one file. I can't find the answer anywhere. Thanks for your time, and please help me. Also can some one post a good link for Session Tracking. I can't find much good information on that. Thanks again.
    Eagles757(JAY)

    Wow this didn't make sense in so many ways. It's truly bordering on nonsense. I think it's written in English.
    <%@ page language="Java" %>This is optional. JSPs don't use any language other than Java. This is known as a JSP Directive. This line will be processed by the JSP/Servlet engine, and you won't see it in your output. If JSP ever supported a language other than Java, this would be where you would change it.
    <script type="text/javascript">
    <!--
    // -->
    </script>You can include a block like this in your JSP file. The JSP/Servlet engine will not process this script block at all (unless you include JSP <% %> tags somewhere in there, in which case they will be processed before the response is sent back to the web browser). This script block is where JavaScript goes. This code will be executed on the client's browser.
    This is about as clear as I can make things given how muddled your question is. Please ensure you understand the basic differences between JSP, Java, JavaScript, HTML, Servlet engine, web browser before proceeding. Understand what code executes where, and in what order.
    Brian

  • How can I resize a JFrame ,to fit into the screen size

    I have a Jframe which has JPanel and JPanel contains lot of other components.JPanel size is 980,1400. when i use JFrame.show method jpanel goes beyond the screen size in length and I am not able to see the portion below the screen.How can I resize the JFrame so that JFrame and JPanel shrinks to fit into the screen size.I need this because I have a PRINT button at bottom of the JPanel.Thanks.

    Thank you for your reply.I tried with the following code as you have told.But the frame is still going beyond the screen.Can you please look into it and tell me whats wrong ?
    //public class PlayerRegForm extends javax.swing.JFrame implements Printable
    public static void main(String args[]) {
    PlayerRegForm prf = new PlayerRegForm();
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    Dimension frameSize = prf.getSize();
    if (frameSize.height > screenSize.height)
    frameSize.height = screenSize.height;
    if (frameSize.width > screenSize.width)
    frameSize.width = screenSize.width;
    System.out.println("Screen Size ----------------- " + screenSize);
    System.out.println(" Frame Size ----------------- " + frameSize);
    prf.setSize(frameSize.width, frameSize.height);
    prf.pack();
    prf.show();
    =============================================================================
    Screen Size ----------------- java.awt.Dimension[width=1024,height=768]
    Frame Size ----------------- java.awt.Dimension[width=112,height=28]

  • ADF how can i execute a query with parameters when the page renders

    hi
    i am using ADF web 11g
    i need to execute a query with parameters when the page renders
    thanks

    hello,
    I'm a fan of Java code, I really am.
    But when you use ADF, you decided to move to a more declarative environment.
    So why not do it declarative, the adf way?
    In your pagedef insert a action binding.
    This can be anything, a call to the application module, a call on the iterator(Like executeWithparams, etc.)
    Create an invokeAction in your pagedef and set the condition.
    This example refreshes(Action 2 is execute query) the data.
    First the method binding:
        <action IterBinding="PersoonIterator" id="Execute" InstanceName="LSAppModuleDataControl.Persoon"
                DataControl="LSAppModuleDataControl" RequiresUpdateModel="true" Action="2"/>And the invoke action
        <invokeAction Binds="Execute" id="refreshData"/>This always refreshes the data on page entry, but anything is possible, you can set condictions for the invokeAction.
    -Anton
    PS Yes I know that pagedefs become backing beans in the end and yes that is Java code, but if you wanna play the ADF way, the goal is the reduction of Java code and the increased performance of declarative programming.

Maybe you are looking for

  • Incoming Email Settings for the libraries in My Sites and Personal Sites

    Hello Friends,                    I'm currently working on SharePoint 2013 implementation where My Sites have been configured in a separate web application and personal sites are being stored under same web application. Ex: My Site Host : http://mysi

  • IDOC  error  message in SRM 3.5

    Hi all,    I am using SRM 3.5(EBP 3.0)with ITS and R/3 4.7. While executing the service "Create shopping cart",after  ordering the item i.e. saving the shopping cart,the approval workflow is executed but when i login as the approver and go to the wor

  • Delete dump file

    Hi experts, Can i delete dump files through SQL command

  • Converting varchar to date

    Hi All when i run the below select statement i get error message. pay_dt is varchar2(8) data type. ORA-01861 : literal does not match format string Any help on this appreciated. Thank you very much. SELECT DISTINCT to_char(to_date(pay_dt ,'YYYY-MM-DD

  • Download photos from facebook app

    Is there a way to download photo's from Facebook albums onto camera roll?