Quick Time VR - need help creating qtvr

I'm teaching my middle school students web design and flash to create an interactive school map. I want to add 360 qtvr's but I need help - I can't seem to get information on how to create them. Any Los Angeles help possible?

QuickTime Pro doesn't create VR files. It only presents them.
http://www.panoramas.dk/quicktime/qtvr/software.html
A pretty good list of tools at that link.

Similar Messages

  • Uber Noob Needs Help Creating website!

    I need help creating my webpage: It has a textbox on it were
    the user enters a URL and it then redirects the end user to that
    URL when they press the GO Button. It also has a check box saying
    "Hide my IP", If the end user clicks this box and then clicks go
    they will be directed to the website they stateted in the Textbox
    but this time it shall mask there IP Address so they can bypass
    proxys and surf anonomosly. Please can someone give me some HTML
    code i could use for this site or a Link to a website that can give
    me the code.

    I assume the application is connecting to Oracle using an application ID/password. If so, check to see if that user has a private synonyn to the table. If so drop it since you have a public synonym.
    Verify that the public synonym is in fact correct. Drop and recreate the public synonym if you cannot select against the synonym name using an ID that can perform select * from inhouse.icltm where rownum = 1. That is if this other user cannot issue select * from icltm where rownum = 1 without an error.
    Check that the application ID has the necessary object privileges on the table.
    Queries you need
    select * from dba_synonyms
    where table_owner = 'INHOUSE'
    and table_name = 'ICLTM'
    You may find both public and private synonms. Either fix or delete. (Some may reference someelses.icltm table if one exists)
    select * from dba_tab_privs
    where table_name = 'ICLTM'
    and owner = 'INHOUSE'
    Note - it is possible to create mixed case or lower case object names in Oracle by using double quotes around the name. Do not do this, but do look to see that this was not done.
    You could also query dba_objects for all object types that have the object_name = 'ICLTM'
    HTH -- Mark D Powell --

  • Need help created state machine that is time based

    I need help with my labview program. My goal is to write a program that allows the user to turn a toggle button on/off. When they do this it will start a loop witch turns on a digital switch for 45 minutes then off for 30 seconds and on and on till the user toggles the switch off. The timing does not have to be precise. I am using the NI 9476 digital output card.
    I have written the code to turn the switch on/off. I know need to add the looped fuction for on 45 minutes/off 30 seconds. I assume the most efficient method would be using a state machine, but I was having trouble figuring it out.
    Attached is the program I have written thus far without the loops.
    Thanks,
    Barrett
    Solved!
    Go to Solution.
    Attachments:
    Test Setup X01.vi ‏16 KB

    I cannot see your code since I don't have 2010 installed. A state machine would be good approach but in order to allow the user to cancel and possibly abort the process at any time your state machine should have a state such as "Check for timeout". In teh loop containing the state machine use a shift register to pass the desired delay value and the start time time for that particular delay. Once the user starts the process set the delay time to your desired time (45 minutes expressed as seconds) and have another shift register that contains the next state to go to after the delay completes. Use a small delay (100ms to 500ms depending on how accurate you want your times to be) to prevent your state machine from free running and then check the delay again. Use the current time and compare it to the start time. If the desired time has passed then go to the next state. You can store the next state in a shift register. No do the same thing for your Off Time state.
    Mark Yedinak
    "Does anyone know where the love of God goes when the waves turn the minutes to hours?"
    Wreck of the Edmund Fitzgerald - Gordon Lightfoot
    Attachments:
    Simple Delay in State Machine.vi ‏14 KB

  • I'm getting artifacts and noise when I converted a dv file to a dv quick time movie . HELP

    I am trying to create a dv quick time movie with a resolution of 576x 256, 16 bit from a avi file that is 720x480 millions of color . When I have done this in after effects and made a dv quick time movie it is very noisy (both image and background). I am stymied. Tried to use thenoise effects- and blurring effects to no satisfaction. ANyone out there have any suggestions???? I need immediate help

    which codec are you suggesting
    If Stan's right and that has been asked for by the client, use that.  If not, I like both the Lagarith codec and the UT codec.  Both are lossless and will preserve maximum quality.
    are you talking about doing this in AF or Premiere Pro
    Either way works.

  • Need help creating script to clear data with user inputs

    Hi experts.
    I need to create a script to clear data in a DEV system from a particular junction.
    Basically, I need the user to enter a CATEGORY, ENTITY and TIME which will then be used to delete all data in a particular table which meetes those criteria.
    I tried to write it in SSIS, but can't get a user input box.
    Also, Stored Procedures are not designed to open input boxes for these entries.
    Therefore, is there a way to do this in BPC script logic?
    I believe that I might be able to write either a Stored Procedure or DTSX package and then pass data from BPC Run Package?
    If this is correct, how would I go about it?
    Also, would it be possible to read the DISTINCT entries for Category, Time and Entity and present as a dropdown list?  (It doesn't matter too much if not, a manual entry would have to do).
    I will admit that I have no experience of script logc, so any docments and/or pointers would be appreciated.
    Thanks

    Thank Karthik, but I can't use the clear for this job.
    Specifically, I need this to delete from the LCK tables whenever data gets stuck, so if anyone can tell me the format to use, I'd be extremely grateful
    (And I appreciate that this is not recommended, but it's a DEV system and we need a way to clear these locks quickly when they occur)
    Edited by: Pie Eyed on Oct 1, 2011 2:54 PM

  • Date/time-operations - need help

    Hi there,
    I have a simple question but i don't have really good ideas to solve the problem with ABAP.
    This is the situation in which I need help:
    I have many date/time-pairs (every in a single variable of type d and t). Now I want to compare one date/time-pair with a given date (also as pair). This will give a time difference between the two dates.
    After that I want that all other date/time-pairs are shifted by this time difference (can be + and -).
    So now my solution yet:
    * FORM for calculation the time difference between 2 dates
    FORM idoc_compare_dates  USING    iv_date_orig
                                      iv_time_orig
                                      iv_date_new
                                      iv_time_new
                             CHANGING cv_diff       TYPE p.
      DATA: lv_timestamp_orig    TYPE timestamp,
            lv_timestamp_new     TYPE timestamp.
    * Creating timestamps for comparison
      CONVERT DATE iv_date_orig TIME iv_time_orig
        INTO TIME STAMP lv_timestamp_orig TIME ZONE sy-zonlo.
      CONVERT DATE iv_date_new TIME iv_time_new
        INTO TIME STAMP lv_timestamp_new TIME ZONE sy-zonlo.
    * Calculation the time difference
      cv_diff = lv_timestamp_new - lv_timestamp_orig.
    ENDFORM.                    " IDOC_COMPARE_DATES
    * FORM for shifting a date by the time period calculated in the first FORM
    FORM idoc_calc_single_date  USING    iv_diff      TYPE p
                                         iv_date_orig
                                         iv_time_orig
                                CHANGING cv_date_new
                                         cv_time_new.
      DATA: lv_timestamp_orig   TYPE timestamp,
            lv_timestamp_new    TYPE timestamp.
    * Creating a timestamp for the original date
      CONVERT DATE iv_date_orig TIME iv_time_orig
        INTO TIME STAMP lv_timestamp_orig TIME ZONE sy-zonlo.
    * Shifting the date
      lv_timestamp_new = lv_timestamp_orig + iv_diff.
    * Creating the new date into the output-variables
      CONVERT TIME STAMP lv_timestamp_new TIME ZONE sy-zonlo
        INTO DATE cv_date_new TIME cv_time_new.
    ENDFORM.                    " IDOC_CALC_SINGLE_DATE
    I am not sure if this coding above is really correct. Can you please check it? Perhaps you have also other ideas to solve this problem?
    Thank you!!
    Kind regards

    Thank you for your answers. Now I've created a small dummy-report, that tests the logic. And I think it seems to be okay.
    You can also check it if you want to with this small report:
    REPORT  zjz_test_timediff.
    PARAMETERS: p_dat1  TYPE sydatum DEFAULT sy-datum,
                p_zei1  TYPE syuzeit DEFAULT sy-uzeit,
                p_dat2  TYPE sydatum DEFAULT sy-datum,
                p_zei2  TYPE syuzeit DEFAULT sy-uzeit.
    SELECTION-SCREEN: SKIP 2.
    PARAMETERS: p_diff type p.
    SELECTION-SCREEN: SKIP 2.
    PARAMETERS: p_dat3  TYPE sydatum,
                p_zei3  TYPE syuzeit.
    DATA: lv_timestamp_orig   TYPE timestamp,
          lv_timestamp_new    TYPE timestamp,
          lv_diff             TYPE p.
    AT SELECTION-SCREEN.
      PERFORM idoc_compare_dates USING p_dat1
                                       p_zei1
                                       p_dat2
                                       p_zei2
                              CHANGING p_diff.
      PERFORM idoc_calc_single_date USING p_diff
                                          p_dat1
                                          p_zei1
                                 CHANGING p_dat3
                                          p_zei3.
    *&      Form  IDOC_COMPARE_DATES
    FORM idoc_compare_dates  USING    iv_date_orig
                                      iv_time_orig
                                      iv_date_new
                                      iv_time_new
                             CHANGING cv_diff       TYPE p.
      DATA: lv_timestamp_orig    TYPE timestamp,
            lv_timestamp_new     TYPE timestamp.
      CONVERT DATE iv_date_orig TIME iv_time_orig
        INTO TIME STAMP lv_timestamp_orig TIME ZONE sy-zonlo.
      CONVERT DATE iv_date_new TIME iv_time_new
        INTO TIME STAMP lv_timestamp_new TIME ZONE sy-zonlo.
      cv_diff = lv_timestamp_new - lv_timestamp_orig.
    ENDFORM.                    " IDOC_COMPARE_DATES
    *&      Form  IDOC_CALC_SINGLE_DATE
    FORM idoc_calc_single_date  USING    iv_diff      TYPE p
                                         iv_date_orig
                                         iv_time_orig
                                CHANGING cv_date_new
                                         cv_time_new.
      DATA: lv_timestamp_orig   TYPE timestamp,
            lv_timestamp_new    TYPE timestamp.
      CONVERT DATE iv_date_orig TIME iv_time_orig
        INTO TIME STAMP lv_timestamp_orig TIME ZONE sy-zonlo.
      lv_timestamp_new = lv_timestamp_orig + iv_diff.
      CONVERT TIME STAMP lv_timestamp_new TIME ZONE sy-zonlo
        INTO DATE cv_date_new TIME cv_time_new.
    ENDFORM.                    " IDOC_CALC_SINGLE_DATE

  • Need help creating many, many users.

    Hi,
    I need to create around 500,000 users in the iFS schema in the quickest possible way.
    The java API will do about 2 a second, which gives me an overhead of a few days?!?
    Any suggestions would be greatly appreciated.
    Thanks, this list has never let me down yet ;o)
    Paul.
    null

    Paul, we have not tested creating that many users in iFS, so we don't know if you will run into any issues. And I don't have any timed stats for creating users through XML.
    But we believe that using the Java API is the fastest way to create users.
    You will want to create the users in batch, and disconnect between batches, as the JVM memory will increase during the create.
    So you may want to create the users 10,000 at a time, and then disconnect and reconnect to create the next 10,000. Set your java MX setting for the JVM as high as you can (say, 768M), and then measure your memory usage for the first 10,000 users to see close to the MX setting the JVM gets.

  • Need help creating landscape in AE

    Hi, I need to create an animation of a train moving through different landscape scenes. I want the hills to be an actual 3D rendering with the train moving through them but I am unsure how to do this. I am familiar with 3D and can create the hills in my 3D application but how do I get my 3D hill into AE so the train, camera and lights etc. can interact with the hill?
    1. How do i get my 3D hill into AE?
    2. How do I add the train so it goes around the hills?
    3. How do I get the camera and lights etc. to reflect on my 3D hill?

    First of all, it would be very helpful to post an example of the kind of look you're going for or a similar shot you're trying to recreate.  In animation there are limitless ways of making things so it really helps to be very specific.  For now I can advise this much...
    1.  Render your hills out of your 3D application as an image sequence that supports transperancy if you want to layer them or you want the sky to show up behind them.
    2.  If you want the train to go around the hills, it really depends on how you make the train.  Are you also rendering that in a 3D app?
    3.  I don't know what you mean by getting the camera to reflect, but when you make a layer 3D, After Effects shows the Material Options settings that allow you to control how your layers react to different lighting setups.

  • Aperture Workflow - need help creating workflow for photo management

    Hi -
    I currently shoot with a Canon SD890 (point & shoot) and a Nikon D300 (SLR). My photography is either personal photography or street photography. I may use some of my photography for a web project but that should not be considered right now. I shoot jpegs with the SD890 and RAW with the D300. I need to create a workflow that will allow me to manage all of my photos as well as the RAW vs JPEG aspect. Here are a few initial questions:
    1) Should I separate the RAW and JPEGs in Aperture (two libraries)? One library for finished photos and one for negatives?
    2) What folder structure should I use? Since I am not a professional photographer, I won't be shooting projects. I think something date or event driven would be best (preferably both).
    I am interested to hear how others do this...especially if you use both point & shoot and SLR cameras.
    Thanks for your help!

    jnap818 wrote:
    1) Should I separate the RAW and JPEGs in Aperture (two libraries)? One library for finished photos and one for negatives? I am interested to hear how others do this...especially if you use both point & shoot and SLR cameras.
    No, use a single Library. Aperture will have no problems with the various formats or with various different cameras.
    2) What folder structure should I use? Since I am not a professional photographer, I won't be shooting projects. I think something date or event driven would be best (preferably both).
    Actually those date or event driven batches of images are very logically "Projects" in Aperture. Simply name each group of images as you import into AP as a new Project.
    IMO it is not good to import camera-to-Aperture (or direct to any app other than the Finder). Best is to use a card reader and use the Finder to copy images from the camera card to a folder on the computer hard drive.
    Below is my Referenced-Masters workflow:
    • Remove the CF card from the camera and insert it into a CF card reader. Faster readers and cards are preferable.
    • Finder-copy images from CF to a labeled folder on the intended permanent Masters location hard drive. I label that folder with the Project name suffixed with _masters, that way I can always find the Masters if Aperture forgets where they are.
    • Eject CF.
    • Burn backup copies of the original images to DVDs or to hard drives (optional backup step).
    • Eject backup DVDs/hard drives (optional backup step).
    • From within Aperture, import images from the hard drive folder into Aperture selecting "Store files in their current location."
    • Review pix for completeness (e.g. a 500-pic shoot has 500 valid images showing).
    • Reformat CF in camera, and archive DVDs of originals off site.
    Note that the "eject" steps above are important in order to avoid mistakenly working on removable media.
    I strongly recommend that every Aperture user spend $35 and work through the tutorial CD Apple Pro Training Series: Aperture 2 (Apple Pro Training Series) by Ben Long, Richard Harrington, and Orlando Luna (Paperback - May 8, 2008), Amazon.com. Note that the value is in working the tutorial, not in using the book as a manual.
    Good luck!
    -Allen Wicks

  • I bought Quick Time Pro to help edit videos and now cannot SEE any video through my Quick Time Player

    I can hear the audio for each video BUT the window for SEEING the videos does not open- it remains "closed" on top of the start/stop/pause controller.  HOW can I fix this so I can also see the videos I want to edit?
    It worked fine the day I uploaded and began using Quick Time Pro, but has not since that day....

    If it is still slow after removing Symantec, you may need a RAM upgrade. Yosemite can run very poorly on older machines with only 4 GB RAM.

  • Quick time advice needed

    first of all where can i get quick time 7 for mac every time i go on the apple website it keeps giving me the windows installer where the **** is the mac quick time installer.
    i am currently using os x 10.4.9 on a d,a with upgraded processors duel 1 ghz. but my quick time progrgram keeps crashing every time i try to watch an oldish quicktime file i have i keep getting error messages from a fire wire external hard drive

    "i get lots of errors going off some times it works other times it shows no sound or bleeping noises or error messages im wondering if the hard drive as a problem with it"
    Are you talking about your Software Update control panel? If so, then you need to cross-post in the Forums of whichever model Mac you have & the Mac OS X v10.4 Tiger Forums
    You will also need to advise exactly what those errors stated so that the knowledgeable users in the above forums can properly advise you on troubleshooting solutions.
    In the mean time the following Knowledge Base Article may be of some use:
    http://docs.info.apple.com/article.html?artnum=106695 Troubleshooting Automatic Software Update in Mac OS X
    Your system info confirms you are only using OS 10.4 which is currently outdated & not compatible w/the currentl version of QuickTime.
    You need to update your OS & possibly other things for your model Mac.

  • New to Illustrator, need help creating a map?

    Need to create a map of a neighborhood.  New to program any help would be great!

    rdelaroca,
    There are vector maps available for many areas.
    Or you may work on a locked image from Google Maps or something including the important parts/themes/whatever, using the Pen Tool as the primary tool for shapes in general.

  • Need help creating arraylist

    I am trying to help a friend in school with a project and we need some help...
    We need to write a program to estimate how much paint is needed to paint a house. Assuming we know the square feet that a gallon of paint covers, number of coats required, and the dimensions of the wall, window, door, or gable.
    We are using a GUI to enter the data for the different regions.
    We have the GUI created and the hierchy competed. I need some help creating the arraylist to run the program.
    The user will enter a new region by selecting:
    surface type
    width
    height
    then you will be able to add or insert to include this region in the list.
    You will also be able modify, delete, or navigate to existing regions in the list by selecting the appropriate navigigation buttons below:
    ( |< or < or > or >| )
    Classes include:
    PaintEstimatorView
    PainEstimator Model
    Regions:
    Wall
    Door
    Gable
    Window
    And the Approriate Listners
    Each region will have its own height and width which are set when the region is created
    Each region will compute and return its area and the walls and gables will contribute to the surface; windows and doors will reduce the surface.
    each region will calculate its area.
    We need to include a View and Model
    The view will manage the interface and the model will provide the necessary processing.
    responsibilities of the view:
    Instantiate and arrange the windowobjects
    instantiate and initialize the model
    handle user generated events such as button clicks and menu selections by sending message to the model
    represent the model to the user.
    Model:
    Define and manage the applications data(coordinating the activities of several programmer defined classes)
    respond to messages from the view
    We have the GUI completed I just need some help getting the arraylist started to run the program.
    We will need to keep a count and index of all the regions created by the user and you need to be able to shuffle throught them if you need to delete or modify them. You also need to insert windows and doors which will subtract from the total surface area but you have to go back to which ever wall or gable and create the window or door before or after that region.
    If anybody could help it would be greatly appreciated.
    Thanks in adavnce
    Rus

    Sorry, I forgot to add my code last night.
    This is what we have so far.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    public class TestSwingCommonFeatures extends JFrame {
    private JRadioButton wall, window, gable, door;
    private JButton computegal;
    public TestSwingCommonFeatures() {
    // Create a panel to group three buttons
    JPanel p1 = new JPanel(new GridLayout(2, 2, 5, 5));
    JTextField sqftpergal = new JTextField(8);
         JTextField coats = new JTextField(8);
         JTextField gallonsneeded = new JTextField(8);
         gallonsneeded.setEditable(false);
         p1.add(new JLabel("SQ ft / gallon"));
    p1.add(sqftpergal);
    p1.add(new JLabel("Number of gallons:"));
    p1.add(coats);
    p1.add(new JLabel("Gallons needed:"));
    p1.add(gallonsneeded);
         p1.add(computegal = new JButton("Compute gallons needed"));
         //computegal;
    p1.setBorder(new TitledBorder("Select gallons & coats"));
    // Create a font and a line border
    Font largeFont = new Font("TimesRoman", Font.BOLD, 20);
    Border lineBorder = new LineBorder(Color.BLACK, 2);
    // Create a panel to group two labels
    // panel 2
         JPanel p2 = new JPanel(new GridLayout(4, 2, 5, 5));
    p2.add(wall = new JRadioButton("wall"));
    p2.add(gable = new JRadioButton("gable"));
         p2.add(new JButton("ADD"));
              p2.add(window = new JRadioButton("window"));
              p2.add(door = new JRadioButton("door"));
                   p2.add(new JButton("Remove"));
    p2.add(new JLabel("Width"));
    p2.add(new JTextField(12));
         p2.add(new JButton("Insert"));
         p2.add(new JLabel("Height"));
    p2.add(new JTextField(12));
         p2.add(new JButton("Delete"));
    p2.setBorder(new TitledBorder("Controls"));
    ButtonGroup radiogroup = new ButtonGroup();
    radiogroup.add(wall);
    radiogroup.add(gable);
         radiogroup.add(window);
         radiogroup.add(door);
    //panel 3     
         JPanel p3 = new JPanel(new GridLayout(2, 1, 5, 5));
    p3.setBorder(new TitledBorder("Section Selection"));
         p3.add(new JButton("<|"));
              p3.add(new JButton("<"));
                   p3.add(new JButton(">"));
                        p3.add(new JButton("|>"));
    p3.add(new JLabel("Count"));
    p3.add(new JTextField(4));
         p3.add(new JLabel("Index"));
    p3.add(new JTextField(4));
    // Add two panels to the frame
    setLayout(new GridLayout(3, 1, 5, 5));
    add(p1);
    add(p2);
         add(p3);
    public static void main(String[] args) {
    // Create a frame and set its properties
    JFrame frame = new TestSwingCommonFeatures();
    frame.setTitle("TestSwingCommonFeatures");
    frame.setSize(600, 400);
    frame.setLocationRelativeTo(null); // Center the frame
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setVisible(true);
    private class UpdateListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    System.out.println("Update button was clicked");
    private class NavListener implements ActionListener {
    public void actionPerformed(ActionEvent e) {
    System.out.println("Nav button was clicked");
    // Create a list to store data
    java.util.ArrayList paintList = new java.util.ArrayList();
    This is the GUI for the project that we have come up with. I have to write the arraylist for inside the model.
    I have tried a couple different things but have been unsuccessful getting it to work. All I am looking for is a start of the arraylist I will try to figure out the rest myself.
    Thanks

  • Iscripts - Need help creating a form in one

    I am confused about delimiting in iscripts. I need to create the fiollowing form:
    In iscript named IScript1
    in function: buildform
    buildform has these two inputs, firstname and lastname
    the action of the form is also in iscript1 function getinputs
    iscript getinputs will just print out the firstname and lastname
    Could I get some help with this?
    Thanks, Allen Cunningham

    Your site is running on an Apache server, so it definitely doesn't support ASP. Apache frequently supports PHP, but I couldn't tell from the headers sent by your server whether it's supported on your site.
    I suggest that you contact BT Business support to see if they offer a formmail script. Most hosting companies do. The support pages should describe how to set it up.

  • Need help creating URL for getImage

    In the following code example, I get an error when javac compiling. I need help, because I cannot determine what is wrong. "....." denotes extraneous code removed for readability.
    import java.awt.*;
    import java.io.*;
    import java.applet.*;
    import java.net.*;
    public class testapp extends java.applet.Applet implements java.lang.Runnable
    public static void main(String[] argv)
    ����.
    public void init()
    Toolkit toolkit = Toolkit.getDefaultToolkit();
    Image image1 = toolkit.getImage("imageFile.gif");
    Image image2 = toolkit.getImage( new URL("http://java.sun.com/graphics/people.gif"));
    ��
    javac reports:
    unreported exception java.net.MalformedURLException; must be caught or declared to be thrown
    Image image2 = toolkit.getImage( new URL ("http://java.sun.com/graphics/people.gif"));
    ................................................^

    With this recommended code:
    ===================
    try {  Image image2 = toolkit.getImage( new URL  ("http://java.sun.com/graphics/people.gif"));}catch(MalformURLExceptione){System.out.println("Error"); }
    ======================
    it now compiles ok, but when I access the page through the browser, I get "applet not initialized" and the page times out.
    With the lines commented out, the page loads.
    What does this tell us:
    - all we have done is mask a problem that the compiler previously highlighted.
    But what is the problem?
    As far as I can tell, the code is exact copies from the examples posted online.
    Where should System.out.println("Error"); be displayed? I can't find it. There might be a clue in the error message.

Maybe you are looking for