Problem with subforms

I did my first "intelligent" form last Thursday. Using test presentment it worked perfectly. Yesterday I did a couple changes (renamed some fields and removed a couple that won't be in my DAT file) and it is no longer working correctly.
This is a fairly simple form. It is a 2 page thing with a variable number of detail lines on the first page. I made the top part of page 1 a subform and currently have one of the fields as ^field so it gets laid down. So they could be repeated on an overflow page I made the column headings a subform. Then the detail line is a subform. The footer is a subform that gets layed down at page full time. Page 2 is a fixed format and to get it to print I made the whole page a subform that gets layed down at end of data time. I put some *no-print* text after the physical bottom of page 2 so that it would never fit if the number of detail lines happens to leave enough space.
Until I made my changes yesterday it worked perfectly. Page 1 was good. The overflow page was good. Page 2 was good. After my changes page 2 no longer goes on a separate piece of paper; it follows immediate after the last detail line on the same page. If it doesn't all fit on the page it is just truncated. This occurs in spite of my checking the radio button to "always force a new page with this subform".
What do I need to do to get this form working properly again?

I was thinking about doing a followup so thanks for the hint & the reminder.
I finally worked through the problem late last week.
Since it had originally worked before I changed some field names & such I thought that rebuilding the form from scratch might help, making the changes before I set up the subforms. It didn't.
I'm used to working with pure ^global fields with the occasional ^field definition so my original (and rebuilt) form had mostly global fields with a single field for each subform defined as ^field so that the subform would be called forth. That appears to have been my problem.
Once I made every field ^field and not ^global the form started working mostly correctly and the remaining quirks I can live with.
To begin with, every page started the text at the very top even though I had them defined with some blank space at the top. It appears that when I grouped the stuff as a subform that the white space just isn't there. I was able to get page 1 to print properly by setting the "always position in same vertical location" property but for the overflow page for the detail lines and pages 2 & 3 that can't be done because they then end up overprinting page 1. I was able to get pages 2 & 3 down a bit by defining a non-printing field above the text that was the actual subform. I can live with the higher than desired printing and the repeating of some text from the top of page 2 at the bottom of page three is undesired but isn't a show stopper since this page just gives the user some auxillary information regarding where the original was printed. (The original is printed off site via non-Central methods and this task was just to create a PDF version.)

Similar Messages

  • Problem with subform set

    Hi all ,
    I am facing a problem with subform set. When i use two subform sets with same set of conditions in a form, only the first subform set works while the second one does nothing. Did any of you faced the same problem ? If so Please let me know the solution you came up with. Thanks.
    SrPrabhu

    Hi scott,
    The problem is with subform set and not subform. In subform set, we can give conditions to make only one subform visible at a time that satisfies the condition. First create a subform set having more than one subform. Now apply the conditions to that subform set. Check if it works. I m sure it wil work. Now just make a duplicate copy of the same subform set. Place it in the same form so that now two subform sets are available. Now preview the form. U wil fine only one subform set working and the other one doesnt.
    We can use any number of subform set within a form. If different conditions are applied to each subform set , it works fine.
    i wonder now wat wud u do in case if we are in need of two subformset having the same condition in a form ?
    Thanks,
    Sr Prabhu

  • Problem with Subform Instances at First Opening

    Hi All,
    I have a large, complex form that has several subforms that I need to have zero instances the first time the form is opened. Most of those subforms that I set the initial instances = 0 on the Object pallet do exactly that--they behave and open with zero instances! However, I have one subform that always starts with an instance (1 instance instead of zero instances). I really don't want to work-around this, as I have done in the past when this has heppened. I want to solve it.
    I have tried
    Unwrapping the subform and the re-wrapping in a new subform
    Manually editing the <occur/> element in the XML for the subform.
    repeatedly trying different things in the Object pallet--the initial count checkbox always reverts to unchecked and the count to blank--I actually see it un-checking itself and removing the "0", right after I return to Design View from the Preview. This even happens after I have manually set the values in the XML. I double-check the Object pallet to see that my edits are reflected there (they are) and then... upon returning from Preview, it reverts and my <occur/> edit vanishes.
    I have looked for scripts that might be causing this--without any luck.
    I have encountered this sort of thing before and finally gave up and used the "presence" property as a work-around. The subforms don't always get utilized by the user and they should only exist when the user needs them. I will be exporting the XML data out of this form and exporting a lot of empty elements just presents another problem I'd like to avoid.
    Any suggestions are most welcome. I hope someone knows of a solution--I have spent way too much time on this.
    Cheers,
    Stephen

    Hi,
    Thanks kjaeggin and Bruce,
    I have the checkBoxes unchecked and the occur element is <occur min="0" max="-1"/> .
    Actually, this is the way the checkBoxes and XML have been all along and the results are what what I have previously described.
    One of my attempts to fix this was manually adding the "initial" attribute to the <occur/> element (by directly editing since it won't stick in the Object pallet)
         <occur min="0" max="-1" initial="0"/> that the edit reverts to <occur min="0" max="-1"/>.
    Also I have tried
         <occur min="0" max="1" initial="0"/> this is what I really want (max="1") and it reverts to <occur min="0" max="-1"/> as well
    And
         <occur min="0" max="1"/> reverts to <occur min="0" max="-1"/>
    The documentation for scripting the "initial" property of an object says:
         "This property should be used only for printed and static forms."
    This doesn't make sense to me because static forms don't have repeating containers, so why would you need/use it?
    Finally, to rule out that there is a script or property within mySubform causing this, I have set the presence property for all the subforms contained within mySubform to Inactive (Exclude from form processing) leaving only a single static object to be rendered if there is an instance of mySubform. (Bruce, I am not sure you have this on LCD 9. It is in ADEP Designer 10 and is supported by the target version). The result is the same--I see the first static object GrandParent.Parent.mySubform.staticObject but when I add a GrandParent I see GrandParent.Parent.nothingElse -- the added GrandParent doesn't have a mySubform. So it only misbehaves when the form is first opened, not when a GrandParent is added.
    I have removed global bindings from the few objects in mySubform that have them--no change. I have commented out the 1 script in mySubform that runs at form:ready--no change. I am going to look at scripts outside mySubform that get values from objects within mySubform, to see if somehow that is where the answer is. I would think that scripts would impact new instances of GrandParent, as well. I've looked at all other form:ready scripts and none interacts with or get values from mySubform.
    I think I may just have to settle for a work-around. Sure would like to know whats going on here, though.
    Thanks,
    Stephen

  • Problem with Subform Instances at Form Opening

    Hi All,
    I have a fairly large complex form that has several subforms that I want to have zero instances the first time it is opened. Most of those subforms that I set the initial instances = 0 on the Object pallet do exactly that--they behave! However, I have one subform in particular that no matter what I do, it always starts with an instance. I really don't want to work-around this, as I have done in the past when this happens. I want to solve it.
    I have tried
    Unwrapping and the re-wrapping in a subform
    Edited the <occur/> element in the XML for the subform.
    repeatedly trying different combinations of min count, max and initial count values in the Object pallet--the initial count checkbox always reverts to unchecked and the count to blank--I actually see it un-checking itself and removing the "0", right after I return to Design View from the Preview. This even happens after I have manually set the values in the XML, double-checked the Object pallet to see that my edits are reflected there (they are) and then... upon returning from Preview, it reverts and my <occur/> edit vanishes.
    I have searched for some offending script that might be causing this--but there is nothing that fires automatically tied to the instances of the subform. There are initialize, formReady and calculate scripts on objects in the subform, but nothing tied directly related to the instances of the subfom?
    I have encountered this sort of thing before and used the "presence" property as a work-around. I will be exporting the XML data out of this form and I don't want a bunch of empty elements to deal with.
    Any suggestions (besides "have you considered being a gardener?") are most welcome. I hope someone knows of a solution--I have spent way too much time on this.
    Cheers,
    Stephen

    Hi All,
    I have a fairly large complex form that has several subforms that I want to have zero instances the first time it is opened. Most of those subforms that I set the initial instances = 0 on the Object pallet do exactly that--they behave! However, I have one subform in particular that no matter what I do, it always starts with an instance. I really don't want to work-around this, as I have done in the past when this happens. I want to solve it.
    I have tried
    Unwrapping and the re-wrapping in a subform
    Edited the <occur/> element in the XML for the subform.
    repeatedly trying different combinations of min count, max and initial count values in the Object pallet--the initial count checkbox always reverts to unchecked and the count to blank--I actually see it un-checking itself and removing the "0", right after I return to Design View from the Preview. This even happens after I have manually set the values in the XML, double-checked the Object pallet to see that my edits are reflected there (they are) and then... upon returning from Preview, it reverts and my <occur/> edit vanishes.
    I have searched for some offending script that might be causing this--but there is nothing that fires automatically tied to the instances of the subform. There are initialize, formReady and calculate scripts on objects in the subform, but nothing tied directly related to the instances of the subfom?
    I have encountered this sort of thing before and used the "presence" property as a work-around. I will be exporting the XML data out of this form and I don't want a bunch of empty elements to deal with.
    Any suggestions (besides "have you considered being a gardener?") are most welcome. I hope someone knows of a solution--I have spent way too much time on this.
    Cheers,
    Stephen

  • Problem with subform (hidden & visible)

    I am new to Javascript but feel embarrassed to ask since I have some programming background. Putting my pride behind me. I am trying to use a drop down list ("A" & "B") that will hide or make visible two subforms ("Subform1" and "Subform2"). This is pretty basic but I can not get it to work. Any suggestions?
    if (this.rawValue == "A")
    Subform1.presence = "visible";
    Subform2.presence = "hidden";
    else if (this.rawValue == "B")
    Subform1.presence = "hidden";
    Subform2.presence = "visible";

    Hi,
    I have the same problem even the form is save as a dynamic form but I am using Switch case as below:
    var sNewSel = this.boundItem(xfa.event.newText);
    switch (sNewSel)
    // Option 1 - Out-of-Agency Training
    case "Out-of-Agency Training (Send to D/D/O Training Coordinator)":
    xfa.resolveNode("Form1750.MainPage.SubSignature.EmployeeSig").presence = "visible";
    xfa.resolveNode("Form1750.MainPage.SubSignature.EmpDate").presence = "visible";
    xfa.resolveNode("Form1750.MainPage.SubSignature.CommSig").presence = "invisible";
    xfa.resolveNode("Form1750.MainPage.SubSignature.CommDate").presence = "invisible";
    break;
    ... option 2
    .... option 3
    ..... option 4
    It works at first but it does not after the form is submitted as all of the fields are visible.
    Any help would be appreciated.
    Thanks in advance,
    Han Dao

  • Problem with Subform placement

    I have two subforms that are visable when their checkboxes are clicked (Let's say SubbformA & SubformB). I have it so the user can view one or both subforms at the same time.
    I want Subform B appear at the top of the current page IF only Subform A isn't selected. Otherwise if both are clicked- Sub B stacks perfectly behind Sub A.
    It all works fine if I just click Sub B.........But if I select Sub A first and then deselect it then click B, SubB appears on the next page. Does that make sense? How can I fix this? Any suggestions would be greatly appreciated.

    George,
    yes, that is an annoying bug.
    I use the following work-around. When the blue circle vanishes, I go to "Metadata > Manage my Places" and create a new place there. Then I locate the photo using "Metadata > Assign location" and enter the name of the new place in the search field. That will bring back a blue circle, that I can adjust.
    -- Léonie

  • Urgent - problem with multiple users on same page

    Hi all,
    I have got an big problem with my app:
    when several users are using the same page, the action launched by USER_A affects the page displayed and used for USER_B.
    If there is only one user using the page, there is no problem at all.
    The webapp is deployed on Tomcat or JBoss and the problem remains the same on both.
    Thank you for your help.
    PS: I am not accurate because I don't know what to paste here.

    In fact, all my page beans are in REQUEST scope...
    The only bean in Application scope is the standard applicationBean created by Creator itself.
    We use one Bean in session scope which contains another class.
    I will try to explain our common process:
    - when logging into the app, the session Bean stores user data (rights for using app,...);
    - when navigating in the app, the user can search data, modify them and create one (if he has the right to do it);
    - to define the screen, we use a lot the beforeRenderResponse();
    - when viewing a data, the user can choose to modify it, so depending on the action, the page is in "CONSULT" mode or "MODIFY" mode. In the second one, he can display new gridPanel (as a subform) to populate datatable.
    The problem is obvious while using this grid: my grid can disappear if someone else has validated his form before me and if my page goes trough the beforeRender of my page.
    It is not really clear. If needed, i can give access to our application to show the problem (and msn adress too to talk about it).
    Thank you

  • Problem with flow of expandable fields

    Hi everyone,
    I have important problem with flow of expandable fields in table in dynamic PDF form. The issue I am talking about you can see at the top of column 3 on page 2 in PDF in link below.
    Here is uploaded PDF form and sample XML data (form has import button and is ReaderExtended that you can easily test it and see my problem):
    http://www.speedyshare.com/718224676.html
    Generally I have created table with 3 columns using Table object (each field has allow multiple lines selected and expand to fit).  It is closed in FormBody subform which is flowed subform.
    Row in table is repeatable and has “is allow to break page” setting set on.
    Sometimes when there is a lot of text and row page break there is problem with flow.
    For example text from one rows overlaps on text from next row.
    I tried to solve this problem by changing row height, indents, font size, line spacing but always when I thought that I have fixed it  I got another data which generated the same flow problem.
    Did anyone met this problem earlier and found solution to this issue? This is really important for me and I am really in dead end so any hints would be really helpful.
    I am using Adobe Livecycle Designer 8.1 and PDF form target is 8.
    I really appreciate any help in this problem.
    Thanks,
    Kamil Dłutowski

    I posted link to my form in my first post.
    Here it is: http://www.speedyshare.com/718224676.html

  • Problem with Grouping in Interactive Forms by Adobe

    Hey Guys!
    I have a problem using the group function for a table in Interactive Forms by Adobe and I have not found a solution yet, so I hope anybody can help me.
    I've created the table in the LiveCycle Designer using subforms and I want to use the group function for a specific field of my table. Now the problem is that the entries of the table are not shown grouped for the same values of my specific field but there is still one row for each entry. How do I have to edit binding, flow etc. for the subforms of a group?
    I hope anybody can help me or provide me a better solution.
    Thanks in advance.
    Martin

    Hi Otto,
    thanks for your reply.
    I'm sorry the 'grouping function' I've announced is called 'control levels' in English I can set this function for a field of a table in the context of the form in the transaction SFP in SAP. Then in the hierarchy the field is displayed above the group of the other fields of the table. Usually in the form this should lead to a 'grouping' for the specific field so if you have identical values there is just one entry in the form and all the rows that have this value should appear behind. My problem is that there is still one entry in the form for every row.
    Right now I'm using the solution you mentioned with the nested tables but i have some problems with the layout and page breaks (pagination).
    Thanks for your help.
    Martin

  • Problem with expanding textfield in Adobe LiveCycle Designer

    I've got an urgent problem with Adobe LiveCycle Designer and I really could use some help. The problem is that I'm trying to get my textfield expandable, but whatever I try, it's not working. What I'm trying to get done is that you can fill in a textfield, and when there is more text than the size of the field, the textfield expands to make the text fit in the field.
    I tried a whole lot of things:
    placing the textfield in a subform
    expand to fit (height)
    allow multiple lines
    allow page breaks
    flowed/positioned
    etc.
    The strange thing is, that no matter what I try to adjust, I can't change anything in the pagination tab. Maybe that is the problem, but I don't know what to do, to change that.
    In the examples of Adobe itself (Purchase Form) is an example of a textfield that sort of behaves as I want it to, BUT the problem is that that textfield in the subform has to be triggered to appear by a button (add comments) and that is what I don't want. I want the textfield to be visible from the beginning. But in that example you CAN see the pagination tab and make changes in it.
    I searched a lot in the Adobe Helpfiles of Designer, and I even bought and read/studied the book 'Creating Dynamic Forms with Adobe LiveCycle Designer', but still I'm not able to get this done.
    Is there anyone who can help me?
    Thanks in advance,
    Sterre

    I am creating my first .pdf with no training. I first converted a word doc of our form into a .pdf. Modified everything and thought I was the "bomb" for figuring it out. Then I tried to use the form and where I had "allowed multiple lines" I realized that it would allow that but not display it or print it except for what was showing.
    In researching for a solution, this site said to use "expand to fit". After much frustration I realized that this feature is only available if you created the form from scratch in adobe.
    I have figured out, somewhat, how to create the form and get the field to move with the text but I need the entire form to adjust to the input. Can't have one specific field expand into the rest of the form.
    I did some more research on this site, and it looks like the solution has something to do with 'subforms'. No idea what to do.
    If anyone knows if there is a way to do this with a converted doc (since I already have that completed) I would GREATLY appreciate it. If it isn't possible, could someone walk me through how to do it or provide a reference for a "barney style" walk through?
    Appreciate ANY assistance you can provide. THANKS! Guess I need to sign up for an Adobe Pro class. BTW I'm working on LiveCyle 8.0

  • Help with Subforms and Textfields

    Hi All,
    Basically, I am trying to template our company's contract form so that user can only edit the designated fields of the form, and all provisions written in the contract form remains untouched.
    My problem is (please see sample texts below), and I feel like I am dealing with this for ages despite extensive research, the content of the fillable textfield overwrites the text adjacent to it. In the sampel below, I set the underlined words as dynamic textfields. I don't have problem with 14th since the least texts I can put there is 3, like 1st. My problem is with January, because if I changed that to September, it expands to overwrite the text adjacent to it. The same is true with 2014, CLIENT, and Client Name. I've tried a combination of things like wrapping each elements in subform as positioned or flowed, auto-fit for both the fields and subforms, Keep with Next.
    Also, I want to have the fields to adjust their widths automatically so that text are kept close as possible to each other, like how you edit texts in MS Word. I don't want to have several spaced between of   May   , 2014 in case I typed in May as the month.
    I would greatly appreciate any solution.
    Example:
    This Agreement executed and entered into this 14th day of January , 2014, by and between: MY COMPANY (hereinafter known as the “SERVICE PROVIDER”) located at  Street, City, Country and represented by its Chief Executive Officer, Mr. First Last.
    - And -
    CLIENT (hereinafter known as the “CLIENT"), with its principal place of business Street Address, City, Country and represented by Client Name ,Title

    1. Do your schoolwork yourself. Don't look for the easy way out
    2. Ask specific questions, as opposed to just asking us to code the thing for you

  • Static/Dynamic PDF problem with Forms 7.0

    Hi all
    I wonder if anyone has an answer to this?
    I'm having problems with getting the instance manager to work correct in a couple of forms. It works great if I preview in Designer (8.1) or render through ES 8.2, but since we haven't upgraded our production environments yet, I'm stuck with Forms 7.0 there. And when I try to render with that, the form is simply not working as it should...
    My guess is that Forms 7.0 chooses to make the form static instead of dynamic, but how to change this behaviour from the xdp? I've checked all the options of making it a dynamic xdp via Forms->Properties and checked just about everything I can come up with, but it's simply not working right now... anyone with ideas?
    What I'm trying to do is to hide subforms depending on what the user has chosen in a different form (html), so that the user won't see irrelevant data. It's been done before but now it seems like Forms 7.0 wants to run the forms static always.
    I've contacted Adobe support for a week ago but still haven't got anything from them leading me the right way. That's the reason I'm now asking here if anyone has any good idea...
    A bit more information about what I've tried:
    When I set min instances to 1, they are all visible but then they don't hide.
    If I don't set minimum instances to 1, they don't display at all in forms 7.0 when choice Repeat subform for each item is set.
    Using initialCount set to 1 do no good.
    Doesn't matter if I use setInstances, addInstance or removeInstance as far as I've been able to see. I have also tried using presence = "hidden"; but with no luck.
    If the prefill xml file is using appropriate xml syntax, it shows correct number of subforms but since I also wants to hide irrelevant subforms, it's not an acceptable solution.
    Thanks in advance for any tips.

    Yes. I could add an "Of course" but it has happened before that it's something that simple. Been scratching my head for at least 4 hours just today and at least the same amount of hours before so I think I've narrowed out all the simple stuff but I might have missed one..
    Any more tips? One strange issue is the fact that the form behaves different if the prefill xml file is structured in different ways. Nothing to do with prefilling, just how the PDF itself behaves.

  • Some bugs / errors with subforms and id references

    Hi!
    Just hit another issue: when I put few subforms on the page, the performances of JDeveloper drop to snail running speed! Any keypress took 15 seconds. CPU was 50% (one core full, other not used – looks like JDev on Windows does not utilize dual core CPU fully). Restarting JDev resolved issue – next time same page responsiveness in JDev was OK. Looks like some memory leak or so happens when adding/removing subforms.
    Also, I noticed problems with component id referencing with subforms (for PartialTriggers). Somehow, the JDev shows no error in component reference (and it looks correct according to specs) but in runtime the Trinidad displays warnings in message log.
    Another, issue: the PopUp alignId attribute complains about referenced component id in JDev editor but works fine in runtime.
    I don't know if these problems are already reported / resolved.
    Regards,
    PaKo

    Perhaps said developers/maintainers are too busy preparing technical evidence for a major court case? ;-)
    Besides, why are you still using Java? I thought Real Developers code in lolcode or (a +/b/+ favourite), brainfsck... :D

  • Problems with layout and printing tables

    Hello,
    my first ADOBE-Form "projekt" makes more problems than expected, especially with the layout.
    Layout Problem 1:
    I want to print the data of a table (thats my only parameter in the interface and the table itself is deep structures with other tables). So I have bound the "standard" subform (the one ADOBE inserts automatically" to the table and selected that the subform is repeated after every record.
    Anyhow ADOBE processes only the first record of this table.
    Maybe the reason is, that I need to display the data of one record on two pages. So I created two pages each with the "standard" subform and bounded both to the table.
    What am I doing wrong? Do i have to do the page split another way?
    Layout Problem 2:
    I have a text field with multiple lines allowed. But it overwrites the content of the object, that comes below.
    Its the same with my other subforms for table data.
    How can I tell the system, that an object needs to be pushed downside on the page, if the context above needs more space?
    Thanks in advance for your answers!
    Regards,
    Frank

    Yeah, you say it
    subforms and they "flowing" etc. properties are killing me, but after some hours I think I got the concept.
    The form looks quite well, everything is pushed downwards if an item above gets expanded.
    But one problem remains: this form only prints the very first record of my table.
    I have no problems with the tables nested inside the main table. They work perfectly and everything is fine there!
    But I cant tell the form to print my other records...
    I somehow played around and made it work, but then the next record was not on the next page but directly after the subform created by the context area (if this terminology is correct).
    I played around even further and created a paging with reference to the context area, but then the first page looked quite odd (page 2, 3, 4... looks perfect).
    I tried to fix also this and then I somehow messed up my form and could not undo my changes (it was only a "to play with" copy...)
    Just to explain it again:
    I have one table (lets call it the "main table" because its the import parameter of the interface) and inside this table are other nested tables.
    I want to print one record of the "main table" across 2 pages and after that the next record of the "main table" should be printed beginning at the 3rd page.
    As I said, the two pages look wonderful (even though I have not yet covered the issue of what should happen, two pages are not enough for one record of the "main table"). but as soon as I try to display the next records of the "main table" as well, i am stucked in unpredictable layout problems.
    I cant believe that I try anything extraordinary. Lets hope that I can solve this with your very appreciated help.
    Thanks in advance Otto!!!
    And kind regards, Frank

  • Problems with instance manager and bound items

    I'm having a problem with bound fields.
    I have made a form that uses the instance manager so i can add several products,
    i'm using a button to export all this to a XML file  via XML schema but for some reason when i preview the form
    i can add new instances without problems and the original instance works ok but the second instance and all instances after that changes when anything is changed in any of them, they are in other words linked.
    Removing the xml schema made it work like it's supposed to but how do i get it to work with the xml schema?

    It sounds like your XML schema may not be properly setup to reflect the unlimited number of instances.
    <xs:element name="products">
         <xs:complexType>
              <xs:sequence>
                   <xs:element name="product" maxOccurs="unbounded">
                        <xs:complexType>
                             <xs:sequence>
                                  <xs:element name="product">
                                       <xs:complexType>
                                            <xs:sequence>
                                                 <xs:element name="productName" type="xs:string"/>
                                                 <xs:element name="useCase" type="xs:string"/>
                                            </xs:sequence>
                                       </xs:complexType>
                                  </xs:element>
                             </xs:sequence>
                        </xs:complexType>
                   </xs:element>
              </xs:sequence>
         </xs:complexType>
    </xs:element>
    The element you wish to repeat should have a "maxOccurs" property that is greater than 1.  You should also make sure that your subform is properly linked to this element.

Maybe you are looking for

  • Ipod frozen

    my sons Ipod froze. Is not recognized by Itunes. Any help?

  • IPod not recognized in iTunes 7.4

    Hi. I recently purchased an ipod nano (1st gen, obviosly) from her, and it fell in the bath a few weeks ago. anyway when i looked at it, it said "Use iTunes to restore". I connected it to my laptop, and opened itunes. i managed to restore the ipod, a

  • Premiere Pro CC no audio with BlackMagic 9.7.5

    Hi there, I have a DeckLink Extreme HD 2, I've just installed the new Premiere CC via my CC account and the DV 9.7.5. All went right but now I have no audio inside the application. In OSX, as in other apps like QT or FCPX I can hear the audio but I n

  • Which is better? black or white

    hi everyone, i'm thinking of buying a macbook but am unsure of which colour to choose...i'm drawn to the black but it's more expensive... just interested in everyones' views on the pros and cons of both colours.. thanks!! powerbook G4   Mac OS X (10.

  • Importing from DVD slideshow

    I received two DVDs of old family photos, in a movie/slideshow format. I want to import the individual photos into Iphoto, but when I try to import I get a message that says they are in an unrecognized format. The DVD slide shows play back fine via I