Fill Space Feedback

I wish "Automatically fill free space with songs" could fill with a playlist where I could manipulate the songs to not include text or include or not include Christmas music. That is all!
I also wish I could figure out how to give constructive feedback like this to Apple.

Hi Greg Jenks,
Thank you for using Apple Support Communities.
if at any time you would like to leave feedback, you may use the link below to do so.
Apple - Feedback
Cheers,
Alex H.

Similar Messages

  • Problem with 'Filling Space' described in Tim's Blog

    Dear Experts,
    I am using the Invoice Template described in the excellent Blog by Tim Dexter (Anatomy of a Template) to produce my own version. However, I am having problems with the 'Filling Space' described here: http://blogs.oracle.com/xmlpublisher/2007/03/anatomy_of_a_template_ii_heade.html
    My template is almost identical to the example, when I import XML data where there is only one record, the Filling Space does not pad out with enough empty rows so that the Total table is not at the bottom of the page, aligned with the watermark that I have. The code in the 'Filling Space' field is as in the Blog:
    <?if:not(count($invLines) mod $lpp=0) and ($start+$lpp>count($invLines))?><?for-each:$invLines?><?if:position()<$lpp - (count($invLines) mod $lpp)?>
    If the number of records is greater than half a page or more, then the padding is correct. This is even if, say on the third page there is just one record. Therefore, it seems the padding does not work if the number of records are less than half a page in total.
    Is this correct and does anyone have a solution - would be greatly appreciated.
    Many thanks,
    Mark

    "If the number of records is greater than half a page or more, then the padding is correct. This is even if, say on the third page there is just one record. Therefore, it seems the padding does not work if the number of records are less than half a page in total."
    This statement is wrong.
    Leave the if conditions logic,
    This is how it works,..
    xml contains 43 rows...
    each page you need 10 rows..
    after every 10th rows [using position mod 10 ,] , you put a page break...
    if the mod returns greater than 0, that means row filler has to come into effect now.
    what is the logic now to have row fillers is , 10 - 3 [position mod 10] , comes to 7... so seven blank rows should be inserted..
    this is how , it works...
    so the statement, saying, less than half of page, or something, wont come into this :).
    http://winrichman.blogspot.com/2008/09/limit-row-per-page.html

  • Filling space with non-visible component?

    Is there a better way to fill space to squeeze objects closer together in a gridlayout/flowlayout than simply making gui components and setting their visibility to false?

    I thought so too but...
    newApplet.java:105: reference to add is ambiguous, both method add(java.awt.PopupMenu) in java.awt.Component and method add(java.awt.Component) in java.awt.Container match
                   userNamePanel.add(null);

  • Div not filling space

    General CSS question here and I can't figure it out in
    Dreamweaver...how do I get a div to vertically fill the entire
    available space? I've tried setting the height to 100%, I've tried
    auto. Have no idea!!!

    You can't, really. But you can try by using -
    html, body { height:100%; }
    first.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "MisterEggMan" <[email protected]> wrote in
    message
    news:gbgg81$du8$[email protected]..
    > General CSS question here and I can't figure it out in
    Dreamweaver...how
    > do I
    > get a div to vertically fill the entire available space?
    I've tried
    > setting the
    > height to 100%, I've tried auto. Have no idea!!!
    >

  • IOS 8 other filling space

    I have a new iPhone 6 (128gb) and its ruing iOS 8  (I'm mac os X) and after installing everything  - keep finding of the 114 GB -i have over 90GB of other  restored seven times and still same problems occur  its like it loads ½ of music and pictures f our times then runs out of space and corrupts files.. any fix?
    i have about 6ogb of musci and 10GB of pics plus 12GB of apps or rather I would if it didn't fill with other each time

    The 'other' space has been a constant problem. Across numerous devices (during iOS6, iOS7 and to a seemingly greater extent iOS8) it builds up for no reason. I don't even have to sync a device to see it steadily build. On my iPad it's at about 4 gigs, on my iPhone 4 it was upto nearly 3 and now my 5s it's around 2 gigs and building everyday. It can go up anywhere between 20 – 100 mb a day and that is with no new downloads/apps/minimal texting with no attachments/pics. I do use match but I disable downloads/usage under cellular and yet it still grows. In any event I never used match until recently and it grew even then. So the ‘other’ thing is an issue with iOS. Apple should provide easier tools to identify what is in there and the ability to free up space on the device itself. I suspect the vast majority of iDevice users have lots of ‘other’ space eating things up without knowing (or perhaps caring). I do understand vital system data may fall in this category but it’s a bit frustrating when you go into your usage list on the iPhone or iPad add everything up and it does not reconcile with what you have used and falls short but several gigabytes. I have used iExplore to delete files under cloud assets folder but very often this frees up very little (this is another frustration that often videos do not ‘stream’ but download and take space and do not necessarily delete themselves)
    The best way to combat ‘other’ is to restore which is a PITA but it always builds up over time.

  • Filling space will null components...

    I have been trying to find a way to fill in blank spaces in both a gridlayout and flowlayout, to squeeze existing components together. I thought that I could just add a null component to the panel but that doesnt work. Is there a good way to do this, or should I just create regular components and set their visibility to false?

    I wouldn't create any null components. That's a hack that will only make debugging a bigger nightmare as the layout gets more complex. Also, because you are trying to fill in blank spaces FlowLayout should not be used at all - since it may display radically different when resized, etc. Using GridLayout and setting components to false will work but its somewhat ugly.
    There's a very simple yet effective Layout manager that combines the usefulness of FlowLayout and GridLayout. It is called VerticalLayout, is simple to use, and is free to download. I highly reccommend it.
    See:
    http://www.cellspark.com/vl.html
    Hope this helps...

  • Fill space in panel with GridBagLayout

    Hello,
    I have a class that extends JPanel and uses a GridBagLayout.
    I would like the contents of this panel to occupy the whole available space.
    However, I don't find how to do it with GridBagLayout (I know this is automatically done with BorderLayout but I want to use GridBagLayout for organizing internal components).
    I have this small program to show the problem.
    In this example, how could the button fill all the available space with GridBagLayout?
    Note that setting GridBagConstraints fill to BOTH doesn't solve the issue.
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.LayoutManager;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class TestBlankSpace {
        private static int x = 200;
        public static void main(String[] args) {
         testPanel(new BorderLayout(), BorderLayout.CENTER);
         testPanel(new GridBagLayout(), createGridBagConstraints());
        private static void testPanel(LayoutManager manager, Object constraints) {
         JPanel panel = new JPanel(manager);
         JButton button = new JButton("button");
         button.setBackground(Color.ORANGE);
         panel.setBackground(Color.WHITE);
         panel.add(button, constraints);
         JFrame window = new JFrame("Test Panels");
         window.add(panel);
         window.setLocation(x, 200);
         window.setSize(400, 300);
         window.setVisible(true);
         window.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
         x += 400;
        private static GridBagConstraints createGridBagConstraints() {
         GridBagConstraints c = new GridBagConstraints();
         c.fill = GridBagConstraints.BOTH;
         return c;
    }Thank you

    Hi,
    For better understanding the grid bag layout read this tutorial :
    [http://java.sun.com/docs/books/tutorial/uiswing/layout/gridbag.html|http://java.sun.com/docs/books/tutorial/uiswing/layout/gridbag.html]
    Olek

  • Fill space in TOC

    Hello!
    Does anybody know how to fill blank space (with dots or smth) in the table of contents (TOC), I mean the space between the chapter name and the page number?
    Example:
    +Introduction ···················· 5+
    +Chapter 1 ······················ 10+
    I looked in the Inspector, and haven't found any way to to that.
    Thank you in advance,
    Vitaly

    Pages 92 in the Pages User Guide, downloadable from the Help menu in Pages, it will tell you about how to do it. You can also read on page 62 about "Styling a Table of Contents"

  • Auto fill space to fill the line width

    Hi, i would like to know whether crystal report can do the below alignment.
    I got a field which have few words,i.e. sometimes 4 words, sometimes 5, or 10.
    I want a alignment which can left and right align at the same time
    for example,
    the line have below width, when the words are not enough for a full line, it will automatically add more spaces between the words, so that they can "Left" and "Right" align.
    4 words
    |                                                     |
    do      like        program      bug
    5 words
    |                                                     |
    i    want  no  more  program  bug
    THX

    hi Wong Chi,
    as Dell mentioned above, it's difficult to determine if there's only going to be one line in a field or formula. in order to count the number of lines, you need to use something like this. in that solution where only the number of lines are counted, a fixed width font is also required.
    for your particular case, once you determined the line count is equal to 1, you'd then need to figure out the number of words you have by splitting the text into an array
    split({@yourformulaorfield}, ' ')
    using a space as the delimiter and then you'd need to figure out how many characters you need to pad the line with
    length({@yourformulaorfield})
    and then divide that by the number of words you've got
    numbervar nw:= ubound(split({@yourformulaorfield}, ' '));
    and then replace the existing spaces with the new spacing
    replace({@yourformulaorfield}, ' ', replicatestring(' ', nw))
    by the way, if you're wondering if this is a bug, it's not. ms word uses the same behaviour with single lines as well...i.e. it doesn't justify a single line...at least in my version it didn't.
    -jamie

  • Dataldr.box filling space , how to disable

    Hi,
    I am Using SCCM 2012 and dataldr.box log files are eating all the space on my server , Is there any way that i can disable these logs and when needed enable them again.
    Regards
    Usman Ghani
    Usman Ghani - MCITP Exchange 2010

    The badmifs folder in this box contains hardware inventory that was bad for some reason.  This can be a temporary thing and the system will self correct but the files will remain. Are they constantly being created. If not they can be deleted. Otherwise
    you need to investigate why your inventory is bad.
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • 'Automatic' filling of free space

    Maybe this is more of an iphone question, but hey. My question is, when I am syncing my iphone with itunes, and I select a few playlists which have a total size of 1.4gb, and then when I instruct itunes to 'automatically fill space with songs' - which, to my mind, should be a random selection - and that free space is some 13gb - I seem to always have the same songs! Is there a way I can make the selection more random? I have nearly 8000 songs in itunes, yet seem to hear the same 100 on my iphone?
    Thanks!

    I see that there are many similar discussions here, but no-one seems to have resolved this...? Anyone?

  • Proximity Sensor Issue?-Send Feedback

    Yes there is an illusive issue with the Proximity Sensor. We can complain. Or we can help.
    I know Apple does not want people thinking they produce junk.
    Send Feedback!
    http://www.apple.com/feedback/iphone.html
    Describe the conditions when your iPhone 4 malfunctions.
    If we fill the feedback channel with useful data they will have what they need to fix the issue.
    Lets be proactive. Lets be part of the solution.

    I don't think Apple can fix the proximity sensor in the current model. iPhone 4 has been out for 2 months. If the problem was fixable, they would have done it by now. The last iPhone 3Gs has 3 small proximity sensors on the left side of the speaker. To make space for the front camera, Apple moved the proximity sensor above the speaker. In other words, proximity sensor is a Hardware problem that can not be fixed with a software update. IP 4 is almost useless to make phone calls (unless you use it with bluetooth headset or with speaker). But don't expect any fixes until the next model. If you don't like it, return it.
    Read the following horror story from a reporter of PCWorld
    http://www.pcworld.com/article/201232/iphone4_**_a_personal_tale_of_iphone_4woes.html

  • How do I apply a texture to a text field's fill area?

    Hi all, first post and all that!
    I've seen that it's possible to format a specific bit of text in a text field with:
    setTextFormat(format:TextFormat, beginIndex:int = -1, endIndex:int = -1):void
    I need to format a section of text by applying a texture to the rectangular fill space around the letters. (Imagine in Microsoft Word that you've written a short sentence and you highlight it. Then you fill the text background with a colour. Then imagine that that colour is a single repeating texture. That's what I'm trying to achieve.) Note that the text field must be multiline, and I'm not looking to fill the whole rectangular text field area. The applied texture needs to fit to each character.
    Is this possible in Actionscript?
    Would I need to use some kind of HTML or CSS formatting?
    Is it possible at all?
    If it is possible, is it possible to change the size of the fill area around the text?
    Thanks all!

    Actually, that's pretty much what I'm looking for. For anyone else reading this thread:
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=00001279.html
    That'll fill an area with a repeating texture. The tricky bit now is to work out a top left coordinate for each line of text, and the length of each line in pixels (based on the sum of the character widths). I'll have a poke around and see if there's a way to get that information back from a movie clip.

  • I filled in a PDF form. When finished, I could not find how to save the completed form. So I took a chance and used the phone's back button. A message popped up saying the form was saved and to go to the cloud to view it. What cloud?

    I tried all I could think of but found nothing. In addition, I checked the phone's memory and found the file with a created date/time only about 15 minutes old. When I opened it, I was at first relieved. The portion showing on the screen was filled in. Then I looked at the other 3 and ¾ pages. All fill spaces are empty! What's up with that? And where do I find the finished form in that illusive cloud?

    Form document will automatically be saved after closing the file. As far as cloud message is concerned, it seems your Mobile link setting has been turned on. When you pressed device back button after filling the form, it was saved to your Acrobat.com account. You can access this document by going to Acrobat.com tab present in left pane. Its a cloud storage area where you can upload/save any document.
    Thanks,
    Adobe Reader Team

  • Spaces in recevier file adapter

    Hi,
    We are converting IDOC -> fixed length file. There are several fields which may not exsist in IDOC but still need to be populated in file with spaces. Is there anyway I can set some param in file adpater to default field value to spaces if it is not provided?
    When I specify length =25 for certain field in file adapter and it receives field value of length 20.. will it be possible to include extra spaces at the end so that the field length is 25. In this example - extra 5 spaces ' ' will be needed.
    Thanks
    Kunal

    Kunal,
    In the file you also create the column and link that column to a constant and fill spaces according to your requirement. Also go through the url:
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    By the way you have told fixed length file, then why do you want to change the fields length?
    ---Mohan

Maybe you are looking for