Re: OT: Distributed File Encryption
> Ideally what I'm after is a utility where you literally point it to a > file, > enter an encryption key and it will encrypt the file, with decryption > being > exactly the same procedure. Am I asking too much? You can do this pretty easily with vList Xtra, which is x-platform and offers AES encryption. You need a writeable drive to decrypt the files. -- encrypt key = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16] -- You would actually want to get the 16 item key from user source = new(xtra "vList","C:\sourcefiles\topsecret.doc") binaryDatastring = source.readBinary() encrypted = new(xtra "vList","C:\encfiles\topsecret.lst") encrypted.write(binaryDatastring,key) -- decrypt key = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16] -- You would actually want to get the 16 item key from user encrypted = new(xtra "vList","D:\encfiles\topsecret.lst") binaryDatastring = encrypted.read(key) decrypted = new(xtra "vList","C:\Desktop\topsecret.doc") decrypted.writeBinary(binaryDataString) http://www.updatestage.com/xtras/vlist.html --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: cross platform xtras in external folder
> I > know that many xtra developers have figured out the method of splitting but > I'm not sure how to restore. If you have access to a Mac, you can use this utility that I made. It requires the demo version of BinaryIO Xtra. It splits and joins. http://www.updatestage.com/xtras/xtradownloads.html#splitxtra --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: search function in Director
> I am trying to construct a search function for a CD-Rom project in > Director > using Lingo. I have split the projetc into a number of movies, and I > want to > have a single external cast of text members for all these movies. I have > done this so that the texts can easily be updated in other languages at > some > future point, and also to make the search function easier (or so I > thought). > I am pretty clear about the logistics of what I need to do, but I cannot > sort out the code details (I am a designer not a programmer). There is a behavior in the TextCruncher Xtra demo movie that does what you want. You might be able to get some ideas from that. http://www.updatestage.com/xtras/xtradownloads.html --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: File storage
> As an aside, I've _never_ ever created binary files. So one thing stumps > me > off - how in heavens name will I know at which position does one file > end > and another begin? Is there a commonly used end-of-chunk character? I > need > to be certain that the same character will not be used in any of the > other > files too, else that info will go kaput. Pointers, pointers...anyone? You could create a simple file spec. For instance, first 4 bytes of the storage file contain the number of files contained. Call it fileCount. Then the next fileCount * 4 bytes stretch contains the length of each file in 4 byte chunks. Then the data starts. There is also some sample code that shows how to store binary files inside a vList container here. It uses BinIO to read the files, but now vList has its own read and writeBinary functions built in. It's here in the vList section. http://www.updatestage.com/xtras/xtradownloads.html "binary file to vlist movie" --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Installing applications on OSX using Director MX
> I am trying to launch an installation application for QuickTime when the > user > clicks on a button, basically everytime the user clicks on the button, > the projector > quits... and nothing happens... it only happens in OSX... Maybe the installer is doing it. Some of them have a warning about not having other apps open and kill them if you don't do it. This prob'ly won't help, but make sure "animate in background" is on for the projector. --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: FileXtra4 Mac OpenDocument
> I'm using the fileXtra to open PDF docs off the CD. It works like a > charm on the PC, but nothing doing on the Mac. Do the files have a Mac file type and creator? They should have PDF looking icons if they do, not plain document ones. The file type and creator are used by the system to find the parent app. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Save or upload to the Internet
> I'm wandering if is possible somehow to save a cast to the Internet > with a projector or upload it? > In general I would like to know if there is a way to make a projector > update something on the Internet and not only download things from it. You can do it with ShockFiler Xtra via FTP. It exports to files from cast members and also transfers external files. http://www.updatestage.com/xtras/shockfiler.html [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: 3D newbie questions
> I've tried doing this using masterapp's mappFeedGenericTimeSlice, but it > doesn't really seem to help. Is this because our app is already so > overburdened that something like this wouldn't help because idle isn't > called often enough to make a difference? idle/sleep is more effective. mappFeedGenericTimeSlice will feed one timeslice of x number of milliseconds to some app selected by the system, but then Director continues doing whatever it does that consumes cpu. mappFeedGenericTimeSlice is there for when you are issuing a stream of fake user input commands using MasterApp, where you have to allow the other app a chance to respond to them. --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Classic Mac and xtras
> I've been trying to build a classic projector from MX with the Budapi > xtra > embedded; I've got the xtra in the classic mac xtras folder, but no > matter > what, I keep getting a 'problem writing Budapi Xtra' alert Make sure it's named the same as the OSX version. http://www.updatestage.com/xtras/doc/general/classicxtras.html --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: baOpenURL and hyperlinkClicked >
> Thanks, but yes I have--and in any case, this wouldn't explain why the > same > function works fine in the same projector and the with the same Xtras > when > it is used in a button scripts rather than in a hyperlinkClicked > handler. Temporarily stick the projector in the same folder as Director authoring so it can use those xtras. That will at least narrow down whether it is caused by one missing xtra or another. Also occasionally the error box lists the wrong line of code or handler that's causing the error. --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Weird error code
> Ok, I'm actually getting the error on Win, so I'll have to check the > versions. > > A question on OSX: with the 128bit/64bit non-author xtras, which do you > use? > I've had both active, I get a 'duplicate xtra' error on startup, but if > I > tried to use either one without the other present I'd get a mess of > those > errors... It sounds like something is wrong with the installation. There are different serial numbers for 64 (basic) and 128 (full) so you should use the one you purchased that goes with your serial number, but never both at once. You should get no errors with only one loaded, provided the correct version of the corresponding authoring xtra is loaded as well. I would: - quit director - remove everything with "vlist" in it from the xtras folder - restart Director and do showxlib in the message window to make sure it's gone - put vlist author and one of the vlist runtimes back in - restart director If that doesn't fix it, and it only happens with one movie, another possibility is a corrupt asset cast member. --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Weird error code
> Turns out I've got something newer than on the website (which has 1.6.1) Sorry about that. There was a mistake on the product page, which still said 1.6.1. The version on the downloads page is correct - 1.6.9. Basic and Full have 2 different version #'s in each release to make autodownloading work correctly in a case where Basic is already present and you want Full to replace it. Since Basic is what's available to download, the version should show 1.6.8 for the release version that you can download. > so hopefully this will be something that will be fixed in the next > rev...there's really no way of tracking what's happening; if anything it > almost (and I mean 'ALMOST') seems like registering vlist takes a little > while to go through, so if you then create a vlist reference to a file, > if > it hasn't 'settled' it throws the error. You can't go past register until it finishes, so I don't think that's it. And the fix for the prob Irv mentions is in 1.6.9/8. As you know, there are 2 parts to vList, the authoring xtra and the runtime. You need both authoring and runtime in the authoring environment. Sometimes weird MOA errors pop up if there is a mismatch btwn the authoring and runtime versions. Current release: vList Basic: 1.6.8 vList Full: 1.6.9 vList Author: 1.6.9 Other possibilities would be having both basic and full in the same xtras folder or the osx version on classic or vice versa. There are so many files with the same names that it's not hard for this to happen. Due to the way shockwave and projector-making works, the classic and osx files have to have the same name. There are dev releases beyond 1.6.9. If you are using one of them, please contact me offlist. --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
fileIO writeString()
> Unless the Lingo documentation explicitly says differently, all Lingo > calls are "synchronous" - which means that your program waits there > until the operation complete. This sometimes leads people to make the same assumption about 3rd party xtras. But if an xtra is making calls in to the system API, the next line of Lingo can execute even if the previous xtra call is not done. Lingo has no way of knowing if the call into the system has completed unless the xtra decides to stall, waiting for the operation to complete. There are times, such as when launching apps or moving windows around where you would want to allow Director to continue, regardless of whether the call had finished its work. --- Gretchen Macdowall www.updatestage.com [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Vlist question
>Just wondering - vList says it supports saving of an instance (ie 'obj = >new(script "parent")) but it doesn1t' support saving a script to a vlist - >so how exactly does an instance object get saved with vlist? Can it be >instantiated again from a vlist? You can save a script via member("somescript").media. When you save an instance, as Christoffer guessed, you save a reference to the parent script and the values of instance property variables. The parent script has to exist when you retrieve the instances. But try this: Original movie -- parent script "parent" property myProp on new me,int myProp = int return me end on whatsYourProp me return myProp end --- Store the instances in one vList file and the parent script in another: a = new(script "parent",8) b = new(script "parent",10) scr = member("parent").media scrname = "parent" inst = new(xtra "vlist","saveObjects.lst") inst.write(list(a,b)) inst = new(xtra "vlist","saveParentScript.lst") inst.write(list(scr,scrname)) --- Quit Director, restart, and open a brand new movie. Now read in the vlist files, recreate the parent script first, and then read your instances back in, with their saved property states: inst = new(xtra "vlist","saveParentScript.lst") var = inst.read() scr = var[1] scrname = var[2] -- recreate parent script par = new(#script) par.media = scr par.name = scrname inst = new(xtra "vlist","saveObjects.lst") var = inst.read() -- retrieve the saved instances a = var[1] b = var[2] put a.whatsYourProp() -- 8 put b.whatsYourProp() -- 10 Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Single instance of a projector with buddyAPI?
>Is there any function in Buddy API or elsewhere that ensures that only a >single instance can be launched? Perhaps something more reliable than >just the setting in the projector.ini file. Autorun Utility has this function. You can also do it with MasterApp by looking for a task with the same name in the task list. In either case it doesn't matter how the other task(s) were launched. http://www.updatestage.com/xtras/autorun.html http://www.updatestage.com/xtras/masterapp.html Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Getting externalEvent to work
This article has some foundation, workarounds and the VB: http://www.updatestage.com/previous/991201.html#item1 Shockwave to Java applet communication / browser scripting The Java part is just a small part of the article. Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
[ANN] ShockFiler FTP Xtra 1.2.2 released
ShockFiler Xtra release 1.2.2 is now available. Version 1.2.2 contains the following new features: - The ability to use the DSWMEDIA folder in Shockwave to send or get a file via FTP and to save media from the Shockwave movie to the local drive. Use of the DSWMEDIA folder does not require prompting the user with a save dialog. - The ability, when saving or sending a local file, to use relative paths and create folders along the path that don't exist ShockFiler Xtra is a cross-platform Xtra that saves media changed by the user at runtime. ShockFiler Xtra exports text, image, sound members and vList Xtra members to external files saved on an FTP server or to the user's local drive. ShockFiler can also send and receive external files via FTP, get file listings from the server, and create directories on the server.ShockFiler is Shockwave-safe and autodownloadable, and also works in authoring and projectors. Links to the demo version and doc are here: http://www.updatestage.com/xtras/shockfiler.html A ShockFiler Xtra license is $199.00 and includes all 3 platforms (Win, Mac Classic and Mac OSX) The version 1.2.2 upgrade is free for registered users. Gretchen Macdowall updateStage, inc. [EMAIL PROTECTED] [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
[ANN] BinaryIO Xtra ported to OSX
There is a new version of BinaryIO Xtra available for OSX. BinaryIO is a cross-platform xtra that reads and writes binary files. Read more about BinaryIO http://www.updatestage.com/xtras/binaryio.html Order page http://www.updatestage.com/xtras/xtraorder.html The upgrade is $99.00, free for those who purchased on or after June 1, 2003. Please e-mail [EMAIL PROTECTED] if you qualify for a free upgrade. Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Extract media files from cast
>is it possible to extract media files from a director cast ? > >I have to rework a project other people have started. >unfortunately they ebedded everything into a single cast instead of >keeping references to external files. >So can i somehow extract the Bitmaps, text cast members etc automatically ? ShockFiler Xtra can export bitmap, text and sound members to selfstanding external files. It's primary purpose is to export to an FTP server, but the TODISK option will export members to files on the local hard drive. http://www.updatestage.com/xtras/shockfiler.html Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Re: Save as binary file
>I've dug this up from my box of goodies. Straight cut/paste from somewhere! >e. http://www.updatestage.com/previous/990401.html#item2 D7 can capture the stage AND save to JPEG Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
[ANNC] vList 1.6.9 released
updateStage and Daniel Devolder are happy to announce the release of vList Xtra v.1.6.9. vList Xtra saves Lingo lists and other data types in binary format, to a file or cast member with optional compression and strong encryption. This release includes the following new features: * Read and write to non-vList binary files. * Access to the Shockwave dswMedia folder * Access to the same folder as a Shockwave movie when it is running on a local hard drive * Access to all special system paths defined in the Microsoft and Apple API. Some restrictions apply in Shockwave. * Open and save dialog boxes and more. See the Version History section of the doc online for a detailed list of features and fixes. http://www.updatestage.com/xtras/doc/vlist/vlistusr.htm#version --- PLATFORMS --- Windows: 95,98,NT,2000,ME,XP Mac: System 8 - OSX Director: 7 - MX --- PRICING --- vList Xtra Full: $299.00 (includes encryption and compression features) vList Xtra Basic: $149.00 This upgrade is free for registered users. --- URL --- http://www.updatestage.com/xtras/vlist.html Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: search pdf files
>I am starting off on a project where the client is coverting books into pdf >and supplying to us. I need to provide extensive search capabilities. There >are approx. 7,00,000 pages. I did a bit experimenting with v12, pdf xtra, >etc but the results are not completely satisfactory. The indexing process >needs to be changed for custom searches such as proximity searches (x within >n terms of y). Also, Google type search result listing is required. I am now >wondering if I should convert the pdf text into xml/text and use them for >searching. Acrobat itself provides a multi-featured search that includes boolean and proximity search across documents. I think the index utility is included in the pro version. Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: lingo.ini -- necessary?
>In Bruce Epstein's book Lingo In A Nutshell, page 566, it talks about >including the lingo.ini file alongside the projector. This, I assume, is in >addition to the .ini file I always include. I've never >included a lingo.ini file when distributing my stuff on a CD (Windows), but >things have always worked. Is it really necessary to do this? Some versions ago, like D3? or 4, Director had a hierarchy of paths it would look for LINGO.INI in. Some of them were system paths. So if your projector didn't have a LINGO.INI file, and some other Director projector installed one at the system level, your projector could end up loading their LINGO.INI file. The fix was to have your own next to the projector because that's where Director looked first. I don't think current versions of Director do the system searching any more, but I am guessing that was Bruce's reason for recommending it. Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Audio Xtra fails in NN 7, Mac OS X--test anyone?
>My brand new Web audio recorder works in all environments but one: With the >most current Netscape Navigator 7.02 under Mac OS X 10.1.5, with the most >current Netscape Shockwave plugin 8.5.1 (dated Jan 02), Audio Xtra returns >error -8703, "Misc. sound error." The same page works fine with NN 7 under >Win XP and with IE 5 under Mas OS X. Is this a known problem? Or is it just >me? Can someone with NN in OS X try this page, please? I just tried it under NN702 after downloading the shockwave installer. I didn't get a choice of a "Netscape" installer that I could see. Netscape was just listed as one of the supported browsers. The date on the installer I downloaded is 3/21/03. It only gave an IE option for install but somehow it works. The only install of OSX I have available to test on now is 10.2. So it works on: osx 10.2 / NN702 / Shockwave 8.5.1 (dated 3/21/03) Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
[ANNC] TreeView 3.0 released
I am happy to announce the release of TreeView version 3.0. It includes the following new features: * An OSX version * More detailed user event reporting that allows a Lingo implementation of drag and drop * The ability to place callback handlers at multiple levels such as the sprite level, for easier programming See the Version History section of the doc online for a detailed list of features and fixes. http://www.updatestage.com/xtras/doc/treeview/tviewusr.htm#version The upgrade is $99.00 for registered users, free for those who purchased TreeView v.2 on or after March 1,2003. Please e-mail [EMAIL PROTECTED] if you qualify for a free upgrade. Links to the online demo, doc, download and order form are here: http://www.updatestage.com/xtras/treeview.html Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: treeview demo
>> reinstalling shockwave, but is this a regular problem? I >> was trying to check out the Treeview Xtra demo online, no >> go. > >I just did a quick test and auto-download of Xtras seems to be working on >my end. It may be that (a) their Xtra isn't available for auto-download I just put up the demo version of Tv3 with the OSX port last night. I have updated the package files and the online shockwave demo. It should be working now. There will be a release announcement on the various newsgroups soon. Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: downloadnetthing
>> When I download an image from a web server using downloadnetthing, the >> downloaded file's creation date and time is that of the download. >> >> Is there any way of getting the creation date of the original file? You can get date info, at least the mod date, by using MultiUser Xtra to make an HTTP HEAD request. I don't remember if that also returns creation date but it's worth a look. http://www.updatestage.com/previous/990601.html#item4 How to compare the modification dates of a local and web file Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Binary files
>I don't suppose anyone here knows if or when the BinaryIO Xtra is going >to be updated for Director MX? It looks like I'm going to need it, but >of course I wasn't smart enough to find this out BEFORE I developed >over half the project in MX. You must be on Mac, because it loads OK under WinMX now. I know that Glenn Picher, the developer is working on the port to OSX for BinaryIO but don't yet have an ETA. Gretchen Macdowall updateStage, inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]
Re: Methods for converting longInt from binary files?
>Does any of you know where to find methods for converting director >integers, floats, etc to the C data types as stored in binary files, >like a longInt stored as "a linear two's complement value" etc? BinaryIO Xtra does this. http://www.updatestage.com/binaryio.html Gretchen Macdowall updateStage,inc. [To remove yourself from this list, or to change to digest mode, go to http://www.penworks.com/lingo-l.cgi To post messages to the list, email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping with programming Lingo. Thanks!]