Optional vertical space marker in CS4?

Hi,
Just wondering if anyone knows if there exists, in IDCS4, some sort of way
of creating vertical space between paragraphs that will not appear if the
paragraph happens to begin at the top of the page.
Obviously, until now I've been using paragraph styles. But some kind of
vertical space marker would be so much simpler. You could have one for a
half-line height, or a full-line height and just insert them as necessary.
If not, any workarounds except for paragraph styles?
Thanks,
Ariel
Win XPSP3, IDCS4ME

Yes. Harbs idea is simpler than mine, because you don't have to fiddle with
textwrap settings.
So to summarize:
1. disable Skip by leading in preferences.
2. make sure the text frame you're working in has "First Baseline" set to
exact or leading.
2. create a line the length of the gap you wish.
3. cut and paste it at the beginning of the paragraph above which a gap
should appear.
4. Set it to an "above line" anchored object (or better, create an object
style to do this at a keystroke)
(If at some stage the leading changes, with CS4 you can do a search and
replace for the length of the line.)
I think that's pratical enough to be useable.
Here's a quote from "The Complete Manual of Typography" by James Felici,
published by Adobe Press:
"Dedicated typesetting systems typically had a command that let you add a
vertical space band of whatever width werever you wanted. Such a space band
was an independent entity, not tied to any paragraph. The software
recoginized it as a role-playing spacing element, and when that role wasn't
required-[as at the beginning of a page]-it would ignore the vrtical space
band. Unfortunately, this facility has yet to find its way into popular
desktop systems."
But at least there's a workaround....
Thanks,
Ariel

