Director 12- can't create a windows projector - problem writing file error

I am trying to create a windows projector of a project. when I get the following error - problem writing file - file name- Can't compress file that has been modified and not saved. The file has not been modified and has been saved. Any help would be great.

Hi.
You say you have tried publishing to a new empty folder.  From the video I can see that the folder has table1.app in there (25 secs in) which is a Mac projector that has been published.
Yet you have Windows Projector checkbox ticked at the start of the video.
I publish Mac and Windows projectors to entirely seperate folders as a matter of practice.
I call the folders "Published" and "PublishedMac" and that is where the respective projectors for each piece of software lives.
Perhaps there is some mix up between Mac and Windows publishing that is going on because
you are publishing both to the same folder?
Hope this helps.
Richie

Similar Messages

  • Hi. I want to build a GUI based on several windows appearing following a certain sequence. How can i create different windows in the same VI? Also, i want the front panel of a subvi to appear when i run, how can i enable this.Thanks

    Having several windows appear ...

    Hi,
    You can't create several windows for one VI. But you can use the "Tab Control" and change tab's in the program. Or you can use sub VI's and show ther front panels.
    To show the front panel of a sub VI you have to open the VI you want to show and select "File->VI Properties". In the VI Properties window select Category "Window Appearance" and click Customize...
    In the Customize Window Appearence window, here you can set a number of attributes for how the window will appear, select "Show front panel when called" and "Close afterwards if originally closed" click OK and OK and save the VI, done.
    Now the VI front panel will appear then you use it as a sub VI.
    /Thomas

  • Can we create a window in a window?

    hi friends,
    i am designinf a form.Can we create a window in window .I want in a window there is abox like thing hw to design that box .
    please help me out.
    Edited by: tumma vandana on May 14, 2008 5:49 PM

    1. /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    2. /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    3. /: SIZE [WIDTH] [HEIGHT] [WINDOW] [PAGE]
    BOX
    Syntax:
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each parameter (XPOS, YPOS, WIDTH, HEIGHT and FRAME), both a measurement and a unit of measure must be specified. The INTENSITY parameter should be entered as a percentage between 0 and 100.
    •XPOS, YPOS: Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    •WIDTH: Width of the box.
    Default: WIDTH value of the SIZE command.
    •HEIGHT: Height of the box.
    Default: HEIGHT value of the SIZE command.
    •FRAME: Thickness of frame.
    Default: 0 (no frame).
    •INTENSITY: Grayscale of box contents as %.
    Default: 100 (full black)
    /: BOX INTENSITY 10
    Fills the window background with shadowing having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.

  • RE: How can I create a page break in a file?

    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How can I create a page break in a file?

    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the following
    two methods, but neither of them works. Specifically, it seems a special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);
    -----------------------------------

    Tien,
    Try myFile.WriteText('\x0c'); instead of myFile.WriteText('\f');
    Regards
    Richard Stobart
    -----Original Message-----
    From: Wang, Tien [SMTP:[email protected]]
    Sent: Friday, September 12, 1997 6:09 PM
    To: Glen A. Whitbeck
    Cc: forte-users; owner-forte-users
    Subject: RE: How can I create a page break in a file?
    Thank you, Glen. I tried WriteText. But it didn't work.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    From: Glen A. Whitbeck
    Sent: Thursday, September 11, 1997 11:59 AM
    To: Wang, Tien
    Cc: forte-users; owner-forte-users
    Subject: Re: How can I create a page break in a file?
    Instead of using "WriteLine," try using "WriteText" ("WriteLine" writes
    TextData into an open file, while "WriteText" writes data to a stream)
    like this:
    <method 1>
    myFile : file = new();
    myFile.WriteText('\f');
    Glen
    Wang, Tien wrote:
    Hi,
    I am creating a text file for a report which contains multiple pages.
    How can I create a page break in my file? I tried to use the
    following
    two methods, but neither of them works. Specifically, it seems a
    special
    character printed in the file. But when I print the file through a
    WordPad, it didn't separate pages.
    I am currently using version 3.0.C on Windows NT 4.0 with a HP Plus 4
    printer. Any help will be greatly appreciated.
    Tien Wang
    Indus Consultancy Services
    [email protected]
    >
    <method 1>
    myFile : file = new();
    file.writeLine('\f'); --- \f is the form feed in the C language
    <method 2>
    myFile : file = new();
    j : IntegerData = new( value = 14 );
    c : char = j.IntegerValue; -- c now contains ascii 14 (form feed)
    p : pointer to char = &c; -- Set a pointer to the character
    pageBreakTxt : TextData = new();
    pageBreakTxt.Concat(p);
    myfile.writeLine(pageBreakTxt);

  • How can I create a link from a CHM file to a webhelp file?

    How can I create a link from a CHM file to a webhelp file?
    The CHM output (accreditation.chm) is stored in a parent directory, and the webhelp output (index.htm) is stored in a child directory.

    Open the usual Link dialog and enter the relative path from where the CHM will be installed to where the webhelp will be installed.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Hi , my problem is that i can only create absolute links to other pdf-files in a main pdf-file. how can i switch to or create relative links. Thanks for help!

    Hi , my problem is that i can only create absolute links to other pdf-files in a main pdf-file. how can i switch to or create relative links. Thanks for help!

    I’m using version 11.0.10. So where the Menu resides in a folder ready to be burnt on to a CD, that same folder is where the links point to.
    Thanks

  • Can you convert a Windows Quickbooks Pro 2011 file to an Ibank file?

    does anyone know if you can you convert a Windows Quickbooks Pro 2011 file to an Ibank file?

    I can't answer for Internet Explorer but you should be able to export Bookmarks from FireFox. If you can't export from IE you may be able to import from EI to FireFox first.
    In FireFox, menu BookMarks>Organize Bookmarks, then in the pane which opens, menu File>Export (that's how it works on Linux so Windows should be broadly similar). The result should be an html file.
    You may be able to import this into Safari on your Mac; certainly you should be able to import it into FireFox and perhaps from there to Safari if necessary.

  • How can I create a windows scheduler for shutdown my system in network?

    Hello.
    I want to create a windows scheduler for shutdown my system in a specific time but it can't let me to create it. I used below link to create a task but when I click on Finish it show me an error about permission. I used administrator account too but
    got same error.
    http://www.wikihow.com/Automatically-Shut-Down-Your-Computer-at-a-Specified-Time
    Thank you.

    Hello,
    Can you try opening Task Scheduler as Administrator :
    Right-click on "Task Scheduler" shortcut and select "Run as administrator
    Regards,
    Régis

  • CAN'T CREATE A WINDOWS 7 COMPUTER'S "HOMEGROUP" OR CHANGE ITS "WORKGROUP"

    The Windows 7 Home Premium 64bit machine is connected to a "Home" (Windows 7 nomenclature)/"Private" (Windows Vista nomenclature) network. Yet, when I try to create a Homegroup (which I'm told in the Network and Sharing Center it is ready
    to create) I get a message that "a homegroup can only be created on a home network". But the computer IS on a Home network, is discoverable and is sharing everything. Oddly enough, in the Windows Explorer, listed as being on the network, IT IS NOT
    ACCESSIBLE TO ITSELF! This is the message I get when clicking on any of the computers on the network:
    "\\[ComputerName] is not accessible. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have accesss permissions.
    The specified network provider name is invalid."
    When I tried to change the computer's Workgroup I get "A general network error". I have also found that ""Windows could not start the PNRP Machnie Name Publication Service on Local Computer. Error 5: Access is denied."
    What can I do to fix this problem?

    Hello dazimon,
    If my understanding is right, you can access share folder from other computer, but you can’t open localhost share folder from the Network in the Windows Explorer.
    Do you mean that if you click other computer in the Network will receive the error message ‘\\[ComputerName] is not accessible. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have accesss
    permissions.
    The specified network provider name is invalid.’  ? 
    Please check if you have the permission to access other computer.
    In your last reply, do you mean that you have Cisco Firewall ACL to deny the network traffic?
    Please take the following steps for troubleshooting:
    1. Go to Control Panel\All Control Panel Items\Troubleshooting\All Categories, and run Homegroup troubleshooter
    2. Temporarily disable the Cisco firewall and check if the issue still exists
    3. We could turn off the Windows Firewall to check if the Windows firewall block the access
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Can't create a windows partition with bootcamp

    Hi
    i have a MacBook Air. Standard, no changes from my side.
    I have the newest Lion update and BootCamp in Version 4.
    So, now i want to install Windows 7 64 Bit.
    I start BootCamp Assistant.
    The first point, is grey. i can't activate it. This point is to create a Windows 7 Install Disk
    Second Point is to download the drivers and so on. This is working. I have the stuff on a usb stick.
    Third Point is to create/install Windows 7. So, i have the posibility to decide how big i want my windows partition. 20-32 GB.
    when i click on create button. There comes a pop up "Installtions CD is not found"
    I have a bootable Windows 7 USB Stick (8 GB - Fat32). The Stick works. When i boot with refit from the stick, the Windows 7 installation starts. But without a partition ... not so good :-)
    So, what can i do now? BootCamp don`t want the Windows USB Stick.
    I need help :-)
    Thanks

    undefiniert wrote:
    Hi
    i have a MacBook Air. Standard, no changes from my side.
    I have the newest Lion update and BootCamp in Version 4.
    So, now i want to install Windows 7 64 Bit.
    I start BootCamp Assistant.
    The first point, is grey. i can't activate it. This point is to create a Windows 7 Install Disk
    Second Point is to download the drivers and so on. This is working. I have the stuff on a usb stick.
    Third Point is to create/install Windows 7. So, i have the posibility to decide how big i want my windows partition. 20-32 GB.
    when i click on create button. There comes a pop up "Installtions CD is not found"
    I have a bootable Windows 7 USB Stick (8 GB - Fat32). The Stick works. When i boot with refit from the stick, the Windows 7 installation starts. But without a partition ... not so good :-)
    So, what can i do now? BootCamp don`t want the Windows USB Stick.
    I need help :-)
    Thanks
    You will need a windows install DVD, and 50 to 60G partition.

  • Can't create a Windows Seven USB drive using Bootcamp

    Hi! I ve been trying to create a Windows Seven bootable USB drive using the Bootcamp Assistant. I tried to create it using an ISO of my Windows DVD in order to install it on my new Mac Mini. My problem is that I get an error: Your bootable USB drive could not be created, an error occurred while copying the windows installation files. My USB drive is 8G, and I‘ve tried with a 100G external HDD too... So it‘s not a size problem. I also tried to format the drive different ways without any success... I found lots of threads relating to this problem but none of them had a solution. Any clues? Thanks in advance!

    You can create a bootable usb via bootcamp

  • Can't create a windows partition

    I'm trying to create a windows partition through bootcamp but it refuses to do so because I'm guessing that it's scanning permission that need to be repaired. The message states that I need to run disk utility.
    The problem though is, I can't do anything about the permissions cause of a known "bug" (??) on leopard.
    It states 3-4 permission need repairing but they can't be repaired. Others have that issue but they probably had windows installed before this happening.
    here is an image of disk utility.
    http://idisk.mac.com/dkatsafouros/Public/permissions.jpg

    Alright I solved the problem. It was a repair disk and a repair permissions check.
    Everything is fine now

  • I have Adobe X how can I create a windows 8 install using Custom Wizard install X?

    I have used Adobe Customization Wizard X to create a custom install on our Windows XP machines. I tried to install it on a Win8 machine and it failed. How can a create an install that will run on a windows 8 machine?

    Win 8 is not supported until 10.1.5 as described here: Overview — Acrobat and Adobe Reader Release Notes
    Get the update here: ftp://ftp.adobe.com/pub/adobe/acrobat/win/10.x/10.1.5/misc/
    However, it's a better idea to update to the latest which is currently 10.1.13.
    If you need more help, see Introduction — Enterprise Administration Guide
    hth,
    Ben

  • How can I create a link to download a file in Captivate?

    So, in my Captivate file, I want people to be able to download an XML file to their machine.  If I create a hyperlink to "open a file", then when a user clicks on it, captivate attempts to open the xml file in a browser window instead of downloading it.  I can't figure out how to use the download attribute for an href in captivate and I'm not sure if javascript to do this would execute properfly.  Anybody know the best way to accomplish a force download of a file from a captivate presentation (Captivate 6)?
    TIA.

    If you want to really do this so that it is consistent for all browsers, you'll need to implement this at the server level.  I did this with the Dynamic PDF Export Widget.  Typically, a PDF will be displayed in the browser, but I added the ability to download it instead.  It does require a PHP file (or some other server side script).  In the PHP file, you'll want to set the response header for Content-Disposition to "attachment"... that's the key.
    The elbow grease part has to do with managing how the browser handles the link.  You'll want the Captivate hyperlink to open a new window so that the student does not navigate away from your course in the current window.  But since you are opening a PHP file, you can inject javascript into the document of the new window/tab to close itself.  The download will still continue eventhough the window/tab was programmatically closed.  However, most modern browsers will automatically close the window/tab for you when downloading a file.  If you want to see an example of a PHP file that implements this, go ahead and download the trial version of the Dynamic PDF Export widget.  You'll see the create.php file in the zip package.
    http://captivatedev.com/2012/07/25/adobe-captivate-6-x-widget-dynamic-pdf-export/
    If you want to go simple as TLC Media Design suggested, just zip it and let your students unzip the xml file, or just rename the xml file with a .zip extension and tell them to rename the file back to .xml after downloading.

