Problems Exporting Classes

I recently received a new PC, and have (I believe) successfully reinstalled both
Forte versions 2 and 3. Everything seems to work OK, with one exception.
Whenever I try to export a class from the Forte R2 workshop environment, Forte
crashes. This is a hard crash which occurs once the SAVE button from the export
window has been pressed, there are no residual artifacts to help trouble shoot
the problem. Any suggestions?
-jeff
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

how to possibly avoid it?!
Don't use Illustrator?! Sorry, but you're dealing with the dumbest program on the planet when doing SVG in AI. Which of course is ironic, considering Adobe kinda invented the format. If you want code-style control, you probably will have much better luck with any other program or even JavaScript-based online SVG generators. Possibly you can do some of that with Edge, also, but I don't use it in any way, so I can't vouch for how extensive and usable its SVG features are.
Mylenium

Similar Messages

  • EXPORT CLASSES IN FRAME 2 PROBLEM

    Hi to all, i am having a problem trying to do a simple preloader.
    i am making a game, only 2 frames, the first is preloader screen, the second is the game (all in actionscript):
    if i set EXPORT CLASSES IN FRAME 2, after the game is preloaded ( this.loaderInfo.addEventListener(Event.COMPLETE, onComplete)
    i execute gotoAndStop(2).
    all ok.
    but i see that some creatures (movieclips) DOESNT SHOW. those creature are there, all works fine, but simply are not visible!!! this happen also with some textbox......
    i trace (creature.visible)... and // give :    true
    also   trace(creature).... // give:   object[creature]       all ok here...
    also properties works fine      trace(creature.attack); // gives the right value, is all ok.....
    if i set EXPORT CLASSES IN FRAME 1... all works fine (but not the preloader, that doesnt load. simply a white screen of course, until all is loaded, then the frame 1 instantly execute gotoAndStop(2), starting the game)
    i dont understand, what happen to movieclips when i export in frame 2? (not at ALL, something is visible... something not.... ))))

    Yes, are all unchecked
    . only "export in actionscript" is checked, but others are all unchecked.
    i have tried both, checked and unchecked.
    but... if i have Exactly the same creature, added for 2 different players... the first player has all creatures ok.
    the second not.....
    the second will not show his creatures (0 shown, no matter what)
    if i change the Exportclasses in frame 1... then all goes perfect, all players have shown all correct.... i dont understand why.
    i also have prolems with some textbox that doesnt show if i set Exportclasses in frame 2.....

  • "Export classes in frame x" in AS3: how does it work?

    My steps:
    1. I have some beefy classes
    2. I want my SWF to show a preload anim while it loads these
    classes
    3. Using the "Export classes in frame: " option, I move my
    classes to frame 10
    4. I put a stop(); on the first frame and test w/ the
    bandwidth profiler visible.
    Desired + expected behavior:
    1. My preloader spins, and I have minimal K on the first
    frame and then the main hit on the chosen export frame.
    Observed behavior:
    1. all of my classes are available on the first frame (ala,
    all of my logic can be performed on the first frame, even though
    the framehead is sitting firmly on frame 1)
    2. there is still a spike in K on the output frame
    Notes:
    - am I just missing the point here? Is this how it always
    worked?
    - why is the Document Class available in the first frame? Is
    this mandatory w/ the new structure?
    Thanks for your time and help-
    cgs

    Thanks, moccamaximum, I believe this did open up a connection and now I have no errors.
    However, my problem still persists.
    Here is what it says in the output of my AS3 flash site:
    _root
    SWFBridge (AS3) connected: host
    SWFBridge (AS2) connected as client
    imgNum: 10
    thumb: images/image1.jpg
    image: images/image1.jpg
    thumb: thumbs/image2.jpg
    image: images/image2.jpg
    thumb: thumbs/image3.jpg
    image: images/image3.jpg
    thumb: thumbs/image4.jpg
    image: images/image4.jpg
    thumb: thumbs/image5.jpg
    image: images/image5.jpg
    thumb: thumbs/image6.jpg
    image: images/image6.jpg
    thumb: thumbs/image7.jpg
    image: images/image7.jpg
    thumb: thumbs/image8.jpg
    image: images/image8.jpg
    thumb: thumbs/image9.jpg
    image: images/image9.jpg
    thumb: thumbs/image10.jpg
    image: images/image10.jpg
    4
    _root
    4
    163
    _root
    163
    67
    _root
    67
    43
    _root
    43
    56
    _root
    56
    20
    _root
    20
    85
    _root
    85
    64
    _root
    64
    3
    _root
    3
    I don't understand how its able to trace that it is getting the images in the path, yet there are no images to be seen in the gallery!
    I found out that my gallery does work (with images and all) when loaded into a movieclip in a blank AS2 file instead of my AS3 site. Am I doomed since even localconnection will not help?

  • ActionScript Project - Export classes in frame 2?

    I have a holder swf that loads in a swf that has its own built in preloader. Problem is those preloaders are not seen. The loaded swf only displays after it is 100% complete. On its own, the swf with preloader works fine.
    I created the preloader by using the Frame metadata tag:
    (import classes etc.)
    [SWF(frameRate=60, width=900, height=580, backgroundColor='#2A3146')]
    [Frame(factoryClass="screens.Preloader")]
    public class MainClass extends Sprite
    Then in the Preloader class when all is loaded:
            private function onLoaded():void
             this.nextFrame();
             var mainClass:Class = Class(getDefinitionByName("MainClass"));
             if(mainClass)
                 app = new mainClass();
                 addChild(app as DisplayObject);
                app.start();
    In the holder swf it does something like this to load the swf:
                gameLoader = new Loader();
                gameLoader.load(new URLRequest(gamepath));
                gameLoader.contentLoaderInfo.addEventListener(Event.INIT, onGameLoadStart);
                gameLoader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, onError);
            private function onGameLoadStart(e:Event):void
                preloader = gameLoader.content;
                addChildAt(preloader,0);
    I thought this was the to do a "export classes in frame 2" kind of thing in an actionscript project, and it works great on its own but not when loaded inside another swf. Is there something I'm missing?
    I know I could just built a preloader in the holder swf, but the holder swf is loading in games that all have a unique style on thier own and the games' preloaders all dipict its games style.
    Thanks.

    You were right. It was the Loader not having the size. After your post I checked the to see if the server was serving with the right mimetype and with no g-zip compression. Everything was in in correct order. Then I checked from my connection at home and everything is loading as intended. Come t find out its something with our firewall. When checking from work and the swfs are on a server outside our firewall the total bytes are unknown. If they are on a server within our firewall they are fine. (Most problematic in Webkit browsers). So I guess i was going about it the right way. Thanks for your help.

  • Problems exporting since 10.1.1

    Hi I have had problems exporting videos since downloading an purchasing Final Cut a couple of weeks ago.
    I have tried with various videos of varying lengths and also tried to export in all available formats.
    Every time the export fails at about 9%
    I am using Final Cut 10.1.1 on a Macbook Air running 10.9.1
    Has anyone had any similar issues I really need a solution as I have class projects to export

    If this happens with everything all the time trash your preferences and try. If that fails remove any third party plug ins. If that fails reinstall the app. If that fails try to get Tom Wolsky to reply .  In nearly every case a failure to export seems to be due to a clip with a problem but if it's any project at any time there's something very odd going on. The order I suggested is just due to convenience. Try creating a new user and try it from a different user account just to narrow down what the cause might be.

  • Problem exporting to gif

    Sorry for my English! I have a problem exporting to .GIF all the animation is in the Movie. Ascorroded Movie .GIF to see the layers. Help me

    Go to file and export for gif but it will not sure it retain all of them on the stage as a gif animations. becoz we have more contents like movieclips, nested animations and controls.

  • I am having problems exporting my time lapses from quick time pro i need to save my files as photo jpegs but the standard video compression window will not open fully,

    i am having problems exporting my time lapses from quick time pro i need to save my files as photo jpegs but the standard video compression window will not open fully, it just keeps my mac (old 1.6Ghz 2.5 GB sdram G5 still good for most stuff i need) spinning for ever but i can see compression type H.264 selected and the other setting but i can not select any other options as it still thinking but never opens! why is this happening how do i get round it?
    my work flow is: 300 images shot on a 5d mark II medium jpegs opened in Light Room cropped to 16:9 then exported and opened in quick time i can save a .mov H264 giving me files sizes of 14 mb for a 16 second time lapse, mp4 9 mb. the only way i can get large files is saving as a self contained movie then i get 300mb files.
    i need to save my files 1920 x 1080 photo jpeg codec as i want HD quality.
    i am sure there is a simple way round this?
    thanks guys!

    It is very difficult to offer troubleshooting suggestions when the "os version" you are using is unknown as each os has their own troubleshooting solutions. 
    How large is your hard drive and how much hard drive space do you have left? 

  • Hello everybody, is anybody else having problems exporting music to their iphone 4's from their itunes 10.6.1. (7)?

    hello everybody, is anybody else having problems exporting music to their iphone 4's from their itunes 10.6.1. (7)? i sure am. somehting is way differant. i used to be able to simply drag, and drop albums, artists, and entire genres to my phone without a worry. now i drag an album to my phone, and it will only add a couple of the songs. so i drag and drop again, and maybe even a third time to get all whole album on there. oh, and the album artwork is a no-show. i dont know what i'm missing. it's sure not what i'm used to. anyways, i'm new to this support community deal. thank you in advance for any help.
    much respect,
    tommy bravo

    After further testing, I noticed that iTunes not only becomes totally unresponsive but will start using all the CPU until I kill the process. After restarting, it works again for a while and then it dies again...
    Luis

  • Resolution problems exporting to DVD

    I am brand new to FCP 5 and everything I have learned has been within the past two weeks. I have read MANY posts on resolution settings, square pixels vs. retangular pixels, iDVD problems, exporting problems, etc. However I have not found an answer to my problem, but many helped.
    I am currently trying to project video from a DVD. The projection needs to be an EXACT size. After exporting and viewing with projection in QT Fullscreen, the video is exactly what I want.
    However, when I burn a DVD using iDVD and project it from a DVD player, the projection is slightly stretched horizontally. Why is that?
    The sequence is originally from HD and the export settings are -
    -Frame Size: 640x480 (4:3)
    -Pixel Aspect Ratio: 1440x1080
    -Exported using QT Conversion NO COMPRESSION
    (There are many other combinations of frame size and pixel aspect ratio's that also work initially, but they project with the same problem.)
    I had to have missed something.
    ANY suggestions are greatly appreciated.
    Eric
    Power MAC G5   Mac OS X (10.4.7)  

    The footage did come from an HDV from Sony.
    I use QT Conversion because if I export it as an QT Movie, the video is distorted. However, when exported through Quicktime conversion/quicktime movie/no compression, the movie is exported in the correct dimensions, though the DVD play back issue still persists.
    I am running off of iDVD v 5.0.1 and could not find a place where I could choose a 16:9 option, if that is what you meant.
    The sequence does include a PSD mask which was imported as a Layered Graphic Sequence. That shouldn't have any impact on the burning issue though.

  • PDF quality problems exporting from InDesign and Photoshop

    Hi There.
    I'm having big problems exporting my InDesign files to PDFs and retaining the res. And it's not just the images (I understand about the dpi) it's the type on there too.
    I have been exporting as the preset High Quality Print - is this wrong. Are there other settings to ensure the PDF I export retains the high-res quality and clarity?
    At the moment it comes out high-res when I export it as a jpeg or eps but not PDF.
    I have also noticed the same problem when I export to a PDF from Photoshop.
    I really need to create interactive and high quality print PDFs from my InDesign files.
    Please can you advise.
    Thanks
    Karen

    I am also having problems with pdfs exported from Illustrator and Indesign recently. I didn't have these problems before, so I don't kno if something has changed in my settings that I am unaware of.
    When I use the 'japanese dots' border in Indesign, it shows on the pdf as a kind of dotted line. I'm exporting as 'High Quality Print'. I switched to Illustrator and drew a line with the pen tool, and converted it to a dotted line; it looked just how I wanted in in Illustrator, but as soon as I exported it, the same thing happened.
    I have used the 'japanese dots' border in the past, exporting as 'High Quality Print', and not had this problem.
    Does anyone have any suggestions?

  • Problems Exporting to Excel in Acrobat XI

    I have some problems exporting a PDF to excel in Acrobat Std or Pro XI but not in Acrobat Std or Pro X.  When exporting in X all the columns and rows are created as they should be, but in XI everything is slammed to the left in one column.  Has anyone experienced anything like this and is there maybe a setting that I am missing in the conversion process that was automatic in X but is not in XI?
    Thanks in advance for the help.

    I am having a similar problem.  I used the 30 trial acrobat XI and it exports pdf to excel perfectly.  However, after buying and installing the program, the export is all messed up with data not in correct columns...etc.
    Acrobat tech controlled my computer and experimented a bit.  He said that my pdf was created by a 3rd party application called crystal reports and that acrobat doesn't work on about 50% of these 3rd party creations.  I said, then why does the trial work so well.  He said there is nothing different between the trial version and the actual purchased version.  This cannot be true or something else is up.  I told him I wanted to uninstall my purchased program and reinstall the trial version just to prove it to him.  He said it would not allow me to reinstall the Trial.
    After my phone call was over, I did it anyways.  It did let me reinstall the trial version.  I took 7 pdf sent to me from work from each server (wanted to make sure one of my servers was not sending different types of pdfs).  Each pdf did not convert successfully when I used my purchased version.  Then I uninstalled and reinstalled the trial version.  The trial version successfully exporting my pdf to excell (all 7 of them).  Something weird is going on.
    Any insight would be appreciated.

  • Problem Exporting / Importing print forms with program RSTXSCRP

    Hi!
    there is problem Exporting / Importing print forms with program RSTXSCRP.
    when I transfer print form from one SAP system to other, logo image and some text is missing... what could be the reason?
    Maybe there is other way to transfer print forms between SAP systems without using program RSTXSCRP?
    Will reward,
    Mindaugas

    Hi,
    when you transfer print forms from one sap system to another, logos are not transfered automatically. these are actually .bmp files which need to be existing in every client. then only when you run your print program logo can be seen in your print output. hence logos need to be created explicitly in every client where you want to run your print program.
    thanks,
    sksingh

  • Problem exporting using Compressor in FCP?

    I had a problem exporting using Compressor in FCP and then I found an interesting article from Apple:
    http://support.apple.com/kb/TS1099
    but it doesn't really explain the solution. What steps do I need to take exactly in Compressor to make it work?

    James M. has it right. Convert the MP3 and the WAV files to AIFF, 48khz, 16 bit and use those in your Sequence. You might even have to convert the existing AIFF file(s) if they aren't 48khz, 16 bit.
    Once you've edited the new files into your Sequence, do an Audio Mixdown, then export.
    -DH

  • Problem exporting uncompress AVI

    Problem exporting uncompress AVI. The output file will have in-between frames that appear like this:
    Help!

    Thanks for response! It's not the player's problem (it's mpc btw), I import it into Premiere for post editing and it's disaster to see the failed rendering.
    Mmm need time/Everest to find out the system info. Generally render setting is just straightforward AVI lossless/best quality with no codec assigned.

  • Some lib include Export Class,i use dependency tool to view this lib,how to know function's define

    sample:?Polaris_Measure@CCBjxguance@@QAA_NPBG0@Z 
    i know CCBjxguance is export class,Polaris_Measure is class's function,@@QAA_NPBG0@Z  is params and return value,but @@QAA_NPBG0@Z mean ? which data type ?

    So I take it that you have a .dll file but you do not have headers for it? Then finding out the params and return type won't help you much anyway.
    That's a member function, to be able to use it you need an instance of that class. And to obtain an instance of that class you need to know the full definition of that class, including its member variables. Member variables aren't exported so you have no
    way of knowing those, short of reverse engineering the .dll code.
    Anyway, the full declaration of that function is:
    public: bool __cdecl CCBjxguance::Polaris_Measure(unsigned short const *,unsigned short const *)
    This can be obtained by using the undname utility from a VS command prompt:
    undname "?Polaris_Measure@CCBjxguance@@QAA_NPBG0@Z"

Maybe you are looking for

  • A rebuild removed projects from photos and put empty projects in the trash.

    I'm running Aperature 3.2.4 in OS 10.6.8 (Snow Leopard) on a MacBook Pro 1,1 I have a large library of 37,000 images on an external hard drive. I have experienced a number of problems which culminated in a corrupted drive and library which I have tak

  • My phone wont leave flight mode

    For the past two months i've not been able to disable the flight mode of my phone (lumia 520). I'd not been able to put to on my mobile network no calls no texts etc.

  • Multi-Tab Canvas Navigational Controls

    I want to control navigation out of a block displayed on a "tab" canvas to other "tabs" in a form containing multiple tab canvases. Are ther any "events triggers" associated with the "tab" level similar to the "WHEN_BUTTON_PRESSED" trigger such as "W

  • Aperture 3, Snow Leopard, iMac ATI Radeon X1600 and graphics issues

    I have been searching the web to see if 10.6.4 has finally solved the graphics issues with the white iMac 2.16 intel with the ATI Radeon X1600 graphics processors and seen some mixed reviews. What is the consensus here, has 10.6.4 finally solved the

  • Lost local network computers in finder and unable to change workgroup

    On my G5, iMac works fine, both OS X10.5.5. After a update from Mac, I think it was Safari, iTunes, and a Security Update, I rebooted the computer and now can no longer view local windows network computers. I checked WINS in Network settings and my N