Similar Messages

  • Optional Vertical Space Character

    Paragraphs can have a "space before" and "space after" attribute, as you probably know. The nice thing about this is that if the paragraph is at the top of the page, the space before disappears.
    I would like to have a vertical space character that does the same. You insert it into a line by itself (Type>Special Characters>Vertical Spacer). It makes a vertical gap based on the leading you give it.
    BUT! if it appears as the top line of a text frame, it will disappear.
    Why is this good? Because it saves having to create a lot of paragraph styles to deal with each situation. For instance, currnetly, I may need the following styles:
    Block Quote Standalone [space before and space after]
    Block Quote beginning [space before no space after]
    Block Quote Middle [no space before no space after]
    Block Quote End [no space before space after]
    Block Quote Standalone Indented
    Block Quote beginning Indented
    Block Quote Middle Indented
    Block Quote End Indented
    That's 8 styles all for the different combinations of block quotes. If I had a "vertical space" character, I would need only two styles:
    Block Quote; and
    Block Quote Indented.
    Much easier to manage! The variations could be simply managed by inserting a vertical spacer as needed. Really useful idea, and similar to the way dedicated typesetting systems used to work several decades ago.
    Thanks,
    Ariel

    Perhaps. Not sure I understand. Could you elaborate?
    But let me explain. Here's an example. A regular long block quote will need 3 styles, depending on whether there needs to be a line space before or after the paragraph:
         BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
    BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
    BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
    BlockQuoteBeginning BlockQuoteBeginning BlockQuoteBeginning
         BlockQuoteMiddle BlockQuoteMiddle BlockQuoteMiddle BlockQuoteMiddle
    BlockQuoteMiddle BlockQuoteMiddle BlockQuoteMiddleBlockQuoteMiddle
    BlockQuoteMiddleBlockQuoteMiddleBlockQuoteMiddleBlockQuoteMiddle
        BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd
    BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd
    BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd BlockQuoteEnd
    And then you need a separate style for a standalone block quote, that needs a line space both above and below. So that's 4 common styles.
    Then, occassionally, each of these for will sometimes not need indentation. So that's another four styles.
    Also, if the book requires block quotes in footnotes (a bad idea, IMHO, but the choice is not up to me), that's another 8 styles for the same reason.
    The forced line break that you mention, if I've understood correctly, wouldn't work with justified paragraphs, since it will force the line before the forced break to be fully justified?
    Ariel

  • Anchored Objects with text wrap, need vertical space

    Hi.  I'm a fairly new InDesign user and have just this past week learned about anchored objects, threading text frames, numbered lists, and some other fun options. So far InDesign has done most everything I need fairly elegantly. However, I have not been able solve one issue.
    In my book I have numerous pages that have this issue; I'll just describe one case. On this page there are 4 graphics running down the right side of the page. These are not anchored graphics. They do have text wrap defined on the left side and bottom. There is text that wraps lovely on the left.
    Each of these four graphics has a specific paragraph it needs to top align with. However, the text it aligns with may not take up as much vertical space as the graphic does. When I anchor each graphic with the paragraph it needs to align with, the four graphics overlap each other.
    At the moment, to make it look right, I have placed each graphic individually and added a blank paragraph above each paragraph of text that should align with a graphic and use the Space Above of each blank paragraph to have it align with the graphic.
    I'm not even sure what to search to try and solve this. I looked briefly into compound paths, but that didn't look like it would help.
    I hope this is clear and thank you for any assistance at all.
    Andrea

    No problem. Click your cursor somewhere in the paragraph that ought to be aligned with the next image down, then run this Javascript.
    It's not entirely accurate, as it uses the font size to do a minimal adjustment where it actually should use the font's cap height -- but you cannot get to that through scripting. This final adjustment is necessary because ID does know the baseline, and your first line ought to dip just below this to have the top of the first line aligned to the top of the image.
    //DESCRIPTION:Align paragraph with image.
    // Jongware, 15-Jul-2010
    if (app.selection.length == 1 && app.selection[0].hasOwnProperty ("baseline") && app.selection[0].paragraphs[0].index > 0)
         // find nearest image on the right
         ypos = app.selection[0].paragraphs[0].lines[0].baseline;
         pg = app.selection[0].parentTextFrames[0];
         while (1)
              if (pg instanceof Character)
                   pg = pg.parentTextFrames[0];
              if (pg instanceof Spread || pg instanceof Page)
                   break;
              if (pg instanceof Document || pg instanceof Application)
                   exit(0);
              pg = pg.parent;
         img = pg.allGraphics;
         dist = 999999;
         nearest = null;
         for (i=0; i<img.length; i++)
              if (img[i].geometricBounds[0] > ypos && Math.abs(img[i].geometricBounds[0] - ypos) < dist)
                   dist = Math.abs(img[i].geometricBounds[0] - ypos);
                   nearest = img[i];
         if (nearest == null)
              alert ("no image found nearby!");
         else
              prevm = app.activeDocument.viewPreferences.verticalMeasurementUnits;
              app.activeDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.POINTS;
              top = nearest.geometricBounds[0];
              ypos = app.selection[0].paragraphs[0].lines[0].baseline;
              if (ypos < top)
                   app.selection[0].paragraphs[0].spaceBefore = top-app.selection[0].pointSize-app.selection[0].parentStory.paragraphs.previousItem(app.selection[0].paragraphs[0]).lines[-1].baseline;
              app.activeDocument.viewPreferences.verticalMeasurementUnits = prevm;
    This image shows three paragraphs aligned with their respective images (it won't work on the first paragraph, but that ought not to be necessary anyhoo).

  • Imbedded graphics taking too much vertical space in HTML preview

    Does anyone know why imbedded pictures should require more vertical space than expected on the HTML preview?
    I imported a .jpg into my report layout, and immediately below it I added a line of text. The HTML preview shows me a LOT of unexpected blank space between the picture and the text.
    I then inserted the .jpg into a table in which the "Fit to Content" option is checked. On the RTF layout, it looks great - the margins of the cell snuggle up pretty close to the picture. But when previewed, that extra blank space comes back and appears below the picture - the table row is a lot taller than it needs to be.
    I've experimented with different image heights, and the amount of extra vertical space seems to always be about 40% of the height of the picture. So if the picture is 100 pixels tall, the table row is about 140 pixels, with 40 pixels of height in unwanted blank space. I can even set the row height to a value less than the height of the image. On the RTF, it looks right (chops a portion of the image). On the Preview... there's the blank space again.
    Not only that, I can't get the picture to locate anywhere other than at the top of the table cell. No matter how I format the cell, the graphic insists on staying at the top.
    BTW, the PDF preview behaves correctly. No extra blank space.

    What's the 'tiny_spacer_rule' for which is applied to the paragraph tag between the end of your
    'header' section and the start of the table?
    <li><a href="testimonials/2010/june/2010june_testimonials.html">TESTIMONIALS</a></li>
      </ul>
      <!-- end #header -->
      </div>
      <p class="tiny_spacer_rule">&nbsp;</p>
      <!-- InstanceBeginEditable name="example_nav_bar" -->
      <table width="998" border="0" align="center">
        <tr>
          <td><img src="graphics/page_titles/antiques.png" width="450" height="75" alt="antiques title graphic" /></td>
          <td><img src="graphics/page_titles/crate_examples.png" width="450" height="75" alt="Crate example title graphic" /></td>
        </tr>
      </table>

  • Problem with interspersed response -- opening vertical space fail

    mail.app version 5.3 (1283) on MacOS 10.7.5
    I can top- or bottom- post and do so when appropriate, generally in very simple email conversations. 
    BUT, for more complex threads, I commonly want to open some space between each paragraph of each incoming message to insert my response.  (Incoming paragraphs are typicallly separated by a blank line or two.)  Mail.app provides horizontal bar quoting indicators at the left to mark the progress of the thread over many exchanges, though this mechanism often seems not to be very well supported by the email clients of my correspondents. (I often end up increasing the quoting manually to restore a semblance of the correct quoting of a thread.  Oh, well...)
    I've been using mail.app only since I installed 10.7, shortly after it was released.  With varying success, especially when using formatted as opposed to plain text. Exchanges with some people work more or less flawlessly.   The most common difficulty: I have trouble opening up vertical space below an incoming, quoted paragraph in which to type my response to that para. Up until today, I've always been able to find a way, by exeriment of where I put the cursor, using shift-enter instead of enter, etc, etc.
    But for a message I just received, I cannot.  Every attempt I make to open some vertical space results in ... trouble.  If I put the cursor on a blank line between incoming paragraphs and command "decrease quote level" I get 8 inches [!] or so of quoted vertical space, followed by 8 more inches or so of unquoted vertical space, followed by the following paragraph and the rest of the thread, apparently intact.  That's not right!  
    Fortunately, I can undo and resume ... to do what?  I get a similar result if I try placing the cursor that line and hit "enter".  Or "Enter".  Or "shift-enter".
    Yeah, it looks like I've opened 10 inches in which to insert my response to the first paragraph, but first I need to get rid of most of the inserted quoted vertical space -- an impossible task, as far as I can see.  If I put the cursor on the first line of unquoted space and backspace, the 10 quoted inches stay the same and characters delete from the end of the previous quoted parag.
    What's going on?   Are there any methods of recovering some semblance of normal operation so I can answer this incoming message? (OK, I've given up and responded by top-posting.)   I note that I can view the source of the incoming message, but I see no way to view the source of the response, to see what exactly is going on. What is actually being inserted in the formatted text source that creates the mess I observe?
    In this case, viewing the incoming source seems to reveal only one apparent client name: Zimbra.   Is that a client?  Could Zimbra and mail.app have ... issues with each other?
    Are there any mail.app add-ins that might help?   Work-arounds?   (Yeah, probably converting to plain text would solve the problem, but that has other issues.)   Any applicable help or articles?
    Am I missing anything incredibly obvious?
    TIA

    mail.app version 5.3 (1283) on MacOS 10.7.5
    I can top- or bottom- post and do so when appropriate, generally in very simple email conversations. 
    BUT, for more complex threads, I commonly want to open some space between each paragraph of each incoming message to insert my response.  (Incoming paragraphs are typicallly separated by a blank line or two.)  Mail.app provides horizontal bar quoting indicators at the left to mark the progress of the thread over many exchanges, though this mechanism often seems not to be very well supported by the email clients of my correspondents. (I often end up increasing the quoting manually to restore a semblance of the correct quoting of a thread.  Oh, well...)
    I've been using mail.app only since I installed 10.7, shortly after it was released.  With varying success, especially when using formatted as opposed to plain text. Exchanges with some people work more or less flawlessly.   The most common difficulty: I have trouble opening up vertical space below an incoming, quoted paragraph in which to type my response to that para. Up until today, I've always been able to find a way, by exeriment of where I put the cursor, using shift-enter instead of enter, etc, etc.
    But for a message I just received, I cannot.  Every attempt I make to open some vertical space results in ... trouble.  If I put the cursor on a blank line between incoming paragraphs and command "decrease quote level" I get 8 inches [!] or so of quoted vertical space, followed by 8 more inches or so of unquoted vertical space, followed by the following paragraph and the rest of the thread, apparently intact.  That's not right!  
    Fortunately, I can undo and resume ... to do what?  I get a similar result if I try placing the cursor that line and hit "enter".  Or "Enter".  Or "shift-enter".
    Yeah, it looks like I've opened 10 inches in which to insert my response to the first paragraph, but first I need to get rid of most of the inserted quoted vertical space -- an impossible task, as far as I can see.  If I put the cursor on the first line of unquoted space and backspace, the 10 quoted inches stay the same and characters delete from the end of the previous quoted parag.
    What's going on?   Are there any methods of recovering some semblance of normal operation so I can answer this incoming message? (OK, I've given up and responded by top-posting.)   I note that I can view the source of the incoming message, but I see no way to view the source of the response, to see what exactly is going on. What is actually being inserted in the formatted text source that creates the mess I observe?
    In this case, viewing the incoming source seems to reveal only one apparent client name: Zimbra.   Is that a client?  Could Zimbra and mail.app have ... issues with each other?
    Are there any mail.app add-ins that might help?   Work-arounds?   (Yeah, probably converting to plain text would solve the problem, but that has other issues.)   Any applicable help or articles?
    Am I missing anything incredibly obvious?
    TIA

  • How can I get rid of Australis without using Classic Theme Restorer or how can I save vertical space?

    Hi!
    I have a widescreen notebook so limited space on the vertical axis. So
    1) I want to get rid of the tab bar when I have only one window open.
    2) I want to get rid of the title bar which includes no necessary information.
    3) I want to move the adress bar to the menu bar.
    Before Australis, this was easily done. After I did the update I searched very long for solutions. I found only Classic Theme Restorer. It is good, but it often causes my computer to high power consumption which makes the notebook very hot.
    So ho can I get vertical space (see 1 - 3)?
    Best wishes, Dimi

    Hello Dimi,
    # I am not sure if it can be done without the use of extensions, but if you are okay with installing one, [https://addons.mozilla.org/en-US/firefox/addon/tab-mix-plus Tab Mix Plus] gives you the option to hide the tab bar when you only have 1 tab (in addition to many other options). Under the Tab Mix Plus options after installing, the option to hide it will be under Display > Tab Bar. Another one after a quick search is conveniently titled [https://addons.mozilla.org/en-US/firefox/addon/hide-tab-bar-with-one-tab/ Hide Tab Bar with One Tab].
    # The title bar can be removed by clicking [[Image:New Fx Menu]] followed by Customize. At the bottom of the page that opens should say "Title Bar" (will be beside "Show/hide Toolbars), if you click that the Title bar will disappear and be merged with the Menu Bar.
    # I am not sure if the address bar can be moved anymore, but if you still have your Bookmarks Toolbar, that can be placed beside the menu options to give you more space. Go to the same page as in step 2, then click and drag the bookmarks toolbar onto the same toolbar as the menu bar.
    Hope that helps.

  • Australis does not take up enough vertical space.

    Removing the option to use small icons was a step in the right direction, but there's still too much vertical space. I suggest adding more padding, larger icons, and perhaps more default toolbars to reduce the vertical viewing space to about 1 pixel.

    I assume that this is not really a problem, but rather meant to be ironically to emphasize that the Australis design is taking a lot more screen estate for the user interface then the current release leaving less room for the browsing area.<br />
    The OP seems to suggest to enlarge all toolbar items that much that the full screen minus 1px will be taken up by the toolbars and its icons. :wink:<br />
    Yes, the Australis design is taking up more screen estate as this is to prepare for touch screens and tablets that need larger icons.
    There will probably be themes and extensions that will address this expansion for normal screens and allow for more browsing estate in these cases.

  • Key Command for Option Clicking a Marker

    Option Clicking a Marker does just what I want. It sets the playhead to the beginning of that marker without selecting the marker. Now if I could make the Keypad behave the same way, I could save myself a lot of damage to my Marker tracks. Right now a keypad # selects the marker, moves the playhead to it and sets the locators around it. preferences to make this more granular would be welcome.
    The option keypad numbers seem to be unused in the default key commands. Perhaps the option key could be set to trigger the same behaviour as option clicking a marker. it makes it intuitive (meaning I tried it.)

    The only way I can think of is to use a Macro app like QuicKeys assigning a KeyStrokes to a sequence of two key commands:
    For example:
    ctr+opt+cmd+1 triggers 1 (go to Marker 1) followed by sh+opt+D (Deselect All)
    ctr+opt+cmd+2 triggers 2 (go to Marker 2) followed by sh+opt+D (Deselect All)
    ctr+opt+cmd+3 triggers 3 (go to Marker 3) followed by sh+opt+D (Deselect All)
    You can assign the QuickKeys commands (ctr+opt+cmd+1, etc) to the keypads and they will move the Playhead to that Marker and selects the Marker. However, QuicKeys sends the second KeyCommand right away and deselects the Marker.
    No deleting of selected Marker by accident anymore.
    The KeyCommands in Logic are already very powerful, but when combined with QuicKeys (or any other Macro app) that lets you fire up a sequence of KeyCommands or mouse click on specific areas on the Logic interface per key commands, then it gets really powerful. Combine that with multi-touch gestures on your TrackPad using the amazing BetterTouchTool app, an you can take your customized workflow to a whole new level.
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • Creating a vertical marquee in flash cs4

    Does anyone know how to make a vertical marquee in flash cs4?  I can make a horizontal one with no problem but I am having problems creating one that is vertical.  any help or if anyone knows any tutorials it would be very much appreciated.
    thanks in advance!!

    I am just using  simple tweens( that is all I know) changing the x to y is a good idea but  I am new to action script and dont know how to write the code to change it from x to y.  Do you know of any tutorial or anything that discusses this?

  • How to remove the space marked other on an iPhone 6 Plus?

    I recently purchased an iPhone 6 Plus and I can't for the life of me remove all that space marked other. I know that apple devices save a lot of data from apps and such into that category, but I've never built up this much into that category. My iPhone 6 Plus has 2.10GB in the other section and i'd really like to get rid of it. Can someone give me ways to clear it out? I've already tried deleting and reinstalling my apps. Ive also tried restoring my phone, but nothing.

    Sorry, the other that you have is normal size, you can't delete others or have it at 0 GB
    What is "Other" and What Can I Do About It?

  • When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator)

    Mac OS X 10.6.7
    CS 5.5
    When Firefox is open the zoom function (option/command/space bar) does not work in Adobe programs (InDesign, Photoshop, Illustrator). This happens only when Firefox is open and when I close it the zoom functions work fine again without having to restart the applications.
    This is intermittent but happens quite frequently each day if Firefox is active.

    MDN doesn't mention -chrome being used for ordinary web pages: https://developer.mozilla.org/docs/Mozilla/Command_Line_Options#Chrome
    When I use
    firefox.exe -chrome about:permissions
    I get a usable window, but zoom doesn't work as you noted.
    How about using an intermediate page and window.open() for the target page? You can (mostly) restrict the chrome of windows opened that way, but it will leave behind the intermediate window...
    https://developer.mozilla.org/docs/Web/API/Window.open

  • Print immediately option default  tick mark Missing

    Dear All,
    We are using Ecc5 on windows 2003.
    While printing in the Spool control   
    The Print immediately option is  tick mark by defaulted
    But now it is not tick mark by default
    Earlier it is there .
    Please guide how to set  Print immediately  by default  tick mark.
    Thanks,
    kumar

    And how is this related to oracle?
    May be if post your question in a more relevant forum you get a better/proper answer.
    I'd try SAP [NetWeaver Administrator|SAP NetWeaver Administrator;

  • Extra vertical space in FF2

    http://www.emergencypettemecula.com/temp.html
    I am using an image at the bottom of this page to simulate a
    drop shadow. In
    IE6 this displays perfectly. In FF2 there is a small vertical
    space between
    the #footer div and the image. I can't see where the space is
    coming from. I
    have set margin:0 for img in my CSS.
    Any suggestions?
    Thanks
    Walt

    Michael Fesser wrote:
    > .oO(Osgood)
    >
    >> Michael Fesser wrote:
    >>> .oO(Osgood)
    >>>
    >>>> Not really sure why you're using a 'strict'
    doc type.
    >>> Better and cleaner code.
    >> It can be..... depends how well you know html.
    There's no point in using
    >> a strict doctype if you don't know it that well and
    if you do know it
    >> well theres still really no point...
    >
    > I see it this way: If I want to write clean and
    efficient code, I don't
    > want to use old and deprecated stuff. So why use
    transitional HTML?
    > Doing it in "Strict" has all I need.
    If you CAN write clean an efficient code theres no difference
    in how a
    page performs whatever the doctype as long as it complies. If
    youre not
    well versed in writing clean and efficient code its probably
    not a good
    idea to use a strict doctype.
    In the end you either know how to write good html/xhtml OR
    you don't.
    >> other than to 'pretend' you're in a
    >> different league to others.
    >
    > Sure, I am. I always try to write as valid and
    meaningful code as
    > possible. For me it's not only about "working" in the
    browsers - the
    > code itself has to be of some kind of quality. Doing it
    the "Strict" way
    > helps a lot with this.
    Not really. I can write validate and compliant code that
    works x browser
    without using a 'strict' doc type.
    >> Use what you want but I wouldn't be telling those
    who are new to html to
    >> be using it.
    >
    > Especially those who are new to HTML should learn it
    correctly, right
    > from the beginning. They should learn how to write
    meaningful and
    > properly structured code without relying on deprecated
    1980's stuff.
    Transitional is far more applicable for beginners in my
    opinion. I guess
    you're the kind of person that would set out for the North
    Pole before
    being fully equipped with the knowledge you need.
    >> As you say it requires a little more thought that
    isn't
    >> strictly necessary. A well composed 'transitional'
    page will display and
    >> perform equally as well as a 'strict' page with less
    issues involved.
    >
    > Browsers will (try to) display even the worst crap.
    Enough said. What appears in the browser is what really
    counts.

  • Flash Text and Flash Button options have dissappeared in DW CS4

    the Flash Text and Flash Button options have dissappeared in the insert menu in Dreamweaver CS4. They used to be there but not now

    You need the Dreamweaver forum - click here.

  • How to delete vertical space between two divs?

    I have a very simple page right now. Top div holds an image. The div below it holds another image. Both divs appear to be adding space to the bottom. I know other's have had this issue - yet when searching the forum I'm not finding anything. I've added 0 for padding and margins.... I"m out of patience. Want to go back to tables (but I won't let those divs beat me!) help please? http://www.duenorthdesign.com/christmas
    I even added a container around everythign to see if that would help and it didn't. And my height dimensions match my images exactly.
    OK, found the answer after nearly 3 hours. Due to  doctype html5 I used:
    img {
    vertical-align: bottom;
    Just maybe this will help someone out there searching..... I went through about 50 attempts from reading posts before I stumbled on this one.

    duenorth09 wrote:
    OK, found the answer after nearly 3 hours. Due to  doctype html5 I used:
    img {
    vertical-align: bottom;
    Here's another (simpler) fix for the entire page...
    img {display:block;}
    What this does is remove the space for the text descender that is attached to display:inline elements (lower case j, g, q, etc).

Maybe you are looking for

  • First MBP Grey Screen/Boot Problems/Only boots in Safe Mode

    Hi everyone, I've spent the last few days researching previous troubleshoots and threads on the subject, but haven't had much luck unfortunately. This is a 2011 MBP, 2.2 GHz, 4 gb RAM, 15 inch. As a preface, I use(d) an external monitor via my MBP's

  • EDI FOR ORDER TO CASH CYCLE

    Hi, i am new in edi. what are step to implement edi for order to cash cycle. what are the idoc we are going to use in this scenario. and what are the edi we used for this scenario. If anyone has any material for this scenario then please give me link

  • Suddenly iTunes doesn't 'see' my entire library though all the folders are still there

    Help! all of a sudden, out of the blue, when I open iTunes, it only shows 5 albums in my library, most of which were purchased through iTunes, but not the entire collection of probably 75-100 CDs I had imported in over the last several years, nor any

  • Are java byte[] stored on the heap?

    are java byte[] stored on the heap? If not, How can I clear a byte[]? For example in C, I could simply put the '\0' at the zeroth index. Please help. hm

  • Dynamic ALV GRID screen in a class? Possible?

    I have created a class(I have done it locally as to be able to use it for mutiple clients) that I include in programs that I want to implement the alv grid for using the FM approach. Doing this allows me to easily implement the ALV quickly. However,