Starting out with a Cintiq in Adobe Flash - A series of frustratingly unfindable simple questions!

I'm completely new to the Flash IDE, but I have used my Cintiq 13HD with Photoshop in the past. Despite the tablet working well and drawing correctly, so far Flash feels very weird and almost unusable. I've spent hours looking online for answers to these simple questions, and I've found nothing. Please help answer any if you can!
1. Eraser brush size: I have the wacom pen set to brush, and the eraser set to eraser (fairly standard). I can adjust the pen's brush size in the toolbar, but the eraser is stuck at the smallest size! I have set the eraser tool to the max brush size, and when the pen is set to the eraser tool directly it is larger. How do I set the other side of the wacom pen to a larger brush size? And aren't there any keyboard shortcuts to increase/decrease brush size in Flash? (like [ and ] in Photoshop)
2. Brush zoom: The brush size changes when you zoom. People online say the brush size is constant, but this is just wrong. When you zoom to 200%, the brush should be twice as big as it is in 100% zoom. Is there any way to make Flash have this (normal) behavior?
3. Timeline wrapping: Can you make the "step forward one frame" and "step backward one frame" keys (comma and period) wrap the entire timeline, so stepping forward on the last frame goes to frame 1, and stepping backward on frame 1 goes to the last frame? This is crucial for me to animate loops well, and I can't find anything about it online or in preferences. Shift+comma and shift+period are okay workarounds, but they are not ideal, because I have comma and period mapped to buttons on the Cintiq. I need them to wrap!
4. Numerical Brush Thickness: Is there any way to specify a brush thickness with a number? Do I have to use the pen tool to get stroke thickness properties? At the very least, can I use a keyboard shortcut to specify size, instead of clicking on toolbars?
Honestly, I'm at the end of my rope here. I'm almost ready to drop Flash entirely and do this in Illustrator, then animate in Flash when I have everything drawn properly. Why is everything so different, and why can't I find any of these simple questions online?

The long and short of it is no you can't do most of the things you're looking to do as far as the brush is concerned. Flash has ALWAYS increased the brush size as you zoom in and decreased it when it's zoomed out. Why? No clue but it's always been so.  You CAN increase the brush size by number though using the Properties box. The eraser is weird in Flash. so much so that I use the Lasso tool and select what I don't want and delete it. Since you're used to Illustrator you might not realize that selecting areas of a brush stroke will NOT select the entire stroke like in Illustrator. you can select only parts. You can also sort of allow for what you're calling timeline wrapping by installing a Command and mapping it to a custom key command. Just make sure there's a key frame at the end of the cycle.
Dropbox - Flash_Select_Next_and_Previous_Keyframes.zip
Also this might do sort of what you want too:
http://www.toonmonkey.com/frameJumper.fla
Finally, Flash is no different than it has ever been and you have to take into consideration that while Illustrator was developed by Adobe, Flash was developed by Macromedia and was then acquired by Adobe years later so you' can't really expect it to work the same. Personally I HATE Illustrator's interface and hate the way it works so I'd hate it if Flash worked like Illustrator!
Anyway, I hope this helps.

