About Loops?

As I didn't have much space left in my HD (1.24 Gb) I decided to move all my loops in an external disc. PROBLEM.Garageband now cannot find them.It does not even ask me where they are so I can direct it to the right folder. What can I do? Taking them back where I took it from is not an option.

http://www.bulletsandbones.com/GB/GBFAQ.html#loopsexternaldrive

Similar Messages

  • Query about loops in an APEX calendar...

    Hi everyone,</br></br>
    I would like to know how to make a loop with the following settings:</br></br>
    1. I have a calendar on Application Express 3.0.1.00.08.</br>
    2. I do create some events on it, and got a start and end date.</br>
    3. On the calendar I can only see the event on the start date, but I need it to be seen from the start one until the end one...
    </br></br>
    So I went to PL/SQL and made the following tests:</br></br>
    1. created a loop example and tried to understand it:</br></br>
    DECLARE</br>
    a NUMBER := 0;</br>
    FS DATE := SYSDATE;</br>
    FF DATE := (SYSDATE+5);</br></br>
    BEGIN</br></br>
    WHILE ( FS < FF ) LOOP</br>
    a := a + 1;</br>
    FS := FS + 1;</br>
    dbms_output.put_line('paso ' || a); </br>
    END LOOP;</br></br>
    dbms_output.put_line('Dato a: ' || a);</br>
    dbms_output.put_line('Dato FS: ' || FS);</br>
    END;</br></br>
    I do get this as an answer:</br>
    paso 1</br>
    paso 2</br>
    paso 3</br>
    paso 4</br>
    paso 5</br>
    Dato a: 5</br>
    Dato FS: 17-MAY-08</br></br>
    Statement processed.</br></br>
    0.00 seconds</br></br>
    2. Once I had this I decided to modify what I had:</br></br>
    This is the block of code that needs to be repeated.</br></br>
    select '< a title= " TGB SCHEDUL " href = "f?p = &APP_ID.:3:' || :APP_SESSION || '::::P3_ID: ' || ID || ' " > ' || EVENT_NAME || '</a>
    ' EVENT_NAME,
    START_DATE</br>
    from     APP_TGB</br></br>
    So I placed it in the middel of the loop...</br></br>
    DECLARE</br>
    FS DATE := SYSDATE;</br>
    FF DATE := (SYSDATE+5);</br></br>
    BEGIN</br></br>
    WHILE ( FS < FF ) LOOP</br>
    select '< a title= " TGB SCHEDUL " href = "f?p = &APP_ID.:3:' || :APP_SESSION || '::::P3_ID: ' || ID || ' " > ' || EVENT_NAME || '</a>
    ' EVENT_NAME, START_DATE
    from     APP_TGB;</br>
    END LOOP;</br></br>
    END;</br></br>
    And got this message:</br>
    1 error has occurred</br>
    ·     Query cannot be parsed, please check the syntax of your query. (ORA-06550: line 8, column 3: PLS-00428: an INTO clause is expected in this SELECT statement) </br></br>
    Yes it was my mistake, I forgot the cursors in the selects… but here is where I do really need your help as I really don’t know how to implement them, and now with the variables that I have got.</br></br>
    I do really appreciate if anyone can help me out with it.</br></br>
    Best regards.</br></br>
    Jaison González</br></br>

    Hi Dimitri,<br><br>
    Once again, thank you very much for your time and answer,<br><br>
    1. Is it really necessary to do this for your whole table? There is no WHERE clause in your statement <br>
    Yes you are right I in the block of code that I sent you, I don’t have any WHERE clause but on the tests that I made, I have the following:<br><br>
    select START_DATE+level-1<br>
    from ( SELECT '<a title="TGB SCHEDUL" href="f?p=&APP_ID.:3:' ||
    :APP_SESSION || '::::P3_ID: ' || ID || '">' || EVENT_NAME||
    '</a>
    EVENT_NAME, START_DATE, END_DATE from APP_TGB WHERE ID = 141)<br>
    a connect by level <= (END_DATE - START_DATE)<br><br>
    But I as I have more that one event on the calendar, which are identified by different IDs, I remove it (the WHERE clause) thinking about the calendar’s convenience… <br><br>
    2. I guess you want in your outer select also the event_name?
    select start_date+level-1 as sdate, event_name, start_date, end_date
    from (select ... )<br>
    Yes, I will prove it and tell you how it works… sorry about it… <br><br>
    3. Not sure what you mean with that?<br>
    Right now, if I have as start date 5 and end date 10, it shows me on the first day (one) EVENT_NAME, on the second (four) EVENT_NAME, on the third (twelve) EVENT_NAME… and go on till it gets to the 10th…<br><br>
    Thank you very much for your help.<br><br>
    Best regards,<br><br>
    Jaison

  • How to disable 'Hello'tried about loop:enabled -not working

    I have the new version of Mozilla Firefox and it starts up with 'Hello' that allows video talking. I have tried to amend about:config, loop:enabled to disable it but this does not work, each time I start up my machine 'Hello' is back.
    Any suggestions? Could the fact that my History clears daily mean the change to Hello is not being saved?

    hello DivaDiva, are you referring to the current hello promotion on the firefox start page? this is different from the actual feature itself which you can disable through the loop.enabled preference & will be featured on the homepage for just a few days...

  • Question about loops

    hey guys,
    with this piece of code here... right now I have it reading a dataSet and printing out the first Value out of 9 datapoints. How can I tweak this so that it would read through ALL 9 datapoints. I know i can do a loop but im not sure how to go about it!...
    int numDataSets = dc.size(); // determine number of data sets in collection
          for (int i=0; i<numDataSets; i++) {
            dataSet ds = dc.get(i); // get the ith dataset
            String  filename = ds.sourceFileName;
            System.out.println("the number of DataSets: " + numDataSets);
            dataEl  el = ds.get(0); // get the 0th element of the ith dataset
            double value = el.getMainValue(); // get the associated main value
            int dateInt = el.getDateInt();
            //for (int dateInt=0; dateInt<0; dateInt++) {
            System.out.println("data set " + filename + ": value " + value + dateInt);
          }

    You'd use a nested loop. It's no trouble to nest one loop inside another. Traditionally, if i is the index variable of the outer loop, then j is the index variable of the inner one.
    By the way, if dc is a java.util.Collection (saying that it's a java.util.Collection means that it's a class that implements that interface, or implements a sub-interface of that interface), and if you're using JDK 1.5 or above, then you don't need to use an explicitly indexed for loop. You could just do this:
    for(dataSet ds : dc) {
        // your code here
    }And you could easily nest a similar loop inside of that.

  • Confused about loops - David Nahmani book

    I bought LE8 the other day, and I'm trying to go through David Nahmani's excellent book.
    In the first chapter - building the 'My New Day' song - you have to insert some loops including 'Deep Electric Piano 05' from the loop browser. Now I only seem to have 'Deep Electric Piano 01' which just doesn't sound right!
    Yet, if I load the pre-done version from the book's DVD, then the 05 one is there and sounding good.
    Now, I have (I think!) installed the loops from the DVD by dragging the correct folder to the loop browser.
    Anyone got any ideas on this?
    Now I know there are differences between LE and Logic Pro, but I think this is supposed to work.
    Thanks.

    OK, I sorted it out. I hadn't downloaded the complete Garageband loop pack.

  • About loops,conditions

    Hello @ll,
        I am new to ABAP and I got a task to modify functionality of an Include.There are somany loops and if,case etc., conditions in it ....My Question is how to check the code its almost around 1500 lines code...How to check the each loop and each If ..endif conditons...whether they are working fine or not ...Is there any systematic method we can follow..give some guidelines to work on .....

    Hi,
    Set the Break-Points in the code wherever it is required and in the Debugging mode validate your required internal tables and variables by using the Watch-Points and this can be more easy to understand the loop and if endif conditions and can check the execution and logic of the program
    Regards,
    Ramesh

  • Quick question about looping movie clips

    I'm a REAL Flash novice, and I'm trying to get a movie clip to loop 3 times, and then continue on.
    Here's the code I've written (I'm sure it's painful to see)
    stop();
    if (!loopCount) {
      var loopCount:Number = 0;
    loopCount++;
    if (loopcount < 3) {
    gotoAndPlay (1)
    if (loopCount = 3) {
      gotoAndPlay(363);
    Could someone help me out?
    Thanks,
    Brandon

    use double equal (==) to test for equality:
    stop();
    if (!loopCount) {
      var loopCount:Number = 0;
    loopCount++;
    if (loopcount < 3) {
    gotoAndPlay (1)
    if (loopCount == 3) {
      gotoAndPlay(363);

  • Question about Looping through tables in Adobe Form

    Hello,
    We have an adobe form which is to be filled offline. It consists of a table. Table can have repeating rows and user can add\remove rows as they wish.  The cardinality of the context node where we need to bind this table data is set to 1…n
    We want to know the process to get all the values in the table back into our context node once the form is uploaded. I assume we need to loop through the table, and add elements to the context node.  Can someone please let us know if we’re on the right track, and provide some sample code if possible?
    <b>We can’t figure out a way to loop through a table inside an Adobe form.</b>
    We are using Web Dynpro Java with Adobe Livecycle Designer 7.1
    Your help is much appreciated.
    Thanks,
    Rob.

    Try using...
    for (z = 0; z < 16; z++) {
         this["cb"+z].setStyle("styleName", "cssCBstyle");
    That is the way to target them.  I haven't dealt with setting styles, so I can't answer for that aspect working or not.

  • About looping

    Hello,
    I have one internal table IT_MDEZ with certain fields and in second internal table i have some fields .
    i have to read the IT_MDEZ where one field EXTRA lies in second internal table.
    It is something like this.
        LOOP AT it_mdez WHERE delkz = 'VC'
                              AND dat00 LT sy-datum
                              AND kunnr = it_temp1-kunnr.
                             AND extra(10) IN  ( it_cview-vbeln ).
    I need syntax for doing this 'AND extra(10) IN  ( it_cview-vbeln )'.
    extra(10) stores value of VBELN and have to run the loop no of times this value lies in the concerned internal table for each KUNNR.
    Please help.
    Rgds,
    Anshu

    Hi,
    I have already tried this, but the problem is in my internal table i have more than one vbeln for a particular MATNR & KUNNR.
    When I do this, it takes first vbeln and put the data , then for second and so.....so they are repeating values....
    My requirement is At new matnr.
    For a particular KUNNR from first internal table and corresponding vbeln,  check all the vbeln in second internal table and sum the corresponding field MNG01 just once....
    This is my first internal table:-
    Row     WERKS     MATNR     VBELN     KUNNR     VKORG     KDGRP     MATKL
    1     BP01     W48101     18     100003     BP01          W00010
    2     BP01     W48101     1     C4101     BP01          W00010
    3     BP01     W48101     13     C6100     BP01          W00010
    4     BP01     W48101     12     C6100     BP01          W00010
    5     BP01     W48101     11     C6100     BP01          W00010
    6     BP01     W48101     10     C6100     BP01          W00010
    7     BP01     W48101     9     C6100     BP01          W00010
    8     BP01     W48101     8     C6100     BP01          W00010
    9     BP01     W48101     7     C6100     BP01          W00010
    10     BP01     W48101     6     C6100     BP01          W00010
    11     BP01     W48101     2     C6100     BP01          W00010
    12     BP01     W48101     3     C6100     BP01          W00010
    13     BP01     W48101     4     C6100     BP01          W00010
    14     BP01     W48101     5     C6100     BP01          W00010
    15     BP01     W48101     19     C6113     BP01          W00010
    Output required is :-
    W00010     W48101
                                      c6100  = sum of all mng01  from second internal table for corresponding vbeln.
    Hope I am clear..
    Regards,
    Anshuman

  • About LOOP...END LOOP

    How to correctly specify the integer values in the following Loop command?:LOOP (integer, [break])COMMANDS ;ENDLOOP For I don't know why they use "30" in LOOP(30)."FIX("New York",Camera,Actual,Mar) LOOP(30) Commission = Profit * .15; Profit = Margin - "Total Expenses" - Commission; ENDLOOP;ENDFIX"

    Loop and endloop in smartform - if you want to print multiple data for each header ,then we need to use..
    one example : i have sales order - order may contains more than one item..if you want to print multiple items then we need to go for loop endloop.
    Program lines - without effecting program - we can change the code within smartform( I mean we can pass the values and get the values based on condition )
    i am getting material number from program and i am printing here,later on customer is looking for material description,then you can write simple code within samrtform by using program lines.

  • Basic Questions about Looping and Headers

    Hello,
    Relative SSRS newcomer here and I have a couple of foundational questions...  These are based on the simple premise of the underlying dataset returning multiple rows of data, elements of each to be displayed on subsequent pages of the report.
    Is it fair to day that the Table (or Matrix) are the basic elements used for an iterative report?
    Assuming the above is true, I'm using a Table for my first experiment here.
    I can iterate and display my records but I'm struggling with header and footer information.
    I want to display header and footer information on each page the is part of the current record.  I've tried to add these elements in the 'header row' of the table, but that doesn't seem to do it.  I don't see any facility for a footer.  Is
    this to be accomplished with row groups or something?
    Any guidance would be appreciated.

    Hi Steven,
    According to your description, you want to display interview questions and answers between interview name and date, and different interview name displays in different page. After testing the issue in my environment, we can use list to achieve your goal.
    Please refer to the following steps:
    Add a table to the design surface, drag question_name, question_answer fields from the Report Data pane to the table cells, and delete the last column of the table.
    Click anywhere in a tablix data region, in the Grouping pane, Click Add Group, select Parent Group, in the Tablix Group dialog box, select interview_name, then click OK. 
    Right click [interview_name] next to details symbol, click insert row, select Inside Group – Below, then Inside Group – Above.
    Delete the first row and the first column.
    Merge all the cells in the first and last row, then drag interview_name to the first row and drag interview_date to the last row from the Report Data pane. 
    Add a List to the design surface, drag the tablix into the List.
    Select and right click the List, in the Grouping pane, Click Group Properties, click Add button and select interview_name from the drop down list. Then click Page Breaks, and check Between each instance of a group check box, click OK.
    The following screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Newbie question about looped querys

    Hi there!
    I'm starting in this thing of CF dev .
    My question is the next;
    I have a table with 2 foreign keys and want to order my
    result this way :
    a
    1
    name surname etc,etc
    name surname etc,etc
    2
    name surname etc,etc
    3
    name surname etc,etc
    name surname etc,etc
    name surname etc,etc
    b
    1
    name surname etc,etc
    name surname etc,etc
    2
    name surname etc,etc
    name surname etc,etc
    and so on ...
    a and b belong to foreign_key_1
    1 and 2 belong to foreign_key_2
    oneof my try codes for the query is the next one :
    select foreign_key_1,foreign_key_2,name, surname,etc...
    order by foreign_key_1 group by foreign_key_2
    thank you in advance!

    Use the group attribute of cfoutput. The cfml reference
    manual has a excellent example. If you don't have one, the internet
    does.

  • About loop's

    Greetings!
    I'm working with a java-learning-book, and I can't figure out one of the Programming Projects...
    Write a program where user input a number, and then print a triangle consisting of asterisks. The first line will have one, the second two, and so on, up to the input number, then one less asterisk for each line down to zero. Anyone got a tip or anything?
    Yeah.. thanks ;)

    ok, ok. One way to do it:int input = 13;
    int num = 1;
    for (; num <= input; num++) {
         for (int j = 0; j < num; j++) {
              System.out.print("*");
         System.out.println();
    num = num - 2;
    for (; num > 0; num--) {
         for (int j = 0; j < num; j++) {
              System.out.print("*");
         System.out.println();
    }

  • Loops in Logic?

    Hi,
    I am a garage band user and I am considering upgrading to Logic 8. I use the loops in garage band a lot, but on the product page for Logic 8 there is no mention of any loops capabilities or any loops being included with the software. Meanwhile I noticed that Logic 8 requires 6GB of space or something, so I can't imagine that loops are not included.
    Can any of you owners let me know what is included?
    Thanks.

    To know what is included you can read it on Logic Express Tech Spec:
    http://www.apple.com/logicexpress/specs/
    About Loops you can read this page
    http://www.apple.com/logicexpress/#writing
    cheers
    rob

  • Loops in Context

    Hi All,
    I'm just starting to use Business Objects Designer recently and I have a question about loops.
    Consider the following situation:
    ------------      a    --------------    c
    | Case     | ----------| Category | -----------\    -------------
    ------------           --------------           ----|Durability |
          |           b     -------------    d      ----|           |
          | ---------------| Status     |----------/     ------------
    Cardinality from left to rigth:
    Join A : N - 1
    Join B : N - 1
    Join C : 1 - N
    Join D : 1 - N
    So, a Case has a Status and a category. Depending on  the category the status has a durability.
    I designed my universe as above and when i create a Web Intelligence Document in InfoView it picks both join C an D which is intended. However the Integrity Check comes up with this as being a loop.
    Can I keep my design like this, even though it would be marked as unresolved loop or should I try another aproach (derived table probably?)
    I hope my question is clear enough, Please Advice,
    TIA

    You don't want loops!
    Seriously, that means that you will always get ALL joins in the query if you need just one...
    So in this case only combinations that are both in the left and and in the right hand table.
    There are only very limited situations in OLTP schema's when you want that and even then it is better to hide the loop using derived tables.
    My personal approach in any schema after you solved these difficulties in OLTP schema's
    1) Look for functionally different uses of tables. Like address that is joined to customer three times because they have more than one addres. Or calendar that is joined to different dates. For these cases use aliases.
    Another pointer can be that the users want two different objects for the same table.column.
    2) Doublecheck your cardinalities, not by using the check, but by making testqueries or just using your brains.
    A product can be sold more than once so product to sales is 1:N, duh...
    3) Hit the detect context button and let BO generate the contexts for you.
    Rename if you want (but its easier to work with an alias on the context driving table that has the name of the context ;).
    Done!
    Hope this helps,
    Marianne

Maybe you are looking for