Creating variables - doesn't seem to easy... Help!?

Hello I'm trying to get this script to work. It's supposed to create three sentences. Each sentence has the name sentence1, sentence2 and sentence3. The value of each representing variable is "This is sentence x". x is the sequence number of the sentences' order.
Once all of the sentences have been declared they supposed to be added to the variable essay. (Sorry, I know I'm totally on the wrong track with the last declaration) And then at last the essay is displayed in a dialog. Help?! It doesn't work...
set i to 0
set p to 0
repeat 3 times
set p to p + 1
set (sentence & p) to "This is sentence" & p
end repeat
repeat p times
set i to i + 1
set essay to sentence & i -- How can I make it that all sentences get added to essay?
end repeat
display dialog essay
Thanks in advanced!

Hello
It's not worth trying to define variable name dynamically.
List is your friend.
E.g., -
set pp to {}
repeat with i from 1 to 3
set end of pp to "This is sentence " & i & "."
end repeat
set s to ""
repeat with i from 1 to 3
set s to s & pp's item i & " "
end repeat
display dialog s
Cheers,
H

Similar Messages

  • Hibernate hbm2ddl.auto create-drop doesn't seem to work in 10.3 JPA

    Greetings,
    I'm migrating an JPA application from JBoss 5.0 to WebLogic 10.3. In order to simplify the problem, I have the following entity:
    package fr.simplex_software.p204.domain;
    import java.io.Serializable;
    import javax.persistence.*;
    @Entity
    @Table(name="AUTHOR")
    public class Author implements Serializable
    private static final long serialVersionUID = 1L;
    @Id
    @Column(name="AUTHOR_ID", nullable=false)
    @GeneratedValue(strategy=GenerationType.AUTO)
    private Long id;
    public Long getId()
    return id;
    public void setId(Long id)
    this.id = id;
    I also have the following persistence.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="p204-ejbPU" transaction-type="JTA">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <jta-data-source>java:/jdbc/TestDS</jta-data-source>
    <exclude-unlisted-classes>false</exclude-unlisted-classes>
    <properties>
    <property name="hibernate.hbm2ddl.auto" value="create-drop"/>
    </properties>
    </persistence-unit>
    </persistence>
    When I deploy the application in JBoss 5.0, the table AUTHOR is created. When I deploy the same in WebLogic 10.3, the table isn't created and nothing happens. Should I do anything of special ?
    Many thanks in advance for any help.
    Kind regards,
    Nicolas

    Hi Matt, thanks for your reply. Yes, I did. Actually I'm testing the JDBC data-source in WebLogic console and the test is successfull. Also, exactly the same app correctly deploys in JBoss. In the WebLogic console I can see my EAR deployed, I'm running some standalone clients against some SLSB in the EAR and they work properly and I'm sure that if I'm manually creating the data-model, the JPA entities will work. The only thing which doesn't seem to work is the automatically data-model creation. I thought that Hibernate may not be so intimatelly integrated with WebLogic as with JBoss and I tried to use Kodo, but I didn't find any auto create-drop equivalent feature. I continue digging but stiil interested by any suggestion, if any.
    Many thanks in advance,
    Nicolas

  • 100% Wet Reverb doesn't seem to work, help?

    I have 2 tracks and I want 1 to be 100% wet reverb only. I can't seem to get it working and need some help.
    This is the track with the bus #3 to the Space Designer
    This is the mixer ...
    I'm running version LPX 10.0.4 on Mavericks (10.9)
    Any help is appreciated.
    Thx,
    RP

    Pancenter wrote:
    What audio interface are you using?
    Do you have Software Monitoring Enabled in Logic's Preferences/Audio
    No, I am not.
    Eriksimon wrote:
    Hm, I can't really get my head around any of this, you seem to want to go from London to Manchester via Prague.
    Two identical tracks? Why? You can route everything how you want it with just the one track, I don't really get this convoluted setup. And I still don't understand how you know you hear dry signal. You do realise that reverberated signal also sounds like the original? So how can an identical track on top of the reverberation of that signal be anything else than a simple dry-wet mix on just the one track?
    In short: what I see in your screenshot looks like 100 % wet, no signal leakage from anywhere, so if you say you hear dry signal I still wonder how you know that? How do you know the wet from the dry signal? Nobody can tell from a sound alone if it was (once) led 100 % wet thru a reverb.
    Sure convoluted. But please pay attention to the details. I said I have identical "input" not "tracks". Each input goes into different processing workflow ... but thanks for your very helpful "can't tell wet from dry by sound alone" input!
    ANYWAY, it is the reverb preset that I was using and NOT the convoluted setup. The 100% wet signal can be heard without the dry afterall.
    Thanks for all who tried to genuinely help.

  • BEx variables doesn't seem to work in Crystal 2008

    Hi all,
    I've made my first steps into Crystal 2008 on top of SAP BI. I have made a simple query in BEx QD with 2 user-input variables: Fiscal Year and Cost Center. In Crystal (with BW MDX) I've made a report on the basis of the BEx query. After selecting Preview the variable screen shows up. However: after entering some values Crystal displays all records and makes no selection based on the input values.
    Did I do something wrong or did I forget something?
    Thnx in advance,
    Henk.

    Sorry,
    I didn't close my threat.
    The solution for my problem - and maybe yours to u2013 was quite simple. All variables must be in the filter of the query and not in the default values, rows or columns sections.
    Henk.

  • A little lost here, view doesn't seem to want to show up

    Hi,
    First of all, let me say that i am not a iPhone or Mac developper although i'm a super good programmer that knows lots of languages (c/c++, java, c#, php, vb, vb.net, etc)
    I was tasked to add a screen to an iphone app that asks for user acceptance of terms and then store the acceptance into the phone. I'm not even at the storage part yet, i'm all lost in that objective C thing... What kind of programming language is that... lol
    Anyway, i tried my best and am able to open a view that was already existant in the system as the application starts. The same view, i duplicated it and renamed all its files, identifiers in the .h and .m file to a new name. I scoured the source code of the app to add the different variables or properties just as the previous view had been added to the app.
    Compile, works, view never shows up... maybe i messed up something, try the older view i tried at first, still works... strange.
    Here is a bit of code:
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    [window addSubView:agreementView.view];
    [window makeKeyAndVisible];
    This portion of code doesn't work, but if i change "agreementView" for "hmView" it works fine and shows the view called HmView. The app compiles completly and works in all cases, its just the agreementView that never shows up.
    Can you help me with this at all? Do i need to post anything else. Please keep in mind that i thought it would be super simple to do this and finaly, it's taken me 3h already to simply create a view and recompile the code.

    CDGI Developper wrote:
    this application is already multiview. I'm just trying to add a view in the code that shows an agreement ppl have to accept.
    Ok, understood. It's sounding more and more like a modal view would be the best solution.
    If i use the variable name of another view that was working, it loads up fine as the application starts.
    Although you mentioned creating another view, it seems likely you didn't actually do so, or that the variable you assigned to the new view doesn't actually point to that view. You haven't mentioned Interface Builder yet. IB is the resource editor for Xcode, and is usually where Cocoa developers start when creating a new view (though new views can certainly be created in code without using IB).
    Since you've been focusing on the root view so far (i.e., the view which is added directly to the window in applicationDidFinishLaunching), can we assume that you want the "agreement view" to be reached directly from the root view? Or, do you want agreementView to replace the current root view at start up? For example, do you want agreementView to be the gateway to the app, like a login screen, so that none of the app's functionality can be accessed until the agreement is accepted?
    Once we know exactly how the agreement fits into the view hierarchy, it might be easy to walk you through the steps needed to create it, display it, and dismiss it. Another question that might help clarify your requirements: Could you use an "alert view" instead of a new, full-screen view for your purpose? An instance of the UIAlertView class is used just like a Windows "MessageBox" to display a message and wait for the user to respond. So an alert view would be good for obtaining a "yes" or "no" answer from the user. Of course, if the agreement screen needs to present the text of an agreement, much like the contract presented during an app installation, I guess you'd need a new full-screen view.
    ... if i use the new view i have created (from a copy of the one that works) and i adapt all the identifiers in the different copied files, then the app still compiles, but the reference to the view variable doesn't seem to work.
    Here's an example of how to bring up a modal view that covers the root view at startup:
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // add the root view to the window
    [window addSubview:viewController.view];
    // make a new view controller
    // (this also makes a default view for the new controller)
    UIViewController *myController = [[UIViewController alloc] init];
    myController.view.backgroundColor = [UIColor blueColor];
    // set the modal transition style of the new controller
    myController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
    // add a text view object to the new view
    UITextView *myTextView = [[UITextView alloc]
    initWithFrame:CGRectMake(36, 50, 248, 228)];
    myTextView.editable = NO;
    myTextView.showsVerticalScrollIndicator = YES;
    [myController.view addSubview:myTextView];
    [myTextView release];
    // add something legal to the text view
    NSString *legalText = [NSString string];
    for (int i = 0; i < 40; i++)
    legalText = [legalText
    stringByAppendingString:@"Whereas, henceforth and notwithstanding.
    myTextView.text = legalText;
    // add a button to the new view
    UIButton *myButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    myButton.frame = CGRectMake(124, 320, 72, 37);
    [myButton setTitle:@"Agree" forState:UIControlStateNormal];
    [myController.view addSubview:myButton];
    // connect the action of the button to a method in this file
    [myButton addTarget:self action:@selector(dismissAgreement)
    forControlEvents:UIControlEventTouchUpInside];
    // bring up the modal view as a child of the root view
    [viewController presentModalViewController:myController animated:NO];
    [myController release];
    [window makeKeyAndVisible];
    - (IBAction)dismissAgreement {
    [viewController dismissModalViewControllerAnimated:YES];
    To see how the example works, remove the current version of applicationDidFinishLaunching from the app delegate .m file, replace it with the two methods above, save the file and click Build and Go. The example is working, tested code which doesn't require any work in Interface Builder. Be sure to cut and paste directly from the forum to the source file. At this point you don't need to lose a day or two tracking down a syntax error.
    - Ray

  • I am trying to create an itunes account.  There doesn't seem to be a link to click 'I agree' to the terms and conditions on the email sent to me.  Can anyone help?  Thanks.

    I am trying to create an itunes account on an ipad mini IOS 8.1.  There doesn't seem to be a link to click 'I agree' to the terms and conditions on the email sent to me.  Can anyone help?  Thanks.

    Create a NEW account/ID for her using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before. Make sure you specify a birthdate that results in being at least 13 years old
      Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    More details of how:
    http://ipadhelp.com/ipad-help-tips-tricks/how-to-get-free-apps-from-the-app-stor e-without-a-credit-card/

  • I'm using iphoto9.1.3 but now it doesn't seem to work, whenever I try to open it, it just shows loading, but never loads. Can anybody help me with this ?

    I'm using iphoto9.1.3 but now it doesn't seem to work, whenever I try to open it, it just shows loading, but never loads. Can anybody help me with this ?    

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Can a use a partitioned external hard drive to create a disk image? I tried, doesn't seem to work using disk manager.

    Can a use a partitioned external hard drive to create a disk image? I tried, doesn't seem to work using disk manager.

    OK, it's very bad computing to use a backup disk for anything but a backup. The reason being is if/when the HD crashes you will have lost not only all your backup but the data files. While I commend you for wanting redundant backup, you really need separate EHDs for doing so. Format each EHD using Disk Utility to Mac OS Extended (Journaled) using the GUID parttition. When you connect, OS X will ask if you want to use that drive as a Time Machine backup drive, select yes and then let it backup. On the second EHD format the same way however do not use TM as a backup, this time I'd suggest an app such as SuperDuper or Carbon Copy Cloner to make a clone of the internal HD. Leave both EHDs connected and TM will backup new or changed files automatically on a hourly basis. The clone you will need to set to backup on the schedule you want. For example I have my SuperDuper EHD set to backup only changed or updated files at 2AM every day.
    The advantage of a clone is that if the computers internal HD crashes you can boot from a clone and continue working, TM will not do that but it's great for keeping an archive of all files. So if you want a version of a file from many months ago, TM will help you locate and restore it.

  • 2013 Workflows created in SharePoint Designer doesn't seems to work with retension policy!

    Hi Guys, 2013 Workflows created in SharePoint Designer doesn't seems to work with retension policy but 2010 workflows work. Any One have any details resaon or workarround?
    Shafqat Balouch MCT, MCSA, MCSE MCITP, MCPD, Microsoft Partner

    Hi  ,
    According to your description, I can reproduce your scenario in my SharePoint 2013.
    For the Retention Policy, it will schedule how content is managed and disposed by specifying a sequence of retention stages. In SharePoint Designer Workflow 2013, we have looping option available. You can
    use loop option and then pause for duration for achieving same function as Retention Policy to start a workflow.
    Reference:
    http://prasadtechtactics.blogspot.com/2012/07/sharepoint-designer-2013-workflows-part_24.html
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Have mac mini with thunderbolt monitor 1yr old, recently updated with new 10.0.2 from apple, now iMovie doesn't seem to support my Sony HDR-XR500 camera. Is there any help on this?

    Have mac mini with thunderbolt monitor 1yr old, recently updated with new 10.0.2 from apple, now iMovie doesn't seem to support my Sony HDR-XR500 camera. Is there any help on this?

    haha, so now i'm thinking. I'm learning the terminal as fast as i can but there are several lines of codes and commands in there that throws up red flags to me that i don't fully understand. It just looks fishy too me. It would be highly appreciated if someone could just check this out just to tell me that i don't need to worry about it. Or point me in the right direction. I just feel un easy about this. ha.

  • Help! Divs extend beyond parent container! Clearing doesn't seem to work!

    My "mainContent" div extends beyond the "Container" div. It seems that I've tried everything--clearing doesn't seem to work.
    Help!
    Here is my css:
    @charset "UTF-8";
    /* CSS Document */
    body  {
         margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
         padding: 0;
         text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
         color: #000000;
         font-family: Arial, Helvetica, sans-serif;
         font-size: 100%;
         background-color: #FFF;
    .twoColFixRtHdr #container {
         width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
         background: #FFFFFF;
         text-align: left; /* this overrides the text-align: center on the body element. */
         font-family: Arial, Helvetica, sans-serif;
         margin-top: 0;
         margin-right: auto;
         margin-bottom: 0;
         margin-left: auto;
         top: 10px;
         padding-top: 10px;
         clear: both;
    .twoColFixRtHdr #header {
         height: 180px;
         padding-top: 10px;
         padding-right: 0px;
         padding-bottom: 5px;
         padding-left: 0px;
         border-top-width: 1px;
         border-right-width: 0px;
         border-bottom-width: 5px;
         border-left-width: 0px;
         border-top-style: solid;
         border-bottom-style: solid;
         border-top-color: #999;
         border-bottom-color: #000;
         margin-top: 5px;
         margin-bottom: 0px;
    .twoColFixRtHdr #container #sidebar1 img {
         padding-top: 10px;
         border-bottom-width: 1px;
         border-bottom-style: solid;
         border-bottom-color: #999;
         margin-bottom: 0px;
         padding-bottom: 10px;
         padding-left: 10px;
    .twoColFixRtHdr #header h1 {
         margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
         padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
    .twoColFixRtHdr #sidebar1 {
         width: 315px;
         padding: 0px;
         top: 200px;
         float: right;
    .twoColFixRtHdr #mainContent {
         width: 643px;
         padding-top: 10px;
         border-right-width: 1px;
         border-right-style: solid;
         border-right-color: #999;
         overflow: hidden;
         top: 230px;
         position: absolute;
         clear: right;
    .twoColFixRtHdr #footer {
         background:#DDDDDD;
         top: 50px;
         clear: both;
         padding-top: 0;
         padding-right: 10px;
         padding-bottom: 0;
         padding-left: 20px;
    .twoColFixRtHdr #footer p {
         margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
         padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
         float: right;
         margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page */
         float: left;
         margin-right: 8px;
    .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
         clear:both;
         height:0;
         font-size: 0px;
         line-height: 0px;
    .spacer { 
         clear: both; 
    .twoColFixRtHdr #container #mainContent #article_main_head {
         font-family: Arial, Helvetica, sans-serif;
         top: 10px;
         width: 635px;
         float: left;
    .twoColFixRtHdr #container #mainContent #article_img {
         width: 630px;
         float: left;
         margin-top: 10px;
         clear: both;
    .twoColFixRtHdr #container #mainContent #article_main_txt {
         float: right;
         width: 450px;
         clear: both;
         padding-top: 10px;
         height: 500px;
    .twoColFixRtHdr #container #mainContent #article_main_pq {
         clear: both;
         float: left;
         width: 180px;
         margin-top: 100px;
    Here is my html:
                                                                   Donec eu mi sed turpis feugiat feugiat. Integer turpis arcu, pellentesque  eget, cursus et, fermentum ut, sapien. Fusce metus mi, eleifend  sollicitudin, molestie id, varius et, nibh. Donec nec libero. 
    Loading news. please wait...                                   
    Loading news. please wait...                    
    Loading news. please wait...            
          Footer 

    This CSS sends up a red flag:
    .twoColFixRtHdr #mainContent {
         width: 643px;
         padding-top: 10px;
         border-right-width: 1px;
         border-right-style: solid;
         border-right-color: #999;
         overflow: hidden;
    /******DELETE THE FOLLOWING*****/
         top: 230px;
         position: absolute;
         clear: right;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Safari on my iPhone 6 running 8.02 doesn't seem to work right. Some Java scripts don't show correctly and they do on other browsers I have downloaded. I tried almost everything and nothing seems to work to fix it. Please help.

    Some websites like the one of my college uses JavaScripts and they seem to load correctly to a certain point but then not really. For example in one it would say select an option from the left menu. And I do it hut nothing happens. But when I go to the same website in another browser on my phone. The JavaScript works completely and allows me to see whatever I was clickig on that menu. I have seen that there are other websites being affected too. I tried clearing my cookies and data. even restarted my phone. And doesn't seem to work. I don't know how change the configuration any more to make it work like normal. At first I thought it was my school's website but it never got fixed. And now I realized is my safari browser! I wanna keep using it since I am really familiar with It. If someone knows how to fix this please let me know!
    Thanks

    You can reset the SMC and see if that helps. If it's a unibody or Retina, follow the method for "a battery you should not remove yourself."
    http://support.apple.com/kb/ht3964

  • The image came up on my screen saying that I need to connect my iPod to iTunes, but I have a passcode, so it won't allow me to. And I want to try and turn it off, but my touch screen doesn't seem to be working either. HELP!

    The image came up on my screen saying that I need to connect my iPod to iTunes, but I have a passcode, so it won't allow me to. And I want to try and turn it off, but my touch screen doesn't seem to be working either, so I can't even turn it off since you need to "slide to power off." HELP! I'm leaving on Thursday morning for six and a half weeks, and I absolutely need my iPod with me. I was just at the Apple store today for problems I was having with ANOTHER product, and I don't really want to drive all the way out to where my nearest store is (which is not very near) if I can figure this out at home. My iPod was working totally fine earlier today and last night, so I don't know what happened! Please, please, PLEASE HELP!

    Now it's allowing me to reboot (hold down power button and home button and restart), but every time it just comes up to the same thing: the connect to iTunes page. Which is not possible. And I refuse to restore my iPod. PLEASE HELP.

  • I tried to launch iCloud on iMac.  I Changed my e-mail address recently, and iMac  doesn't  seem to know it.  Even worse, it doesn't know any password I've used with Apple ID.  Can anyone help me?

    I tried to launch iCloud on iMac.  I Changed my e-mail address recently, and iMac  doesn't  seem to know it.  Even worse, it doesn't know any password I've used with Apple ID.  Can anyone help me?

    No, i don't. if i did i would have tried it. do you have to sign up an appled ID for iCloud? If the answer is yes then they should mention that in the set-up instructions.

  • My iPod doesn't seem like enjoy working, could someone help me out?

    This is my second iPod (I had to send the first one back to get it replaced) and it's getting ridiculous. About three months ago it stopped working again (the new one) and I got a box to send it back, but I tried installing new software and updating it and all, which fixed it, or so I thought. Now it's not working again. I can't even get it connected to my computer without the computer freezing completely. iTunes refuses to load when the iPod is connected, and "My Computer" (I have a win laptop) quits responding when I connect it too. If I could get it connected I would reset it completely, which I don't midn doing, but it doesn't seem to be able to do that. Has anyone else had this problem? I'd really appreciate help with this problem because Apple says I can't send it back... even though it's my second one. Any help would be appreciated greatly. Thanks in advance.
    -FF
    the ipod was bought for christmas last year (04), and is a click wheel, but not a color photo, or vid ipod.

    This is my second iPod (I had to send the first one back to get it replaced) and it's getting ridiculous. About three months ago it stopped working again (the new one) and I got a box to send it back, but I tried installing new software and updating it and all, which fixed it, or so I thought. Now it's not working again. I can't even get it connected to my computer without the computer freezing completely. iTunes refuses to load when the iPod is connected, and "My Computer" (I have a win laptop) quits responding when I connect it too. If I could get it connected I would reset it completely, which I don't midn doing, but it doesn't seem to be able to do that. Has anyone else had this problem? I'd really appreciate help with this problem because Apple says I can't send it back... even though it's my second one. Any help would be appreciated greatly. Thanks in advance.
    -FF
    the ipod was bought for christmas last year (04), and is a click wheel, but not a color photo, or vid ipod.

Maybe you are looking for

  • How can I have 2 differents versions of provider working in a Server

    Hi Everybody: I have a few ASP 3 applications working in mi PC. I'm using right now the 10.1 Oracle Provider, but I need change to 10.2 Release Version. I want know How can I specify to ASP 3 Page what version of provider must to use. I do the connec

  • Unable to edit validated field in table maintance

    Hi all, my requirement is to show an warning message on non key field if validation is not correct and edit on the same screen. solution: I have created an event new-entry in table maintance and tried to validate that field field (email) form new_ent

  • Cant get CreativeSuite CS4 working anymore!

    I have used CreativeSuite for years now. Had CS4 nd updated it to CS5 afterwards. Licencerecovery didn't work out, so is there anything to do? Please help, my clients are waiting materials.

  • Why can't I import video

    My video file is .avi I can play it with quick time but when dragging it into itunes, it came flied back to where it was.

  • Quicktime Can't open files after 10.4.10 update

    I thought I had escaped all problems after installing the 10.4.10 combo updater, repairing permissions, etc. But today while trying to watch the iPhone Guided Tour video I discovered that Quicktime can't open it, nor anything else for that matter. Ca