Help! Total newbie question...

I want to make a flash form where the viewer/user can watch a video clip of their choice (from a drop-down control or something else if there's a better way).
I've found myself totally unable to find our how to do this.  I mean, frankly, I don't even know what kind of file to start from the "New..." form at the beginning of Flash (CS 3.0, btw)!
I know how to create a Flash Player and link it to a single video.  What I envision is that after the page comes up, with a single player component (initially empty), the user chooses a video from the drop-down list and that video starts playing in the player.
I guess I have these questions-
What kind of file should I be starting with?  {I kinda assume I'll be making an SWF to put on a web page.}
Where on earth do I learn how to get the simplest things (e.g., button clicks, etc.) to work?
Could any of y'all please offer suggestions where I could find a sample of something similar?  -OR-
Could any of y'all give me an example of how to do (code?) this?!?!
I apologize for such dumb questions, but while I'm quite experienced with Premiere, Encore, Photoshop, etc., I am definitely NOT used to Flash!
Thanks in advance!
Jim 8^)

This is going to be a pretty big learning curve for someone with no Flash experience. But, sometimes the best way to learn is to just dive in and start the project.
I'd recommend using the help and tutorials for a while. You'll need to learn how to create buttons, use ActionScript, and more. My best guess is that you'll need to house each video file on your server with a unique location (URL) then create a pull-down button (or some method of selecting the files) that calls each specific video when the user selects it. I'm assuming you'll need to use a browser fscommand to loadMovie, but someone else may set me straight on that. My experience is limited in this specific task, but I think it might give you someplace to start looking.

Similar Messages

  • Total Newbie Question ... Sorry :-(

    I know it's a windows thing, and I am now converted to Mac but I gotta know this because it's doing my head in. It's a complete stupid green gilled newbie question.
    When installing new programs on a Mac can you create shortcuts to the programs on the Dock? I did what I THOUGHT it would be, i.e I made an Alias and stuck it in the dock, but on rebooting my Mac later on, in place of the shortcuts where 3 question marks which when clicked on did absolutely nothing???
    Help?
    A.L.I
    Windows XP Pro Desktop, Macbook Pro, 60GB iPod Video   Mac OS X (10.4.5)   OS X

    You aren't installing something from a dmg file are you? The dmg is a disk image – kind of a virtual CD. So when you double click the dmg and then get the little disk/hardrive/custom icon on your desktop that is the same as if you had mounted a CD. You then need to drag the application off of that "CD" into your application folder. Then it is truly installed.
    You can then "eject" the icon your your desktop. This is what happens when you shutdown and without remounting the image your dock shortcut can't find the original.
    Just a thought.

  • Total newbie question...  Just need some help.

    I am wondering how to change a header and have all my sheets (yes, using a template) reflect that change. Also, I made a team roster and I am wondering how to have all my sheets (stats for players) reflect the roster I created. Simple name stuff.
    Thanks for the help.
    [email protected]

    Coll,
    To both of your questions I would say: Have one master sheet and on your other sheets, reference the information on your master sheet. To mirror the contents of a cell in another Table or Sheet, type = and then click on the cell you want to reference.
    Hope this gets you started.
    Jerry

  • Please, help a newbie:  Question about animating expanding containers

    Hi All,
    Short Version of my Question:
    I'm making a media player that needs to have an animation for panels sliding up and down and left and right, and the method I've been using to do this performs far slower than the speed I believe is possible, and required. What is a fast way to make a high performance animation for such an application?
    Details:
    So far, to do the animation, I've been using JSplitPanes and changing the position of the divider in a loop and calling paintImmediately or paintDirtyRegion like so:
    public void animateDividerLocation( JSplitPane j, int to, int direction) {
    for(int i=j.getDividerLocation(); i>=to; i-=JUMP_SIZE) {
    j.setDividerLocation(i);
    j.validate();
    j.paintImmediately(0, 0, j.getWidth(), j.getHeight());
    The validate and paintImmediately calls have been necessary to see any changes while the loop is going. I.e., if those calls are left out, the components appear to just skip right to where they were supposed to animate to, without having been animated at all.
    The animation requirement is pretty simple. Basically, the application looks like it has 3 panels. One on the right, one on the left, and a toolbar at the bottom. The animation just needs to make the panels expand and contract.
    Currenly, the animation only gets about, say, 4 frames a second on the 800 MHz Transmeta Crusoe processor, 114 MB Ram, Windows 2000 machine I must use (to approximate the performance of the processor I'll be using, which will run embedded Linux), even though I've taken most of the visible components out of the JPanels during the animation. I don't think this has to do with RAM reaching capacity, as the harddrive light does not light up often. Even if this were the case, the animation goes also goes slow (about 13 frames a second) on my 3 GHz P4 Windows XP if I keeps some JButtons, images etc., inside the JPanels. I get about 50 frames/sec on my 3 GHz P4, if I take most of the JButtons out, as I do for the 800 MHz processor. This is sufficient to animate the panels 400 pixels across the screen at 20 pixels per jump, but it isn't fast or smooth enough to animate across 400 pixels moving at 4 pixel jumps. I know 50 frames/sec is generally considered fast, but in this case, there is hardly anything changing on the screen (hardly any dirty pixels per new frame) and so I'd expect there to be some way to make the animation go much faster and smoother, since I've seen games and other application do much more much faster and much smoother.
    I'm hoping someone can suggest a different, faster way to do the animation I require. Perhaps using the JSplitPane trick is not a good idea in terms of performance. Perhaps there are some tricks I can apply to my JSplitPane trick?
    I haven't been using any fancy tricks - no double buffering, volatile images, canvas or other animation speed techniques. I haven't ever used any of those things as I'm fairly new to Swing and the 2D API. Actually I've read somewhere that Swing does double buffering without being told to, if I understood what I read. Is doing double buffering explicitly still required? And, if I do need to use double buffering or canvas or volatile images or anything else, I'm not sure how I would apply those techiniques to my problem, since I'm not animating a static image around the screen, but rather a set of containers (JSplitPanes and JPanels, mostly) and components (mostly JButtons) that often get re-adjusted or expanded as they are being animated. Do I need to get the Graphics object of the top container (would that contain the graphics objects for all the contained components?) and then double buffer, volatile image it, do the animation on a canvas, or something like that? Or what?
    Thanks you SO much for any help!
    Cortar
    Related Issues(?) (Secondary concerns):
    Although there are only three main panels, the actual number of GUI components I'm using, during the time of animation, is about 20 JPanels/JSplitPanes and 10 JButtons. Among the JPanels and the JSplitPanes, only a few JPanels are set to visible. I, for one, don't think this higher number of components is what is slowing me down, as I've tried taking out some components on my 3GHz machine and it didn't seem to affect performance much, if any. Am I wrong? Will minimizing components be among the necessary steps towards better performance?
    Anyhow, the total number of JContainers that the application creates (mostly JPanels) is perhaps less than 100, and the total number of JComponents created (mostly JButtons and ImageIcons) is less than 200. The application somehow manages to use up 50 MBs RAM. Why? Without looking at the code, can anyone offer a FAQ type of answer to this?

    You can comment out the lines that add buttons to the panels to see the behavior with empty panels.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.Timer;
    public class DancingPanels
        static GridBagLayout gridbag = new GridBagLayout();
        static Timer timer;
        static int delay = 40;
        static int weightInc = 50;
        static boolean goLeft = false;
        public static void main(String[] args)
            final GridBagConstraints gbc = new GridBagConstraints();
            gbc.weightx = 1.0;
            gbc.weighty = 1.0;
            gbc.fill = gbc.HORIZONTAL;
            final JPanel leftPanel = new JPanel(gridbag);
            leftPanel.setBackground(Color.blue);
            gbc.insets = new Insets(0,30,0,30);
            leftPanel.add(new JButton("1"), gbc);
            leftPanel.add(new JButton("2"), gbc);
            final JPanel rightPanel = new JPanel(gridbag);
            rightPanel.setBackground(Color.yellow);
            gbc.insets = new Insets(30,50,30,50);
            gbc.gridwidth = gbc.REMAINDER;
            rightPanel.add(new JButton("3"), gbc);
            rightPanel.add(new JButton("4"), gbc);
            final JPanel panel = new JPanel(gridbag);
            gbc.fill = gbc.BOTH;
            gbc.insets = new Insets(0,0,0,0);
            gbc.gridwidth = gbc.RELATIVE;
            panel.add(leftPanel, gbc);
            gbc.gridwidth = gbc.REMAINDER;
            panel.add(rightPanel, gbc);
            timer = new Timer(delay, new ActionListener()
                    gbc.fill = gbc.BOTH;
                    gbc.gridwidth = 1;
                public void actionPerformed(ActionEvent e)
                    double[] w = cycleWeights();
                    gbc.weightx = w[0];
                    gridbag.setConstraints(leftPanel, gbc);
                    gbc.weightx = w[1];
                    gridbag.setConstraints(rightPanel, gbc);
                    panel.revalidate();
                    panel.repaint();
            JFrame f = new JFrame("Dancing Panels");
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(panel);
            f.setSize(400,300);
            f.setLocation(200,200);
            f.setVisible(true);
            timer.start();
        private static double[] cycleWeights()
            if(goLeft)
                weightInc--;
            else
                weightInc++;
            if(weightInc > 100)
                weightInc = 100;
                goLeft = true;
            if(weightInc < 0)
                weightInc = 0;
                goLeft = false;
            double wLeft = weightInc/ 100.0;
            double wRight = (100 - weightInc)/100.0;
            return new double[]{wLeft, wRight};
    }

  • Mounting Time Capsule drive - total newbie question

    I'm a total Mac newbiew, so please bear with me.
    There are alot of threads in this forum that talk about 'manually mounting' a time capsule drive. What is this manual mounting, what's the point of doing it, and how do you do it?
    My Time Capsule shows up under the Shared menu in Finder and I can access it from there. Is access to the disk via this link slower than mounting it or something?
    Lastly, my TC is connected to my Mac Mini via an ethernet cable. How can I check that the Mac is talking to the TC disk via this connection rather than over the wireless network that the TC is providing?

    By "mounting" people are meaning seeing the Time Machine disk icon actually showing on the desktop. I can only think of 2 reasons for this, 1) time saving if people use the disk for other purposes as well as Time Machine and need to access it regularly, and 2) If it mounts, it proves you have connectivity.
    Doing it from the finder sidebar is effectively the same thing, only you are doing it instead of getting the system to do it. Your initial access to the drive may be noticeably slower for a couple of seconds until it mounts is all, nothing worth worrying about
    See here for more info if you are interested in mounting it automatically:
    http://discussions.apple.com/thread.jspa?threadID=1446928
    As for your last question, unless your wireless and wired connection talk to different networks, then turn off your wireless and used the wired connection.

  • Help STP newbie question!

    i selected a clip from FCP to send to STP. However i forgot to check off the "send only referenced media" check box. As a result the entire source clip ( may minutes long) shows up in STP and it is very cumbersome to find just the 10 seconds i need to de-noise in STP window. I am unable to find any way to change the save preferences so that i only send the referenced media. Have spent 2 hours on this .. There has to be a way to do this? any help would be majorly appreciated! i have a deadline for school project tommorow.
    Thanks much

    Quote
    Originally posted by nRosko
    Is there any place i can read about raid configarations not sure wether to bother or not.
    If you believe Storage Review, AnandTech and MaximumPC, don't bother with RAID 0 for single user setups if you are looking for performance.
    http://faq.storagereview.com/tiki-index.php?page=SingleDriveVsRaid0
    RAID 1 is mirroring, which means everything in drive A is backed up into drive B. If drive A suffers a hardware failure, you still have everything in drive B. However, if you deleted a file (intentionally or otherwise) from drive A, it's gone from both drives.
    Tom's Hardware has some articles introducing the various RAID modes.

  • Pretty please help, Quick newb question...

    I have a dell axim x50. I have the jad and jar files. How can I make my application work on the PDA??
    I've simulated with toolkit, and such.
    Please Please help ><

    The act of getting the jar from a pc to the device is called "provisioning"
    Some devices let you do this over bluetooth or IR and many others only allow it over http.
    I used to use some free web midlet hosting sites but the ones i used have been shut down now. (do a search on the net for "Free Midlet Hosting")
    These days i set up a web server on my development machine and then just use the phones wap browser to download the program.

  • Total newbie question.

    I will soon be buying an iPad. All I need it for is Pages to write.
    My simple questions is this:
    In the App Store, how do I tell which apps are specifically for the iPad?

    Is there a search function in the app store?
    Yes ,a)look on the on the top right ,you'll see this>
    !http://img.skitch.com/20100409-1t2x8xisefbxr5r7ie5chqtmks.png!
    or b)if you click on the Home button !http://img.skitch.com/20100409-t6hq977yryrt8hc5ucpehyr3e4.png!
    you can use *Power search* found on the right below *Welcome Paul!* >Quick links (if that's the name that the account is under)
    I prefer the 1st
    A

  • Total newb var question

    Hello :) ,
    so Im a total newb :(
    I am trying to make this code into a function....
    <code>
    jd_label.setIcon(new javax.swing.JLabel(){
    public javax.swing.Icon getIcon(){
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    catch (java.net.MalformedURLException e){
    return null;
    }.getIcon());
    </code>
    problem is, Im such a new i dont know how to use a var on this line...
    jd_label.setIcon(new javax.swing.JLabel(){
    I would like jd_label to be a $var but java just wants to update
    a label named "var".... i.e.
    JLabel jd = new Jlabel();
    string fred = jd
    fred.setIcon()
    but this freaks out... in PERL it seems the vars are a little more
    reconazable...
    $fred.setIcon();
    Could some one please help me :)
    Thanks in advance,
    jd

    Thank you :)
    Im still confused...but that will pass in time
    As for the code in the first post... that was from a scrip i wrote
    but the section i posted NetBeans wrote. here is the whole scrip...
    All i really want to do is put pictures on labels...and i thought, why write
    the same code for every button, ill just make a function out of the whole setIcon bit and call it for each label that needs a picture, passing the url of the picture off to the function... Below gets me one pic on one label, so
    how can i reproduce this efffect on other lables using the same code over and over?
    import javax.swing.*;
    import java.awt.*;
    public class HelloWorldSwing {
    public static void main(String[] args) {
    JFrame frame = new JFrame("HelloWorldSwing");
    JLabel label = new JLabel("Hello World");
    JLabel jd_label = new JLabel();
         JTextField tex = new JTextField("sup suka");
         JPanel pan = new JPanel();
         pan.setLayout(new GridLayout(1,3,10,10));
         pan.add(label);
         pan.add(jd_label);
         pan.add(tex);
    // i wanna make this bit into a fuction to reuse
         jd_label.setIcon(new javax.swing.JLabel() {
    public javax.swing.Icon getIcon() {
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    } catch (java.net.MalformedURLException e) {
    return null;
    }.getIcon());
         frame.getContentPane().add("Center", pan);
         frame.pack();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);

  • Total newbie for jsp..plz help

    frendz...me a total newbie to jsp.havin some problem in it.i have already installed jdk,jwsdp2.0 wif its tomcat container.Already set the path for both ..such as JAVA_HOME=E:\Program Files\Java\jdk1.5.0_06
    TOMCAT_HOME=E:\tomcat50-jwsdp
    and could execute the sample jsp's perfectly.But having problem wif my jsp tutorials. such as when i wrote this counter codes in notepad..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <html>
    <head>
    <tittle>Jsp Declaration</tittle>
    </head>
    <body>
    <h1>Declarations</h1>
    <%! int j=0;%>
    <h2>Counter</h2>
    <p>This page has been hit <span> <% ++j %> </span> times since it was first loaded.</p>
    </body>
    </html>
    and i paste it in webapps in tomcat folder.
    What should i do to view the jsp file?isaved as counter.jsp.if i right click and view it in IE/firefox it only shows the source code.is there any mistake in the codes?or i did i do anything wrong?how shall i compile these files?help me aout wif my basics please.thanks bro's..

    "I pasted it in webapps in tomcat folder".
    Webapplications need to go in their own subdirectory inside the webapps directory. Say you want a webapp 'test', then you would store your JSP as
    TOMCAT_DIR\webapps\test\counter.jsp
    Now you can open this JSP in your browser. Assuming Tomcat is running on the localhost and the default port 8080, the url would be:
    http://localhost:8080/test/counter.jsp
    If that doesn't work something is horribly misconfigured.

  • Login/password to SQL plus - 100% Totally newbie!

    Dear users,
    I'm a 100% Totally newbie - please bear over with me and forgive that I couldn't find the answer to my question in the arhive although I'm sure somebody else has asked exactly this question. And please don't say RTFM etc, because there are a huge amount of manuals etc for oracle and I'm 100% newbie and never worked with Oracle SQL before.
    Introduction: I've installed Oracle 11.2 Enterprise Edition and want to go through some step-by-step tutorials - e.g. this tutorial: http://download.oracle.com/docs/cd/B10501_01/server.920/a90842/ch1.htm#1005898
    The tutorial says:
    "The Human Resources (HR) Sample Schema is installed as part of the default Oracle9i installation. The HR user is locked by default.
    You need to unlock the HR tables and user before you can use the HR sample schema. To unlock the HR tables and user, log in as the SYSTEM user and enter the following command:"
    Question: I cannot figure out my password, perhaps I entered something during install but how do I get password for the "SYSTEM" user?

    Hi,
    Welcome to the forum!
    There's no way to find out what a password is.
    You can log in as some other user who has DBA privileges (such as SYS), and change SYSTEM's password.
    If you've forgotten the SYS password, too, then log into the server as the same user who installed Oracle, or as some user in the ora_dba group. You should be able to log in as SYS. When asked for a password, just press the enter key, like this:
    C:> SQLPLUS /NOLOG
    SQL> CONNECT SYS AS SYSDBA
    Enter password: <enter>
    Connected.
    SQL>  ALTER USER SYSTEM IDENTIFIED BY new_password;
    User altered
    SQL>  CONNECT  SYSTEM
    Enter password: new_password
    Connected
    SQL>

  • Newbie question - XML version, searching by artist

    Probably quite a common problems - apologies for newbie questions.
    I've changed the URL of my MP3s in my XML to a new location and refreshed my feed. Is there a way of seeing what version of the XML iTunes is using? (it takes around 24 housr to refresh, right?)
    Also, when I'm searching for my podcast by author it's not coming up (<channel><itunes:author>) - is there a reason for this or a way to get it to show up when people search for the artist, other than doubling it in the title? (This works by the way, but I'd prefer not to!)
    Thanks.

    you can do it in just one loop, going through all the image
    tags in index_content and for each tag fill the values of all four
    arrays
    for (i...) {
    get the appropriate child of index_content
    first_array[ i ] = value of first tag
    second_array[ i ] = value of second tag
    no need for multiple loops.
    flash has functionality for xml files, but it helps to write
    a little wrapper around it, to simplify programming, especially if
    you work with xml a lot.. I wrote my for work, so I can't show it
    to you, but it's not very complicated to do

  • Total newb

    Hello :) ,
    so Im a total newb :(
    I am trying to make this code into a function....
    <code>
    jd_label.setIcon(new javax.swing.JLabel(){
    public javax.swing.Icon getIcon(){
    try {
    return new javax.swing.ImageIcon(
    new java.net.URL("http://ns2.taproot.bz/java/prima_interface/thumbs/02.jpg")
    catch (java.net.MalformedURLException e){
    return null;
    }.getIcon());
    </code>
    problem is, Im such a new i dont know how to use a var on this line...
    jd_label.setIcon(new javax.swing.JLabel(){
    I would like jd_label to be a $var but java just wants to update
    a label named "var".... i.e.
    JLabel jd = new Jlabel();
    string fred = jd
    fred.setIcon()
    but this freaks out... in PERL it seems the vars are a little more
    reconazable...
    $fred.setIcon();
    Could some one please help me :)
    Thanks in advance,
    jd

    You need to study up on what Java is, how it works, syntax, etc. It seems you don't have the first clue how to write a valid Java class. This is fine, and of course that's where you have to start, but I think your time will be better spent reading the tutorials (links to which can be found on your left) than getting piecemeal help here on the forums. When you've gotten a handle on what classes, objects, variables, and methods are, and gotten some idea about syntax, come back with more specific problems and people will be more than willing to help you. Also, post to the New to Java Technology forum rather than this one.

  • Help needed- newbie trying to setup xerces XML pasrer

    Hello all,
    I am new to Java and XML.
    I am trying to write a simple java program that will use the xerces parser and will read the XML file.
    I have installed xerces 2.8.0 and put in on a specific location on my hard drive.
    I also added the xercesImpl.jar file to the CLASSPATH variable.
    I am trying to compile this code:
    import org.xml.sax.XMLReader;
    public class SAXParserDemo {
    public void performDemo(String uri) {
    System.out.println("Parsing XML File: " + uri + "\n\n");
    // Instantiate a parser
    XMLReader parser = new SAXParser();
    public static void main(String[] args)
    if (args.length != 1)
    System.out.println("Usage: java SAXParserDemo [XML URI]");
    System.exit(0);
    }//IF
    String uri = args[0];
    SAXParserDemo parserDemo = new SAXParserDemo();
    parserDemo.performDemo(uri);
    }//MAIN
    The error I get is on this line : XMLReader parser = new SAXParser(); stating that it cannot find SAXParser.
    What am I doing wrong? is there something else I need to import?
    Help will be much appreciated.
    Sorry for the newbie question.
    Cheers,
    Mike

    The error I get is on this line : XMLReader parser =
    new SAXParser(); stating that it cannot find
    SAXParser.
    What am I doing wrong? is there something else I need
    to import?Well, yeah. Your code shows you already know how to use the "import" statement. The compiler says it can't find SAXParser, and you correctly suspect that you need to import something. So the logical step: you need to import SAXParser.
    But you don't know what package it's in, right? Well let me just look it up in the API documentation for you... here it is... javax.xml.parsers.SAXParser. Take note of the existence of documentation for the next time you have this sort of question.
    http://java.sun.com/j2se/1.5.0/docs/api/

  • Newbie question: ""dynamic"" casting

    Hello all,
    <br>
    I have a quite newbie question. I have this class hierarcy:
    <br>
    A
    |_A1
    |_A2
    |_A3
    |_A4
    |_A5
    |_.....
    <br>
    in some part of my code I have this:
    <br><br>
    if (object1 instanceof A){
    if (object1 instanceof A1)      {A1   object2 = (A1) e;}
              if (object1 instanceof A2)      {A2   object2 = (A2) e;}
              if (object1 instanceof A3)      {A3   object2 = (A3) e;}
              if (object1 instanceof A4)      {A4   object2 = (A4) e;}
              if (object1 instanceof A5)      {A5   object2 = (A5) e;}
    object2.callMethod();
    <br><br>
    Is there any way to do this type of casting just in one line? I mean, I just want to cast object1 to the class it is instanceof. If it is instance of A1, I want to be casted to A1, if it is A2 to A2, etc...
    <br><br>
    Thanks you in advance.

    kamikaze04 wrote:
    In fact I know what object1 is on execution time,Which doesn't help your compiler at all, when it's task to link and verify method calls.
    because the code posted at the top is working well, i just want to avoid repeating that if's for all the new classes Ax I will create. Big "code smell" here.
    In other words if i had from A1 to A200 i dont want to have 200 if's to cast it to the class it is and then execute it's method.You could call the method "doMagic()" and make it abstract in A. Then you can implement it in all Ax classes and would never have to worry about casting in the first place, because A.doMagic() would automagically do the right thing. Polymorphism.

Maybe you are looking for

  • Problem in setting locked song as ringtone in Noki...

    I have had X6 for about a week now, previous phone was Nokia 1100. Now I am having a problem setting songs as ring tones.Now I just cant seem to do this with My new Nokia X6 as far as I can tell you have to go via settings...Personal...Profiles...Opt

  • Pre Calendar Sync

    I'm having issues with my Exchange calendar. 1. I am unable to create a new calendar entry and add people to that invite. I can create new entries, but I can't invite people to that meeting. 2. When I move a meeting I created (open and change the dat

  • Preview utility, default Save file format

    How to force the Preview utility to use JPG as the default format on the Save operation? Currently it uses PNG.

  • HT1212 Disabled iphone restore not working

    Hi, My dad has managed to disable his iphone 4s after entering the passcode wrong many times, I have tried the restore(and update) on itunes at least 6 times, but about halfway through a warning box pops up saying  that the phone is passcode locked.h

  • Missing files with ifolder and Mac OS 10.6.2

    Hello, I have been using ifolder for a year more or less and I am delighted with it. It is what I and my workmates always wanted. We have always been using ifolder with Windows clients, and it has always worked perfectly. However, some weeks ago we b