Maybe you are looking for

  • How to remap mouse wheel in single application?

    Hello, I want to achieve simple thing - control audio in Smplayer using mouse wheel. The tricky part is that I need to control the master volume on my AV receiver because the audio in videos is played as bitstream (DTS/AC3 over SPDIF). I'm able to mo

  • Find & Replace Item in BOM

    We have to update a child item that appears in many different BOM.  Is there a way to locate the child item in all BOM's?  Also, is there  a way to locate/find and replace the child or update its qty as in this instance?  I am not comfortable writtin

  • Parent Container can't autoLayout Issue

       var m:Matrix=new Matrix();    m.scale(a, d);    cusStage.transform.matrix=m.clone(); The parent Containter can't autoLayout, and the H/Vscrollbar don't show automatically. The child is a displayobject. Parent is a Canvas.

  • PhotoShop CS5 upgrade error U44M1I210

    When i tried to upgrade PhotoShop CS5, received this error: Photoshop 12.0.4 update for Photoshop CS5 There was an error installing this update. Please quit and try again later. Error Code: U44M1I210???

  • Measurement Studio memory problem

    I'm using the IIRFiltering function of the CWDSP package. I have to process large ammounts of data at once (over 265 MB). The input data is in integer format, this is good enough and is in fact a demand to keep the memory usage low. The function seem