Similar Messages

  • My address book and iPhone pics have become low resolution.  Is there a way I can prevent this from happening when I start out with a higher resolution picture?

    I guess I squeezed my entire issue into the subject line.  lol   When I sync my iphone to my laptop I notice that all my address book pics and iphone pics have become lower resolution, even though I started out with the resolution that I really needed to produce decenty address book printouts.  I doubt I can correct the losses of resolution that have occurred but can anyone help me figure out how to prevent future losses?  Thank you!

    Plugins usually are installed externally to Firefox. However, you can disable them in Firefox so that Firefox does not use them.
    SearchReset is supposed to automate the task of resetting certain preferences, but you still can edit them manually if necessary.
    '''''Address Bar Search'''''
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''keyword''' and pause while the list is filtered
    (3) Right-click '''keyword.URL''' and choose Reset. This should restore Google as the default for address bar search.
    Does that work?
    '''''Search Box'''''
    Usually it works to choose your preferred search engine from the drop-down. To remove an unwanted search engine plugin, usually the Manage Search Engines... choice at the bottom of the drop-down takes care of it.
    Do either of those work?
    There might be another way to hijack that search box; I think some of the other frequent responders probably are more familiar with it than I am.

  • Just Starting out with java packages

    Hello,
    I'm a beginner and I'm starting out with java packages.
    I wrote two simple .java files, one test program and one containing a simple class.
    Both files are compiling without errors but When I run the program I get an error NoClassDeffoundError.
    I use the import <package> statement And I think I'm using the CLASSPATH variable correctly.
    SET CLASSPATH=d:\nopol
    path for the .java containing the test class is:
    d:\nopol\utilities \myapp.
    In the test file I use "import utilities.myapp.*.
    I would be very happy if anyone could help me
    Thanks beforehand
    Nopol.

    The test file should be in d:\nopol, if it's not a part of your package utilities.myapp. Everything should be compiled from d:\nopol, the test class with "javac ClassName.java" and the class in the package with "javac utilities/myapp/ClassName.java".
    Your classpath seems fine for now, though. But yes, do add the period there, otherwise you could run into problems later.

  • Starting out with ejb help

    hi,
    i'm starting out with ejb, know java and jsp servlets, and seem to be having trouble getting the first example running, i'm using Jboss_3.2.1.
    1. Where is the javax.ejb package? i have sdk 1.4.1, but don't see the package in there.
    2. Using JBoss where do i put the source and complied files? the book just shows the structure as:
    -classes
    -com
    -brainysoftware
    -ejb
    -meta-inf
    but where do i put this, there is no instructions as to where the classes and meta-inf go? i understand that the .jar goes in the deploy directory but what if i want to store the source and complied in jboss also?
    3. when running a servlet, client, from tomcat do i have to run both tomcat and jboss together? The book just mentioned that i needed to copy the ebj.jar, jboss-client.jar, jnp-client.jar and the Adder.jar (example build) into my lib for tomcat, but why do i need the Adder.jar (the example built), isn't that suppose to run from jboss not from tomcat?
    Thank you.

    1.) You find the package javax.ejb in the following file: $JBOSS_HOME/client/jboss-j2ee.jar
    2.) JBoss doesn't need your source-files. To install your EJBs you must copy a Enterprise Archive (*.ear), which including the jar-file with your EJB, in the directory $JBOSS_HOME/server/default/deploy. This is the directory for hot-deployment of the default-configuration. You could also copy the jar-file with your EJBs into this directory.
    3.) JBoss has always a web-server, either tomcat or jetty. Both are servlet-engines. You doesn't need another tomcat instance. In your web-application you need all classes of a EJB, that you call, for example the remote-home- and the remote-interface of a session bean and the classes of value-objects. This is the reason, because you need the adder.jar. The better way is, you include all necessary files in your war-file.

  • Why does IPhoto  create duplicates of photos and graphics that is on my Mac when I import Photostream.  I started out with 4000 photos now I have almost 28,000.  I am using new Ipad and the Mac is  running Mountain Lion

    Why does IPhoto create dupicates of photos and graphic that is on My Mac when I import the photos from Photo stream to the library?  I started out with about 4,000 photos when I transferred everything from my PC.  I use a new IPad and IPhone to take the photos.  The Mac is running Mountain Lion 10.8.2 3.1 Intel prosessor.  I am using IPhoto 11.
    Thanks in advance
    Barry

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Has anyone started out with creative cloud photography and later upgraded to the full bundle?

    Has anyone started out with creative cloud photography and later upgraded to the full bundle?

    Lenora, I'm curious about the same thing.
    I currently have the cloud's Photoshop and Lightroom program, and would like to upgrade to the full Creative Suite.
    The listed pricing doesn't distinguish between types of previous customers. I don't know if I'm considered an existing CS customer because I have other individual cloud products, or if I must have already purchased the entire suite in the past. Any insight would be grand.
    Complete — For New Customers
    US$59988/yr
    Annual plan, paid monthly
    Annual plan, prepaid
    Monthly plan
    Latest Photoshop, Illustrator, and more, plus cloud features
    ProSite portfolio website
    Typekit desktop and web fonts
    20 GB of cloud storage
    BUY NOW
    SPECIAL FOR CS CUSTOMERS
    Complete — For CS CustomersUS$35988/yr
    Annual plan, paid monthly
    Annual plan, prepaid
    Save up to 40% on first year. See terms
    Requires prior purchase of CS3 or later

  • Starting out with cRIO

    Hello,
    What's the most inexpensive way to start programming for FPGA cRIO based applications? I'm interested in learning to develop for an FPGA and cRIO but can't afford the cRIO, is there an inexpensive way to simulate for these (I think even the realtime drivers may be expensive) 
    I found this RIO eval kit, but I'm not sure if it's what I need to start learning cRIO/FPGA LabVIEW development? 
    http://sine.ni.com/nips/cds/view/p/lang/en/nid/205722
    much thanks!
    Solved!
    Go to Solution.

    Yes - I agree with GerdW that the myRIO is a great way to get started with cRIO & RT/FPGA programming. It's very easy to set up and use.
    I recently used one for a personal project - making a giant version of Tetris! (https://decibel.ni.com/content/docs/DOC-35435)
    I can also recommend the eval kit - it comes with a single board RIO an addon board that contains lots of useful things for starting out with RT/FPGA programming (an LCD display, analogue input/outputs that are linked, some push-buttons etc.). I currently have one on my desk at work as we've been doing some stuff recently with LCD displays. They also have onboard CAN (e.g. automotive) so if you're interested in doing anything with that then I don't think you can do that with the myRIO.
    If you can't get the myRIO cheaply enough (because you're not a student - but it's worth talking to NI anyway) then the eval kit is a bit more representative of what it's like to use a cRIO and you can get further with it without needing any additional hardware.
    Certified LabVIEW Architect, Certified TestStand Developer
    NI Days (and A&DF): 2010, 2011, 2013, 2014
    NI Week: 2012, 2014
    Knowledgeable in all things Giant Tetris and WebSockets

  • [GeForce 6] Do both 6800GT need same revision# & bios? Can I start out with 1?

    My plan for my signature system was to order one 6800GT after posts said 1 6800GT=2 6600GT & I'd be better off starting out with one 6800GT rather than 2 6600Gt. I'd get the 2d one maybe in a year or two.
    Now it appears there's some caveats.....do both 6800GT's have to be the same revision, bios and something called ERP.  That is, if I bought the 2d 6800GT in a year or two, will it work with the earlier one, or is there going to be some manufacturing version level problem pop up?
    If I can get the identical revision question nailed down, I think I can go ahead and order all the parts.
    Regards, Ron

    Ron,
    Do not worry about the BIOS of the Vid Card, they very rarely change. When it comes time, you just want to get another card that is same specs. Since you have an MSI NX6800GT-T2D256E, just get another MSI NX6800GT-T2D256E, that will give you the best chance at stability. You could use a 6800GT from another brand but for max stability I would try to get two matched Vid Cards.
    Take Care,
    Richard
    P.S. You will find most GeForce Vid Cards on the market stick to the reference design, so they are about identical.

  • Ff6 upgrade with tabs not opening & Adobe Flash

    I have so many issues with this FF6 I don't know why you released this garbage before it was working not enough negative testing I would presume.. When I click to open a new tab only I get new windows instead & yes I have checked my options & they are correct so don't go there.. Next you tell me my Adobe Flash is outdated & I uninstalled it & tried to install the updated version which is showing only as 10.1 but FF feels it should be 10.6 a communication gap between Adobe & FF ??????? In any event FF is blocking the install of Adobe 10.1 "so now what": msg says "I'm missing a plug in" WOW what a surprise only thing I can't get a plug in WOW what a surprise.. This FF6 stinks.... Mozilla is getting like Microsoft & IE which who knows may be better now.. And no more real people either..

    Because it probably isn't.
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS. Note that version 10,1,102,64 is the last version available to PPC Mac users*. The latest version,10.3.183.23 or later, is for Intel Macs only running Tiger or Leopard, as Adobe no longer support the PPC platform. Version 11.4.402.265 or later is for Snow Leopard onwards.
    * Unhelpfully, if you want the last version for PPC (G4 or G5) Macs, you need to go here:  http://kb2.adobe.com/cps/142/tn_14266.html  and scroll down to 'Archived Versions/Older Archives'. Flash Player 10.1.102.64 is the one you download. More information here:  http://kb2.adobe.com/cps/838/cpsid_83808.html
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications (including Safari) first before installing. You must also carry out a permission repair after installing anything from Adobe.
    (If you are running a PPC Mac with Flash Player 10.1.102.64 and are having problems with watching videos on FaceBook or other sites, try the following solution which fools the site into thinking that you are running the version 11.5.502.55:)
    Download this http://scriptogr.am/nordkril/post/adobe-flash-11.5-for-powerpc to your desktop, unzip it, and replace the current Flash Player plug-in which is in your main/Library/Internet Plug-Ins folder, (not the user Library). Save the old one just in case this one doesn't work.

  • 648f neo - starting out with 200gb ok?

    once i get my pc done, is it ok to start out w/ a 200gb drive? during winxp installation, would it identify it? what abouot bios mode?

    You can install Windows XP with the 200GB hard drive without a problem, but it would need to be partitioned under the 137 GB limit. So if you set up multiple partitions than it won't be a problem. If you want to do the full 200GB as one hard drive you will need to slipstream your copy of windows xp to include SP1. Best way to do that is do a google search for "slipstreaming windows xp sp1".
    In case you didn't know slipstreaming will allow you to merge SP1 files into the windows cd so when you install windows it will already have SP1 installed. The same process works for SP2 (if you are willing to give it a shot)

  • Starting out with Guitar Recording in Garageband

    I started playing guitar about 2 years ago, and I'm just now starting to get interested in composing my own material. Im on an extremely tight budget (I'm broke after buying my first Mac Though I'm very happy with it.) I earlier tried plugging the guitar just strait in (after checking around a bit I didn't expect a whole lot) I found a lot of noise and distortion like I figured. I tried using a cheap amp I own as a pre-amp of sorts, but this just made the problem worse. Its pretty clear that I need another way to record other than the Line-In on the pro. I've looked at USB solutions, but I can't find one that seems to be generally considered "good" for under $200. I'd really like to keep my costs for starting out under $100 if possible. At any rate, if anyone has any suggestions it would be greatly appreciated. Thanks!

    http://www.alesis.com/guitarlink
    http://www.ikmultimedia.com/stealthplug/features/

  • Starting out with FCP - import and setup question

    I believe I have some good gear to begin using FCPX. 
    iMac 3.4 Ghz Intel Core i7, 4GB RAM, AMD  Radeon 1 GB, Lion 10.7.2
    Canon EOS 60D Camera
    (Have an external drive although it is used for time machine)
    Living in Canada
    Would like to start using FCPX (dowloaded yesterday) in a relatively simple way to get used to it in small steps.
    Is there a list of attributes and hints that would provide any easy start for understanding the best way to setup the camera, preferences on FCPX, import routine including basic event management etc.  other thoughts like when should I consider an external drive versus using iMac internal drive ould be appreciated.  I have been waching a number of tutorials and reviewing the discussions groups and many of these do get a little complex quickly.  Not worried about the complexity in the future just want to start out simply and then progress over time.  (Not sure I am ready to understand all the codec complexities that get a lot of attention just yet.)
    Will keep looking at discussion groups and tutorials to advance my learning although any pointers to well thought out "newbie" information would be helpful (5000 discussions is a lot to go through).  Also do I need Compressor and Motion out of the gate?
    Thanks

    Mark Rivette wrote:
    iMac 3.4 Ghz Intel Core i7, 4GB RAM, AMD  Radeon 1 GB, Lion 10.7.2
    4 GB RAM is barely enough (despite what Apple say). FCP X is very RAM hungry.
    (Have an external drive although it is used for time machine)
    Particularly with an iMac, I recommend you put your Media, Events and Projects on an exclusive, fast external HD formatted 'Mac OS Extended' (not necessarily journaled - it doesn't matter for video).
    Living in Canada
    Shouldn't present any problems : )
    Is there a list of attributes and hints that would provide any easy start for understanding the best way to setup the camera, preferences on FCPX, import routine including basic event management etc.
    Depends on  what you want to do - particularly regarding drive space. If you're prepared to spend a little money on external HD space, then I would import all your footage as ProRes 422 - your iMac will find it far easier to edit and play back.
    The downside of ProRes is that it takes up between 5 and 7 times more drive space than your (highly compressed) camera footage.
    Also do I need Compressor and Motion out of the gate?
    No - strictly speaking you don't - but I wouldn't be without either of them.
    I don't know the 60D (I have a 5D Mk2) but I suggest the footage might be inclined towards high contrast and sharpening by default (as with the 5D 2). If the menu allows you to reduce the contrast and saturation (probably by as much as it will allow) you will have much more leeway when it comes to colour grading.
    The footage won't look so amazing when you first import it, but you can do more with it. On the 5D 2 I get about two stops more latitude with exposure this way.
    I also reduce sharpening to about half what the camera default - remember, the manufacturer wants you to be blown away by the first images you get from your camera - so they set the colour, contrast and sharpening at levels which are far too high for good grading.
    Andy

  • Starting out with JBI

    In an attempt to introduce myself to JBI, I looked for something relevant to my field (health) and found the video created by Raghunadh Teegavarapu at http://wiki.open-esb.java.net/attach/HL7BC/HL7BCInboundOriginalACKDemo.wmv
    As I tried to follow the process exactly, I found my Netbeans 6.1 install was missing a few plugins, so I added
    org-netbeans-modules-encoder-hl7-aip.nbm
    org-netbeans-modules-encoder-ui-basic.nbm
    org-netbeans-modules-wsdlextensions-hl7.nbm
    com-sun-encoder-hl7.nbm
    com-sun-encoder.nbm
    And applied the following .jar to my local Glassfish install
    hl7bc.jar
    Everything was looking like I was good at following a video, and getting it all right despite slight differences between the Netbeans build shown and my 6.1 install, until I tried to deploy. At that stage I hit the wall with the result shown below. Can anyone offer any advice as to what I am missing?
    Thanks
    Ianto
    ---Details from build.xml (run) window---
    pre-init:
    init-private:
    init-userdir:
    init-user:
    init-project:
    do-init:
    post-init:
    init-check:
    init:
    init-deploy:
    deps-jar:
    init:
    Building jar: D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_Demo\build\SEDeployment.jar
    dist_se:
    Expanding: D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_Demo\build\SEDeployment.jar into
    D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA\src\jbiServiceUnits\HL7_Original_ACK_Demo
    Moving 1 file to D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA\src\jbiServiceUnits\HL7_Original_ACK_Demo
    Moving 1 file to D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA\src\jbiServiceUnits\META-INF\HL7_Original_ACK_Demo
    deps-javaee-jar:
    jbi-build:
    Building jar: D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA\build\BCDeployment.jar
    Validating CompApp project...
    Resolving connections...
    Writing connections out to connections.xml...
    Generating Service Assembly jbi.xml...
    Merging component projects' catalogs...
    Generating Binding Component Service Units...
    creating sun-file-binding.jar
    creating sun-hl7-binding.jar
    Creating/Updating CASA...
    Filtering Java EE Endpoints...
    Deleting: D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA\build\BCDeployment.jar
    Building jar: D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA\dist\HL7_Original_ACK_DemoCA.zip
    run-jbi-deploy:
    [deploy-service-assembly]
    Deploying a service assembly...
    host=localhost
    port=4848
    file=D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA/dist/HL7_Original_ACK_DemoCA.zip
    [start-service-assembly]
    Starting a service assembly...
    host=localhost
    port=4848
    name=HL7_Original_ACK_DemoCA
    ERROR: Successful execution of Start: HL7_Original_ACK_DemoCA
    WARNING: (JBIMA0405) Start of service assembly HL7_Original_ACK_DemoCA succeeded partially; some service units failed to start.
    * Component: sun-hl7-binding
    ERROR: (HL7BC_START_1) Error starting service unit due to: null
    * Component: sun-bpel-engine
    INFO: (JBIMA0409) Lifecycle operation start succeeded for Service Unit HL7_Original_ACK_DemoCA-HL7_Original_ACK_Demo.
    * Component: sun-file-binding
    INFO: (JBIMA0409) Lifecycle operation start succeeded for Service Unit HL7_Original_ACK_DemoCA-sun-file-binding.
    Cleaning up...
    [stop-service-assembly]
    Stopping a service assembly...
    host=localhost
    port=4848
    name=HL7_Original_ACK_DemoCA
    [shutdown-service-assembly]
    Shutting down a service assembly...
    host=localhost
    port=4848
    name=HL7_Original_ACK_DemoCA
    [undeploy-service-assembly]
    Undeploying a service assembly...
    host=localhost
    port=4848
    name=HL7_Original_ACK_DemoCA
    D:\JavaDevelopment\XXExperimental\HL7_Original_ACK_DemoCA\nbproject\build-impl.xml:213: Start failure.
    BUILD FAILED (total time: 8 seconds)

    Here are details from the server.log at time of attempted deployment:
    [#|2008-06-26T07:54:49.125+1000|INFO|sun-appserver9.1|com.sun.jbi.framework|_ThreadID=30;_ThreadName=JBI-Ready-Sync;|JBIFW0012: JBI framework startup complete.|#]
    [#|2008-06-26T07:55:27.640+1000|INFO|sun-appserver9.1|com.sun.jbi.management|_ThreadID=31;_ThreadName=httpWorkerThread-4848-0;|Deploying service assembly HL7_Original_ACK_DemoCA to target server.|#]
    [#|2008-06-26T07:55:27.968+1000|WARNING|sun-appserver9.1|javax.enterprise.system.stream.err|_ThreadID=32;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;_RequestID=e8711635-8e71-471f-a65f-880d66bc1fc7;|Cannot find CatalogManager.properties|#]
    [#|2008-06-26T07:55:28.000+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=32;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-file-binding\sun-file-binding\HL7_Original_ACK_Demo\Filewrite_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:28.078+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=32;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-file-binding\sun-file-binding\HL7_Original_ACK_Demo\hl7receive_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:28.109+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.HL7BindingDeployer|_ThreadID=33;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;HL7_Original_ACK_DemoCA-sun-hl7-binding;D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding;|Deploying service unit: HL7_Original_ACK_DemoCA-sun-hl7-binding from D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding.|#]
    [#|2008-06-26T07:55:28.125+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.ServiceUnitImpl|_ThreadID=33;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|ServiceUnit deploy method called.|#]
    [#|2008-06-26T07:55:28.140+1000|WARNING|sun-appserver9.1|javax.enterprise.system.stream.err|_ThreadID=33;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;_RequestID=3c2d789c-457f-41db-a31a-d3c9ded95d92;|
    Cannot find CatalogManager.properties|#]
    [#|2008-06-26T07:55:28.156+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=33;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding\HL7_Original_ACK_Demo\Filewrite_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:28.218+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=33;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding\HL7_Original_ACK_Demo\hl7receive_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:28.250+1000|INFO|sun-appserver9.1|com.sun.jbi.management.DeploymentService|_ThreadID=31;_ThreadName=httpWorkerThread-4848-0;|JBIMA0402: Service Assembly file:/D:/Program Files/glassfish-v2ur2/domains/domain1/jbi/tmp/upload/7deaef5611ac1b8a7f57fe1/HL7_Original_ACK_DemoCA.zip has been deployed.|#]
    [#|2008-06-26T07:55:28.328+1000|INFO|sun-appserver9.1|com.sun.jbi.management|_ThreadID=31;_ThreadName=httpWorkerThread-4848-0;|Starting service assembly HL7_Original_ACK_DemoCA on target server.|#]
    [#|2008-06-26T07:55:28.406+1000|INFO|sun-appserver9.1|com.sun.jbi.engine.bpel.BPELSEDeployer|_ThreadID=34;_ThreadName=HL7_Original_ACK_DemoCA-HL7_Original_ACK_Demo;|BPELSEDeployer.starting_BPELSE_deploy_process|#]
    [#|2008-06-26T07:55:34.406+1000|INFO|sun-appserver9.1|com.sun.jbi.engine.bpel.EngineHelper|_ThreadID=34;_ThreadName=HL7_Original_ACK_DemoCA-HL7_Original_ACK_Demo;|BPJBI-4016:Loaded BPEL, WSDL and XSD documents for HL7_Original_ACK_DemoCA-HL7_Original_ACK_Demo.|#]
    [#|2008-06-26T07:55:34.484+1000|INFO|sun-appserver9.1|com.sun.jbi.engine.bpel.BPELSEDeployer|_ThreadID=34;_ThreadName=HL7_Original_ACK_DemoCA-HL7_Original_ACK_Demo;|BPJBI-5008:Activated an endpoint. Service name {http://enterprise.netbeans.org/bpel/HL7_Original_ACK_Demo/bpelprocess}PartnerLink1, endpoint name hl7receive_wsdlPortTypeRole_myRole|#]
    [#|2008-06-26T07:55:34.484+1000|INFO|sun-appserver9.1|com.sun.jbi.engine.bpel.BPELSEDeployer|_ThreadID=34;_ThreadName=HL7_Original_ACK_DemoCA-HL7_Original_ACK_Demo;|BPELSEDeployer.BPELSE_deploy_process_finished|#]
    [#|2008-06-26T07:55:34.500+1000|WARNING|sun-appserver9.1|javax.enterprise.system.stream.err|_ThreadID=35;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;_RequestID=4410f26f-6686-4535-ba7a-8660e40bc5d9;|
    Cannot find CatalogManager.properties|#]
    [#|2008-06-26T07:55:34.500+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=35;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-file-binding\sun-file-binding\HL7_Original_ACK_Demo\Filewrite_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:34.515+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=35;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-file-binding\sun-file-binding\HL7_Original_ACK_Demo\hl7receive_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:36.265+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.HL7BindingDeployer|_ThreadID=36;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;HL7_Original_ACK_DemoCA-sun-hl7-binding;D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding;|Initializing service unit: HL7_Original_ACK_DemoCA-sun-hl7-binding from D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding.|#]
    [#|2008-06-26T07:55:36.265+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.ServiceUnitImpl|_ThreadID=36;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|ServiceUnit init method called.|#]
    [#|2008-06-26T07:55:36.265+1000|WARNING|sun-appserver9.1|javax.enterprise.system.stream.err|_ThreadID=36;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;_RequestID=5ed8e1b9-af37-4cd5-ad23-140a112d3d28;|
    Cannot find CatalogManager.properties|#]
    [#|2008-06-26T07:55:36.265+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=36;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding\HL7_Original_ACK_Demo\Filewrite_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:36.265+1000|INFO|sun-appserver9.1|javax.enterprise.system.stream.out|_ThreadID=36;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|
    Retrieving document at 'D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding\HL7_Original_ACK_Demo\hl7receive_wsdl.wsdl'.|#]
    [#|2008-06-26T07:55:37.109+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.HL7BindingDeployer|_ThreadID=36;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;HL7_Original_ACK_DemoCA-sun-hl7-binding;|HL7BC_Complete_init_SU|#]
    [#|2008-06-26T07:55:37.140+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.HL7BindingDeployer|_ThreadID=37;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;HL7_Original_ACK_DemoCA-sun-hl7-binding;|Starting service unit: HL7_Original_ACK_DemoCA-sun-hl7-binding.|#]
    [#|2008-06-26T07:55:37.140+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.ServiceUnitImpl|_ThreadID=37;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|ServiceUnit start method called.|#]
    [#|2008-06-26T07:55:37.140+1000|SEVERE|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.ServiceUnitImpl|_ThreadID=37;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;hl7receive_wsdlPort;_RequestID=04f2a675-cd21-4a08-b61f-56da459eeef5;|Failed to start inbound message processor for endpoint: hl7receive_wsdlPort.|#]
    [#|2008-06-26T07:55:37.140+1000|SEVERE|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.ServiceUnitImpl|_ThreadID=37;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;{http://j2ee.netbeans.org/wsdl/hl7receive_wsdl}hl7receive_wsdlService;hl7receive_wsdlPort;_RequestID=04f2a675-cd21-4a08-b61f-56da459eeef5;|Failed to start the end point with service name {http://j2ee.netbeans.org/wsdl/hl7receive_wsdl}hl7receive_wsdlService and endpoint name hl7receive_wsdlPort: null|#]
    [#|2008-06-26T07:55:37.140+1000|SEVERE|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.HL7BindingDeployer|_ThreadID=37;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;_RequestID=04f2a675-cd21-4a08-b61f-56da459eeef5;|Error starting service unit due to: null|#]
    [#|2008-06-26T07:55:37.156+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.HL7BindingDeployer|_ThreadID=38;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;HL7_Original_ACK_DemoCA-sun-hl7-binding;|Shutting down service unit: HL7_Original_ACK_DemoCA-sun-hl7-binding.|#]
    [#|2008-06-26T07:55:37.156+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.ServiceUnitImpl|_ThreadID=38;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;|ServiceUnit shutdown method called.|#]
    [#|2008-06-26T07:55:37.156+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.ServiceUnitImpl|_ThreadID=38;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;HL7_Original_ACK_DemoCA-sun-hl7-binding;|Successfully shutdown service unit: HL7_Original_ACK_DemoCA-sun-hl7-binding.|#]
    [#|2008-06-26T07:55:37.218+1000|INFO|sun-appserver9.1|com.sun.jbi.management|_ThreadID=31;_ThreadName=httpWorkerThread-4848-0;|Stopping service assembly HL7_Original_ACK_DemoCA on target server.|#]
    [#|2008-06-26T07:55:37.265+1000|INFO|sun-appserver9.1|sun-file-binding.com.sun.jbi.filebc.ServiceUnitImpl|_ThreadID=39;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;|ServiceUnit stop method called.|#]
    [#|2008-06-26T07:55:37.265+1000|INFO|sun-appserver9.1|sun-file-binding.com.sun.jbi.filebc.ServiceUnitImpl|_ThreadID=39;_ThreadName=HL7_Original_ACK_DemoCA-sun-file-binding;HL7_Original_ACK_DemoCA-sun-file-binding;|Successfully stopped service unit: HL7_Original_ACK_DemoCA-sun-file-binding.|#]
    [#|2008-06-26T07:55:37.312+1000|INFO|sun-appserver9.1|com.sun.jbi.management|_ThreadID=31;_ThreadName=httpWorkerThread-4848-0;|Shutting down service assembly HL7_Original_ACK_DemoCA on target server.|#]
    [#|2008-06-26T07:55:37.453+1000|INFO|sun-appserver9.1|com.sun.jbi.management|_ThreadID=31;_ThreadName=httpWorkerThread-4848-0;|Undeploying service assembly HL7_Original_ACK_DemoCA from target server.|#]
    [#|2008-06-26T07:55:37.546+1000|INFO|sun-appserver9.1|sun-hl7-binding.com.sun.jbi.hl7bc.HL7BindingDeployer|_ThreadID=40;_ThreadName=HL7_Original_ACK_DemoCA-sun-hl7-binding;HL7_Original_ACK_DemoCA-sun-hl7-binding;D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding;|Undeploying service unit: HL7_Original_ACK_DemoCA-sun-hl7-binding from D:\Program Files\glassfish-v2ur2\domains\domain1\jbi\service-assemblies\HL7_Original_ACK_DemoCA\HL7_Original_ACK_DemoCA-sun-hl7-binding\sun-hl7-binding.|#]
    [#|2008-06-26T07:55:37.562+1000|INFO|sun-appserver9.1|com.sun.jbi.management.DeploymentService|_ThreadID=31;_ThreadName=httpWorkerThread-4848-0;|JBIMA0412: Service Assembly with ID : HL7_Original_ACK_DemoCA has been undeployed.|#]
    I felt suspicious about the entry
    hl7receive_wsdlService and endpoint name hl7receive_wsdlPort: null
    So I went hunting in the code, and re-visitted the video to see if I had missed something in amongst the bindings, but I'm not good with wsdl, and everything seemed to match the code shown in the example, so I haven't found a point at which to make a change.
    Thanks for the advice on the e-mail alias, I will post there too.
    Ianto

  • Error with playing sounds in adobe flash cs5.5

    It comes up with this error in my game project:
    error 1:type was not found or wasnt a compile-constant:SoundChannel
    error 2:call to possible undefined method SoundChannel
    but with a blank project it works fine heres the whole code and im using a box2d wck package if that makes a diffrence:
    var my_sound:MySong = new MySong();
    var my_channel:SoundChannel = new SoundChannel();
    PlayBTN.addEventListener(MouseEvent.CLICK, fl_ClickToPlayStopSound);
    function fl_ClickToPlayStopSound(evt:MouseEvent):void
        my_channel = my_sound.play();
        gotoAndPlay(1);
    Thanks this is tricky i cant figure it out it happens with a url event to!
    A.S.A.P

    Check with the following tutorial:
    http://www.republicofcode.com/tutorials/flash/as3sound/

  • Just starting out with calculations between fields

    I'd like to to include some text fields where numbers are entered, then a button is pressed, and the mathematical results of the fields are displayed.
    In Adobe Acrobat Pro 9 I opened Forms ... Start Form Wizard, and placed all the elements - three Numeric fields and a button. I want to add Javascript to the button to calculate the fields, but I can't see any way to add the script to the button. Can someone tell me what the steps are to add a script to the button? Should I be using something other than Form Wizard?
    These results (multiplication and division) should simply display in the Numeric field. They won't be saved anywhere. I have the Javascript already working on mobile devices and want to create a PDF version for those without smartphones.
    Thanks!

    The first thing you need to know is that Acrobat uses a completely different object model than a browser. For more information, see the Acrobat JavaScript documentation at: http://www.adobe.com/devnet/acrobat/javascript.html
    The result field can be set up with a custom Calculate script that automatically calculates the result, so the button is not necessary. Try the following as the custom Calculate script for the result field:
    (function () {
        // Get the field values, as numbers
        var v1 = +getField("spurGear").value;
        var v2 = +getField("pinionGear").value;
        // Set this field's value
        event.value = (v2 !== 0) ? v1 / v2 : "";
    If you really want to use the button, the code would be:
    // MouseUp script for button
    (function () {
        // Get the field values, as numbers
        var v1 = +getField("spurGear").value;
        var v2 = +getField("pinionGear").value;
        // Set this result field's value
        getField("result").value = (v2 !== 0) ? v1 / v2 : "";
    You can place these as document-level functions and call them, in which case the first one would be:
    function calcGearRatio() {
        // Get the field values, as numbers
        var v1 = +getField("spurGear").value;
        var v2 = +getField("pinionGear").value;
        // Set this field's value
        event.value = (v2 !== 0) ? v1 / v2 : "";
    and it would be called like this in the calculate event:
    calcGearRatio();

Maybe you are looking for

  • How to sort the messages in Browser Console by time

    In the Browser Console the messages are sometimes out of order. This can be confusing when debugging an application. Is there an easy way to sort the messages by the timestamps? See also: https://bugzilla.mozilla.org/show_bug.cgi?id=854435. It seems

  • Restoring a deleted column in Excel from a SharePoint Data Connection view

    I used the "Export to Spreadsheet" option for a SharePoint document library to create my working report.  I created a special view for this as I did not want all of the columns in my export.  I build my report on a seperate tab in Excel around this e

  • Problem in Adobe reader

    When I want to read an Arabic pdf book on my blackberry playbook by Adobe Reader the screen turn black and I can't do anything to the device just restart it,  so please help me this is just for all Arabic book not for English book I can read English

  • Error in the URL of WedDynpro application while debugging

    Hi Experts , I am still facing an error while deploying my WebDynpro application for debugging. The URL is created as : http://<host>:50000/@@@DEBUG@@@7672950/webdynpro/dispatcher/local/WDtest/WDtest?SAPtestId=2 now due to this improper URL the error

  • LabVIEW 8.5 and building executable (using fxs from Advanced Signal Processing Toolkit)

    Hello out there to NI and Gavin: For for building an executable using LabVIEW 8.5 and functions from the Advanced Signal Processing toolkit, do we still need to manually copy the special set of DLLs related to the toolkit use to the target installati