Copying files folders display different sizes

I'm pretty sure I'm not crazy, but isn't it true that when you copy files from one drive to another, the sizes as reported in the Finder may not always be equal even though the actual files may be exactly the same. Nothing fancy here, just a manual drag and drop of about 20 folders with many files in each. In all cases, one drive is displaying consistently smaller folder sizes than the other by <1% and as much as 30%. Should I worry or is this just one of those oddities of sectors and formatting and so on?

It can vary due to File Allocation Block sizes, but 30 % would either mean a really small file... 1,025 bytes requiring 2 1,024 size block & may report 2048 on one, or one drive is not HFS+, like perhaps FAT32, in which case whole Forks can get lost.
Or are you talking about the Get info Window that reports in Bytes for size?

Similar Messages

  • Applescript copy Files-Folders help.

    Hello everybody,
    I need your help on a copy files – folders script issue. I have two folders A and B, I need a script that every time I drop a file or folder on A to copy the files or folders on B.
    I am new on this Mac amazing world, so, I really need your help.
    Thanks,
    Andy
    p.s. Sorry for my English, is not my native language..

    Hi Andy
    Try the below folder action script, as the code stands it will not replace any folders/files in "B" if they are the same uncomment the "with replacing" to replace folders, files that are the same in "B".
    Also as the code stands it will leave the origional copy in folder "A"
    You will need to save the code to:
    Macintosh HD:Library:Scripts:Folder Action Scripts:
    and attach it to folder "A" , making sure to enable folder action scripts.
    on adding folder items to thefolder after receiving theseItems
    tell application "Finder"
    duplicate theseItems to folder "Macintosh HD:Users:Andy:Desktop:B:"--with replacing
    end tell
    end adding folder items to
    ----------

  • Folder/ file icons are different sizes from one window to another!

    Hi there
    I am having an extremely annoying problem where all my folders and files (in icon view) are totally different sizes from each other from one window to another. For example, I might click on a folder that's icon is small sized (64x64), but when that folder opens up, the icons of the subfolders inside are huge (276x276) and need to instantly be resized and re-arranged. Then if i continue to open one of these subfolders, the file icons inside it are now medium sized (96x96). Each new folder that I go into on my hard drive will be differently sized and I end up spending ages resizing and re-arranging them before I can do my work. This problem never happened in Leopard and Im despairing of what to do.
    Is there a way of setting a default icon size and spacing that can then be applied to every folder and file on the hard drive? I have used the 'Use as defaults' option on the 'View options' window but this doesn't apply it to anywhere else besides the current window you are on.
    Surely, Im doing something wrong as Apple could never have overlooked such an obvious problem like this?
    Can anyone advise?
    Many thanks
    Dan

    The Finder will (theoretically) remember the view settings for each individual folder that you visit. If you have not opened a particular folder before, you should get the default view settings, but once you have changed the view then that is what you will get on subsequent visits. You can erase the previous settings by deleting the (normally invisible) .DS_Store file that is created in a folder when it is opened, but this file can contain other Finder metadata.

  • Not able to copying files/folders from one Document Library to another Document Library using Open with Browser functionality

    Hi All, 
    We have SharePoint Production server 2013 where users are complaining that they are not able to copy or move files from one document library to another document library using “Open with Explorer” functionality.
    We tried to activate publishing features on production server but it did not work. We users reported following errors:  
    Copying files from one document library to another document library:
    Tried to map the document libraries and still not get the error to copy files: 
    In our UAT environment we are able to copy and move folders from using “Open with Explorer” though.
    We have tried to simulate in the UAT environment but could not reproduce the production environment.  
    Any pointers about this issue would be highly appertained.
    Thanks in advance
    Regards,
    Aroh  
    Aroh Shukla

    Hi John and all,
    One the newly created web applications that we created few days back and navigated to document library, clicked on “Open with Explorer”, we get this error.
    We're having a problem opening this location in file explorer. Add this website to your trusted and try again.
    We added to the trusted site in Internet Explorer for this web application, cleared the cache and open the site with same document library but still get the same above error.
    However, another existing web application (In same the Farm) that we are troubleshooting at the moment, we are able click on “Open with Explorer”,  login in credentials opens and we entered the details we are able to open the document
    library and tried to follow these steps:
    From Windows Explorer (using with Open with Explorer), tried to copy or move a files to
    source document library.
    From Windows Explorer moved this file to another destination document library and we got this error.
    What we have to achieve is users should be able to copy files and folders using
    Open with Explorer functionality. We don’t know why Open with Explorer
    functionality not work working for our environment.  
    Are we doing something wrong? 
    We have referred to following websites.
    we hope concepts of copying / Moving files are similar as SharePoint 2010. Our production environment is SharePoint 2013.   
    http://www.mcstech.net/blog/index.cfm/2012/1/4/SharePoint-2010-Moving-Documents-Between-Libraries https://andreakalli.wordpress.com/2014/01/28/moving-or-copying-files-and-folders-in-sharepoint/
    Please advise us. Thank you.
    Regards,
    Aroh
    Aroh Shukla

  • Cannot copy file with other buffer sizes, except 1

    Hi,
    i'd like to copy files (txt, images, etc) , but by using the following route:
    -read bytes from a file in a ByteBuffer
    -use a byte array to create a String representation in binary form (ie "0101101") of the ByteBuffer
    -print the string
    and then the reverse:
    -create a byte array from the String
    -put the bytes in another ByteBuffer
    -write them to the destination file
    The problem is, that in the general case, this only works for ByteBuffer.allocate(1)! it works for txt files with any size, but not for image files; i have not tried for any other kind of file.
    Ideas?
    import java.io.*;
    import java.nio.*;
    import java.nio.channels.*;
    import java.math.*;
    /* create the copy of a file:
    * In the middle print a string with the contents of the buffer, in binary form
    * and then use this string to create the copy of the picture.
    public class CopyFile
      static public void main( String args[] ) throws Exception
         if (args.length<2) {
          System.err.println( "Usage: java CopyFile infile outfile" );
          System.exit( 1 );
        String infile = args[0];
        String outfile = args[1];    
        FileInputStream fin = new FileInputStream( infile );
        FileOutputStream fout = new FileOutputStream( outfile );
        FileChannel fcin = fin.getChannel();
        FileChannel fcout = fout.getChannel();
        ByteBuffer bufferSource = ByteBuffer.allocate( 1 );
        ByteBuffer bufferDest = ByteBuffer.allocate( 1 );
        byte[] barraySource;
        byte[] barrayDest;
        while (true) {
          bufferSource.clear();
          int r = fcin.read( bufferSource );
          barraySource=bufferSource.array();
          BigInteger biFrom = new BigInteger(barraySource);           
          String binary = biFrom.toString(2);
          System.out.println(binary+" | ");     
           BigInteger biTo=new BigInteger(binary,2);
           barrayDest=biTo.toByteArray();
           bufferDest.clear();
           bufferDest.put(barrayDest);
          if (r==-1) {
            break;
          bufferDest.flip();
          fcout.write(bufferDest);
    }

    I've changed a couple of things, but the problem remains. It is the first time i work with binary data. Can somebody give me a hint?
    public class Test2
        public static void main(String[] args) throws Exception
            File fin=new File("C:\\Documents and Settings\\p3020139\\My Documents\\pic.JPG");
            File fout=new File("C:\\Documents and Settings\\p3020139\\My Documents\\piccp.JPG");
            FileInputStream fis=new FileInputStream(fin);
            FileOutputStream fos=new FileOutputStream(fout);       
            long fileSize= fin.length();
            long bytesRead=0;
            BufferedOutputStream baos=null;
            while (bytesRead<fileSize+1)
                byte[] barray=new byte[128];
                int read=fis.read(barray); 
                BigInteger biFrom = new BigInteger(barray);           
                String binary = biFrom.toString(2);
                System.out.println(binary);
                BigInteger biTo=new BigInteger(binary,2);
                byte[] bytesTo=biTo.toByteArray();
                baos=new BufferedOutputStream(fos,128);
                baos.write(bytesTo);
                bytesRead=bytesRead+read;
            fis.close();
            baos.close();
        }

  • How can I copy file/folders from and to hard drives? How can I have two or more windows of explorer so that I can drag and drop from one hard drive to another?

    Hi,
    I am a new customer (purchased last week) of MacBookPro (latest) and its my first ever Apple laptop.
    I am almost lost to find the operating tools.
    1. How can I copy files from hard drive to computer and vis-a-versa?
    2. Only can browse one but how can I have two or more browses at the same time like in MS windows?
    3. No right click works on track pad?
    4. Is there application/ program compatible to MS office? If so how much and how can I purchase?
    5. Is there AutoCAD program that is compatible to MS Window AutoCAD? and if yes how much and how can I purchase?
    I will very much appreciate if you could email me the with the solution/answers please.
    Regards,
    Khagendra Limbu

    1) For some reason this happens once in a while with FAT32 enabled external harddrives. I have no idea why this happens but it most easily solved by reformatting the drive. First make sure you've copied everything from the external drive to your internal harddrive. You've done this earlier so I assume you know how to do this.
    Now the reformatting part. Open Finder and go to Applications. Look for the folder called "Utilities". Click on it. In it you find a program called "Disk Utility". Click on it. Now look for the external drive. You probably see two entries for the disk. Click on the one that contains the name of the drive NOT the one that describes the disk (Like for example 320.07 GB Samsung S2 Portable Media).
    Now you see four tabs in the righthand part of the window. They're called "First Aid", "Erase", "RAID" and "Restore". Click on "Erase". This opens the tab with (amongst others) a dropdownbox (Format) and a textbox (Name) . In the dropdownbox select "Mac OS Extended (Journaled). Take note! This selection disables usage of the drive with Windows PC's. If your goal is to share the drive with Windows PC's select the MS-DOS FAT option.
    Enter a label for the drive in the textbox Name. Now click on the button "Erase". This will format the drive.
    Now when it's done you can copy back all the items you've copied to your internal harddrive earlier.
    2) Opening two windows like Explorer on Windows is opening two Finder windows on the Mac. Simply click on the background. In the menubar you items like 'Finder", "File", "Edit", "View", et cetera. Click on "File" and "New Finder Window". Do this two times. Alternatively you can click on the background and press CMD-N two times.
    3) You can right click on the trackpad. This however depends on if you've enabled the feature in System Preferences. In the topmenubar click on the Apple icon and select "System Preferences". Now look for Trackpad in Hardware. Click on it. You see three tabs with the names "Point & Click", "Scroll & Zoom" and "More Gestures". Select "Point & Click" and look for "Secondary Click'. Make sure it is checked and make sure it has written "Click or tap with two fingers" written beneath "Secondary Click". When you're done exit System Preferences. Now select the background and tap with two fingers on the trackpad. This should open the contextuel menu with options like "New Folder", "Get Info" et cetera.

  • Swapping video files of a different size

    The final source files for my project won't be ready for a while, but I have a set of half resolution rough versions to work with in the mean time.
    I would like to perform the complete edit on these rough files and swap them out when I get the final versions. I could apply a transform effect and scale the files to fit the project, but there's probably going to be a couple of hundred clips once I've edited (from 12 source files). That will mean going through each clip and removing the transform effect.
    Is there an easier way to do what I want? Or perhaps there's a way to apply/remove an effect to a whole track instead of to individual clips? Putting the effect on won't be a problem since there will only be 12 clips when I start, but if there is a better way I would rather not go through each clip to remove the transform.
    I only have limited access to the computer with Premiere on it for this project so anywhere I can save time will help.

    also...something you are going to have to be aware of and manage very carefully if you choose to go the proxy edit route.
    You need to establish a naming protocol so that all the clips have identical names.  ie  the large clips and the proxy clips are identically named..BUT filed in different folders of course.
    You need to have the clips Time code match. ie proxy files (clips)  have identical timecodes to the large file (clips).

  • Moving vs. copying (files/folders)

    I have a single hard drive, two Users. I am launched into my main/Admin user. When a move some folders to the desktop they copy... others just move. How can that be? (Snow Leopard).

    Either they're on a different partition than the desktop, or you don't have write access to the folder containing those that copy. Press the Command key when dragging them.
    (85340)

  • Can you use a single webhelp file to display different help for two apps?

    I have updated a WebHelp project for a Windows app (let’s call it App1). Now the Dev team is creating a separately installed app (lets call it App2) that shares some of the same Help information as the original app. Both apps can be installed on the same system. The Help for App1 is accessed from an About menu in the app UI.  Some of the topics are dialog boxes accessed from a question mark icon (?) at the bottom of the UI (I assume map IDs are involved in hooking up the dialog box Help - I need to verify this with Dev). The Help for App2 will be accessed from the App2 UI, which looks very similar to the App1 UI, except that certain features in App1 are missing from App2.
    Here are the parameters:
    In some cases, entire Help topics will apply to both apps.
    In some cases, a portion of a topic for App1 will also apply to App2.
    In some cases, a topic or topic portion for App 1 does not apply to App2 and vice versa
    I’m using Robohelp 9 (RH9). Is there a way to allow App1 to display only the WebHelp that is relevant to that app and for App2 to display only the WebHelp that is relevant to that app? Is there a solution that would allow me to use one Help project and build only one Help file, with the result that App 1 displays only the Help it needs and App 2 displays only the Help it needs?  Would conditionalizing the Help and providing two sets of WebHelp be the solution? Or is there some other alternative?

    You could do it in a couple of ways – one way is to have 1 project & use conditions to generate 2 flavours of WebHelp output, one for each App; the other way would be to use one project and create DUCC flavoured WebHelp – that way the use would choose to read the appropriate flavour of help for their App.

  • Illustrator files printing in different sizes than was specified..

    Hi there,
    I am having a problem with some labels I have been making. I specify that I want the document to be 6.5 cm x 10 cm, and after I have laid them out in a page and printed them, I find that they are too big to fit on the surface I measured for. Does anyone know what is going on?

    By how much is the measurement off? What is the printed size of your 6.5 x 10 rectangle?
    What sort of printer are you using?
    I don't recall having had this problem unless I'd done something daft.

  • Deleteing files/folders from network drive

    I have a USB drive connected in to my Airport Extreme and I have conifgured user level access accounts for this. The four the iMac G4, iMac G5, iBook and Powerbook are all able to copy and delete files/folders with no problems. My Windows Vista machine is able to copy files/folders but I am only able to delete folders when they contain no files or sub-folders - sadly I do not have access to the full message but it is related to not having the correct permissions.
    The USB drive is Mac OS X Extended format as a Fat 32 format drive did not appear on the network (this was before the recent Airport update though).
    Has anyone else encountered this problem and if so - do you know of a way around it?

    Guess it's just me
    Any ideas?

  • Copying files from Windows rips out group permissions

    Hi there all,
    Having some problems with group permissions being removed from files when data is copied from a Windows OS.
    We currently have a network of Macs that are tied to a AD/OD structure.
    We have also set a custom umask for each mac defining 002 as the permissions to be written to files.
    However, when we connect to a Windows file share using the smb:// protocol and copy files/folders across to the Mac environment the umask permissions are not written correctly.
    The User is given full control and the Everyone group is denied access. However, no group permissions are written at all.
    We have tried altering the smb.conf file to no effect.
    Could anybody shed some light on this annoying problem?
    Many thanks

    You have to install this version of samba as Apple have made a complete hash of implementing their own... Another massive fail from the worlds favourite consumer electrics company... Listen to the pro users leaving in droves...
    http://eduo.info/apps/smbup

  • Why do copied files show different file sizes than the original files?

    When I copy files (to another drive, folder, etc.) some show the same file size as the original, but others don't.
    I'm guessing this is not abnormal, but what causes it?
    Thanks.

    Hi dymar,
    Copying to another Drive is understandable, they may have a differentnumber of Blocks allocated per file, for insnce a one Byte file might take up 512 bytes, 1024 Bytes, etc, but a Get info should show the actual size of the file within that/those blocks.
    If copying to another Format, like MS-DOS, Forks may be lost also.
    There are ways to actually Compare the files...
    http://www.hutsby.net/2008/01/apple-mac-osx-compare-files-and-folders.html
    http://www.deltopia.com/compare-merge-sync/macosx/
    http://www.macworld.com/article/49584/2006/03/cmpfldr.html
    http://www.araxis.com/merge_mac/index.html
    Or the most expensive one & my favorite, but far more useful, Tri-Backup...
    http://www.tri-edre.com/english/tribackup.html

  • Itunes allows library to point to other folders and not copy files - WHY DOESN'T iPHOTO?

    Hopefully Terence Devlin and other experts will see this. I really am intrigued as to iphoto behaviour and seek some clarification.
    I just waded through 13 pages of an old thread that was locked where Terence kept saying iphoto was all one needed to work with one's photos and kept getting called on the fact he would not answer the question "where are my photos" (photos = files) because it was so darn dangerous for anyone to touch the actual files in the iphoto library.
    I have a use case I need help on and an example of Apple's utter inconsistency here.
    Inconsistency: iTunes lets me create a library all the while pointing to the original files that *I* have imported and structured in a given directory/folder stucture.  Yes it means I manually manage what is in itunes etc, but that's how I like it. The key thing is that itunes allows the choice to import (copy) files (which makes duplicate and doubles hard disk usage) or not.
    iphoto does not allow that option.
    I just converted to Mac from a PC and copied in over 100gb of photo files - some 16,000 photos. I import new pics to the Mac using Canon native software and store them accoring to a structure/taxonomy that *I* determine and want to control - not some software's predetermined idea of events or locations or whatever.  In itunes I can make 'music' an 'audiobook' or I can make a podcast 'music', I can edit the metadata to order things in the 'library' as *I* choose and the itunes library is coole with this without havign ANY of the soruce files in its library. Naively, I thought iphoto would follow a similar philosophy.
    Use case: I discovered that iphoto has some very effective functionality for management of my uploads and sets etc in Flickr, but to do so I have to import my pics, obviously. So I did import the whole 'Pictures' folder - not for a moment considering that Apple would be dumb enough to copy every pic and make a duplicate, or that I might not get the chance to say yes or no to this in the settings, as per itunes.  Having looed for that optin and failed to find it I imported anyway to see what happened. After I realised that the Mac was heating up and files were being copied and I was going to lose another 100+gb of disk space I forced this to quit.  And thanks to others on that other thread I found the iphoto library and deleted the whole thing, getting back 100bg of drive space. All I want to do is use iphoto for the Flickr sharing/management functionality - I have no use for it otherwise. 
    Why would Apple think that not having to duplicate files is ok for itunes but not a viable option for iphoto? Why would I want to double the disk space used for every photo I store? At the very least iphoto needs to come with a health warning that it should only be used to import from external devices and be the sole manager of photos, unless one wants to use double the disk space.
    So if I want to use the sharing (i.e. Flickr uploading and management of sets etc) capabilities, should I import all or some of my folders, do my work and then delete the library each time to reclaim the disk space?

    If I import photos to iPhoto, the originals are deleted? So if I import from a card I have taken from my camera or if I connect my camera directly, the act of importing into iPhoto wipes them from my card?
    Again, you need to check your facts before getting indignant. This is simply not true. It's an option you have and not one I recommend using. But it's only an option.
    Storage costs money and I do not want to have two copies of every pic on my hard disk - especially given huge filesizes of RAW files today.
    No one is suggesting that you have two copies. You have your iPhoto Library and then you back that up. Again, less indignnation, more careful study.
    I do use other photo managers (e.g. native Canon tools) quite happily and they are far less 'exclusive' - i.e. I can use different apps with the same native file structure.
    Using other photo managers makes little sense, any more than having two address books. How do you keep them in sync. Your comment about file structure is important, we'll come back to that.
    If I want to go back to a Windows PC or any other machine and want to retain the "manual" file labelling and directory structure that I have implemented and been using for years, it seems that having a reference library that *I* know the taxonomy of is actually an advantage if I want to go somewhere else.
    If you want to retain exactly the same filing structure you have now, then don't use any Photo Manager. Stick to the file manager. You'll be missing out on a lot of options, but hey ho, it's what you want.
    That said, if you want to migrate from iPhoto to a Windows Machine then that's what File -> Export is for, and you can export from iPhoto to a folder tree matching your Events.
    And this is a big one: This is true of any Photo Manger. Especially one with lossless processing - iPhoto, Aperture, Lightroom et al.
    Here's the principle: IT IS MY DATA AND I WILL DECIDE HOW IT IS LABELLED - WHAT THE FILENAMES ARE - AND HOW IT IS STRUCTURED INTO DIRECTORIES AND SUB-DIRECTORIES.  I WILL DECIDE WHICH APPLICATION I USE TO DO ANYTHING WITH THAT DATA AT ANY POINT IN TIME
    DId you stomp your foot while writing those block capitals too?
    But here's the thing: It's your data then why the heck are you dealing with Files?
    This is the key difference, and frankly, unless you can geet this you're always going to have problems with Photo Mangers.
    The illustration I use is as follows: In my iTunes Library I have a file called 'Let_it_Be_The_Beatles.mp3'. So what is that, exactly? It's not the song. The Beatles never wrote an mp3. They wrote a tune and lyrics. They recorded it and a copy of that recording is stored in the mp3 file. So the file is just a container for the recording. That container is designed in a specific way attuned to the characteristics and requirements of the data. Hence, mp3.
    Similarly, that Jpeg is not your photo, it's a container designed to hold that kind of data. iPhoto is all about the data and not about the container. So, regardless of where you choose to store the file, iPhoto will manage the photo, edit the photo, add metadata to the Photo but never touch the file. If you choose to export - unless you specifically choose to export the original - iPhoto will export the Photo into a new container - a new file containing the photo.
    See? It's about the data and the data and the file are not the same thing. Organising your photos based on the files is like organising a shoestore based on the boxes and not the shoes.
    And here's the thing: anything you want to do with your Photos can be done either with or via your Photo Manager.
    And again, I strongly stress, this is true of iPhoto, Aperture and Lightroom.
    And please note: either with or via... Want to use a 3rd party editor, that can be done easily and so on.
    Let me correct you. "If you use an APPLE Photo Manager then it's the go-to app for whatever you do with your photos.
    Doesn't matter who makes it.
    Other Photo Managers may have more flexibility and enable greater user control."
    Sure. iPhoto's a $15 app. Aperture is a $70 one. Adobe's Lightroom is about $150. Pay more get more options.
    And remember where we came in here: You said you weren't able to choose where to store your files. You're wrong. You can. All I'm saying is that there's no point and more work to it.
    For many - including me - the Apple way seems way too dictatorial -
    Whoa. Apple are dictating nothing. You don't have to use iPhoto, you don't have to use a Mac. And remember:
    ...where we came in here: You said you weren't able t choose where to store your files. You're wrong. You can. All I'm saying is that there's no point and more work to it
    Are Ford dictatorial demanding you steer the car using a wheel? Sheez.
    and yes there are certainly advantages for some types of users of trusting one piece of software to do everything, however non-transparent it may be what it is doing or why, and with the dangers of trying to do ANYTHING else at all with one's photos.
    And again, everything is quite transparent if you take a little while to understand it. You don't understand it because you're coming from a file management  and not a data management perspective. Also no one is suggesting using "one piece of software to do everything". iPhoto leverages the Finder for storage, QuickTime for display, uses and Open-Source database and so on, it protects your original file like a digital negative.
    iPhoto may well not be the app for you. That's especially true since you don't understand it and are confusing it with a file manager. That's fine. But please, stop saying things that aren't true.

  • Is there a way to display the size of a folder or group of folders in Bridge?

    In windows it is easy to click on any folder and see the size of it's contents, whether it is a single folder or contains subfolders.  This doesn't seem possible as far as I can see in Bridge.  The only way I can see to see the size of a folder is to select all files in the folder and then it will display the size. Seems quite a clunky way or working and is frustrating when you want to see the size of a folder containing sub folders.  Strange for a program which is supposed to make managing files easier.  However, I'm hoping that there is a way to do this and I've not discovered it yet.
    If anyone knows of a way to click on any folder and display it's contents (with or without subfolders) without having to select all files, I would greatly appreciate them sharing it.
    Many thanks,
    Julie

    In the Folders Tab, right click on  folder  then click Reveal in Explorer. This will open an Explorer window with the folder selected.  In Explorer you can right click > Properties or navigate to whatever you want to measure.

Maybe you are looking for

  • ITunes Won't Let Me Make Ringtones of Songs That Are Listed to Work...

    I bought Stadium Arcadium when it came out a year and a half ago on the iTunes store. Today I checked and it said the songs on it can be made into ringtones. So I click on "Wet Sand" in my library, click "Store", then "Create Ringtone...". I got a me

  • Table names to find Program names and Table names

    Hi All, I want to find Program names and Tables names where Transaction codes are not been created. If TCodes are created I can find from TSTC. But programs and tables which does not have tcodes. How can I find them?

  • Icons in Web Start

    Hello all, I am trying to set the icon for a java web start gui app. i can do it outside of webstart, but not in webstart. i have looked at previous postings on this, but none of them work for me because i need to set the icon from a static context.

  • How to generate a html page for a VI which is created by a vi template dynamically

    I have a executable which calls a VI template dynamically, say it is subvi.vit. A subvi1.vi is generated by the template. On my web server, I want to display the front panel of subvi1.vi. How can I generate its html file programmatically if I don't w

  • ExternalInterface.call Causes JAVASCRIPT ERROR??

    my AS3.0 is this: btn_mc.addEventListener(MouseEvent.CLICK,journey_popup); function journey_popup(e) { ExternalInterface.call("journey_wow_popup"); my javascript is this: function journey_wow_popup () { window.open('journey_pricing.php','_blank', 'he