TransformGestureEvent.GESTURE_SWIPE and Android: super bug?

I'm trying to make stuff with swipe event. I thought I was doing something very wrong but then I made a simple test and found out there's a really weird bug with either swipe events or with the android simulator (simcontroller) where I'm testing my applications. Basecally, if I add listeners to TransformGestureEvent.GESTURE_SWIPE in more then one eventDispatcher, after swiping over one of then the event is only triggered for that object for the rest of the execution. That happens if I use the simcontroller. However, if I play it on my Galaxy Tablet, it works just fine.
Here's the example of this behaviour. The code is in the Actions pannel.
http://www.4shared.com/file/hqLXR2Rs/Untitled-1.html?
steps:
- run the code with the simmulator
- select gesture - >swipe from touch and gesture tab of the simcontroller
- swipe inside one object
- swipe anywhere else
- run and select the swipe mode again
- swipe inside the other object
- swipe anywhere else
Please if someone has a solution for this let me know
Marcel

I'm trying to make stuff with swipe event. I thought I was doing something very wrong but then I made a simple test and found out there's a really weird bug with either swipe events or with the android simulator (simcontroller) where I'm testing my applications. Basecally, if I add listeners to TransformGestureEvent.GESTURE_SWIPE in more then one eventDispatcher, after swiping over one of then the event is only triggered for that object for the rest of the execution. That happens if I use the simcontroller. However, if I play it on my Galaxy Tablet, it works just fine.
Here's the example of this behaviour. The code is in the Actions pannel.
http://www.4shared.com/file/hqLXR2Rs/Untitled-1.html?
steps:
- run the code with the simmulator
- select gesture - >swipe from touch and gesture tab of the simcontroller
- swipe inside one object
- swipe anywhere else
- run and select the swipe mode again
- swipe inside the other object
- swipe anywhere else
Please if someone has a solution for this let me know
Marcel

Similar Messages

  • Using TransformGestureEvent.GESTURE_SWIPE and TOUCH_TAP

    Hi,
    I try to create a slide in as3 for mobile with another Touch Events, but my experience does not allow me to finalize the script.
    This is a slide that moves from left to right and I would like to redirect on a picture of the timeline when TOUCH_TAPE or click
    Can you help me
    My script
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    var currentGalleryItem:Number = 1;
    var totalGalleryItems:Number = 4;
    stage.addEventListener (TransformGestureEvent.GESTURE_SWIPE, fl_SwipeToGoToNextPreviousFrame);
    function fl_SwipeToGoToNextPreviousFrame(event:TransformGestureEvent):void
              if(event.offsetX == 1)
                        if(currentGalleryItem > 1){
                                  currentGalleryItem--;
                                  slideRight();
              else if(event.offsetX == -1)
                        if(currentGalleryItem < totalGalleryItems){
                                  currentGalleryItem++;
                                  slideLeft();
    var slideCounter:Number = 0;
    function slideLeft(){
              gallery_items.addEventListener("enterFrame", moveGalleryLeft);
    function slideRight(){
              gallery_items.addEventListener("enterFrame", moveGalleryRight);
    function moveGalleryLeft(evt:Event){
              gallery_items.x -= 48;
              slideCounter++;
              if(slideCounter == 10){
                        gallery_items.removeEventListener("enterFrame", moveGalleryLeft);
                        slideCounter = 0;
    function moveGalleryRight(evt:Event){
              gallery_items.x += 48;
              slideCounter++;
              if(slideCounter == 10){
                        gallery_items.removeEventListener("enterFrame", moveGalleryRight);
                        slideCounter = 0;
    stop();
    Thanks you

    try this:
    Multitouch.inputMode = MultitouchInputMode.GESTURE;
    var currentGalleryItem:Number = 1;
    var totalGalleryItems:Number = 4;
    stage.addEventListener (TransformGestureEvent.GESTURE_SWIPE, fl_SwipeToGoToNextPreviousFrame);
    activateImages();
    function fl_SwipeToGoToNextPreviousFrame(event:TransformGestureEvent):void
              stage.removeEventListener (TransformGestureEvent.GESTURE_SWIPE, fl_SwipeToGoToNextPreviousFrame);  // remove listener (double swipe protection)
              desactivateImages();          
              if(event.offsetX == 1)
                        if(currentGalleryItem > 1){
                                  currentGalleryItem--;
                                  slideRight();
              else if(event.offsetX == -1)
                        if(currentGalleryItem < totalGalleryItems){
                                  currentGalleryItem++;
                                  slideLeft();
    var slideCounter:Number = 0;
    function slideLeft(){
              gallery_items.addEventListener("enterFrame", moveGalleryLeft);
    function slideRight(){
              gallery_items.addEventListener("enterFrame", moveGalleryRight);
    function moveGalleryLeft(evt:Event){
              gallery_items.x -= 48;
              slideCounter++;
              if(slideCounter == 10){
                        stage.addEventListener (TransformGestureEvent.GESTURE_SWIPE, fl_SwipeToGoToNextPreviousFrame);
                        activateImages();
                        gallery_items.removeEventListener("enterFrame", moveGalleryLeft);
                        slideCounter = 0;
    function moveGalleryRight(evt:Event){
              gallery_items.x += 48;
              slideCounter++;
              if(slideCounter == 10){
                        stage.addEventListener (TransformGestureEvent.GESTURE_SWIPE, fl_SwipeToGoToNextPreviousFrame);
                        activateImages();
                        gallery_items.removeEventListener("enterFrame", moveGalleryRight);
                        slideCounter = 0;
    function activateImages():void{
           gallery_items.image_1.addEventListener(MouseEvent.CLICK, gotoImage1)
           gallery_items.image_2.addEventListener(MouseEvent.CLICK, gotoImage2)
           gallery_items.image_3.addEventListener(MouseEvent.CLICK, gotoImage3)
           gallery_items.image_4.addEventListener(MouseEvent.CLICK, gotoImage4)
    function desactivateImages():void{
           gallery_items.image_1.removeEventListener(MouseEvent.CLICK, gotoImage1)
           gallery_items.image_2.removeEventListener(MouseEvent.CLICK, gotoImage2)
           gallery_items.image_3.removeEventListener(MouseEvent.CLICK, gotoImage3)
           gallery_items.image_4.removeEventListener(MouseEvent.CLICK, gotoImage4)
    stop();

  • [HTC Desire, android 2.2., FP10.1.95.2] TransformGestureEvent.GESTURE_SWIPE not working

    Hi,
    (I have asked this question here: http://forums.adobe.com/thread/737650?tstart=0 as well).
    I am reviewing new features of the player and I've made few examples from documentation, latter is about TransformGestureEvent.GESTURE_SWIPE, but I can't get it to work on my HTC desire. Question is does those features are not working in the browser, I havn't tried it yet in the AIR?
    http://greladesign.com/battlefield/fp10.1_transformgestureevent_swipe/
    above example doesn't work:(
    package
         import flash.display.Sprite;
         import flash.events.Event;
         import flash.events.TransformGestureEvent;
         import flash.text.TextField;
         import flash.ui.Multitouch;
         import flash.ui.MultitouchInputMode;
          * @author Lukasz 'Severiaan' Grela
         public class Main extends Sprite
              protected var mySprite:Sprite;
              protected var myTextField:TextField;
              public function Main():void
                   if (stage) init();
                   else addEventListener(Event.ADDED_TO_STAGE, init);
              private function init(e:Event = null):void
                   removeEventListener(Event.ADDED_TO_STAGE, init);
                   // entry point
                   Multitouch.inputMode = MultitouchInputMode.GESTURE;
                   mySprite = new Sprite();
                   mySprite.addEventListener(TransformGestureEvent.GESTURE_SWIPE , onSwipe);
                   mySprite.graphics.beginFill(0x336699);
                   mySprite.graphics.drawRect(0, 0, 300, 200);
                   myTextField = new TextField();
                   myTextField.y = 200;
                   myTextField.border = true;
                   addChild(myTextField);
                   addChild(mySprite);
              protected function onSwipe(evt:TransformGestureEvent):void
                   if (evt.offsetX == 1 )
                        myTextField.text = "right";
                   if (evt.offsetY == -1)
                        myTextField.text = "up";
                   myTextField.text = evt.phase;
    the same issue is with rotate gesture
    http://greladesign.com/battlefield/fp10.1_gesture_phase_01/
    best regards

    Hi,
    Multitouch.supportsGestureEvents returns false but documentation doesn't mention about FP limitation for browser,
    there is only this:
    Note: The Multitouch feature is not supported for SWF files embedded in HTML running on Mac OS.
    My htc is not a mac so I expect to have it working

  • Hebrew ebooks (.epub) for iPhones, iPads and Android

    Hello,
    I want to convert a book I wrote to .epub format in order to display it in iPhones, iPads and Android using reading apps.
    I already tried converting the file using Scrivener (Which worked on iPhones but not on iPads and androids) and with Calibre which has a bug with Hebrew letters.
    A friend told me InDesign might be a good choice so I wanted to ask you:
    [1] Is it possible to convert to .epub and display Hebrew letters in RTL direction and right text-alignment?
    [2] If so, Which of the two programs should I purchase (199$ / 299$)?
    [3] Does the convertion process is simple enough?
    [4] Is it possible to convert to .mobi as well?
    Thanks,
    Oren

    There are some difficult issues in what you're trying to do. One is that in order to get RTL support with InDesign, you need to be using InDesign ME. See a recent thread where I suggested the poster contact the company that produces the ME version for Adobe:
    http://forums.adobe.com/message/4172125
    Second, you'll need to make sure the Hebrew font is licensed for embedding, and you'll need to learn about creating EPUBs in InDesign. I'd suggest starting with eBooks by Liz Castro.
    Here's a link to her website:
    http://www.elizabethcastro.com/epub/

  • IOS and Android Native Scroll in Adobe AIR

    I think it would be a great idea to implement the smooth scroll present in native iOS and Android applications for use in Adobe AIR projects.
    Currently, the only way to obtain smooth scrolling lists with images is using StageWebView to show the image list in HTML format, and then awkwardly implement some JavaScript / AS3 communication functionality so the list in the StageWebView is interactive and can communicate with the main program. This is excessively complicated and very error prone (I've found some inexplicable JavaScript errors that only happen in the iPad, not in Android, and not in the PC!).
    It would be way better to be able to skip all the StageWebView process altogether and being able to use a simple AS3 API to put any sprite/movieclip into a scrollable canvas which can be moved using the iOS native scroll.
    Using Flash animation to simulate the scroll in a list with images is too slow in the iPad and gives a bad user experience. iPad users expect the native iPad scroll, not some poor jerky simulation. A native scroll is the only way to go.
    And even though I talk about the iPad, this should be applicable to the native Android scroll, too.
    Scrolling is a VERY BASIC action in a tablet, so this should be implemented as soon as possible.
    Actually, I'm amazed we're already at AIR 3.0 beta, and still after all this time nobody thought of this. All sorts of fancy stuff is being added to AIR (hardware accelerated video, webcam and microphone access, etc...) but still something as basic and important as a smooth scroll, which every tablet user expects, is still not possible in Adobe AIR. We either have to implement some slow Flash animated scroll, or use the extremely complicated StageWebView with JavaScript/AS3 communication approach (I'm using a third party library called StageWebViewBridge for the JS/AS3 interoperations, which is great, but still, it's a far from ideal solution, since it's pretty fiddly and the JavaScript code doesn't always work properly in iOS).

    Hi again jackson@mja.
    I've given your scroll component a try just for some static texts, and I've found quite a few important bugs:
    1. If the referenced sprite/movieclip is shorter than the scrolling area, it starts bouncing infinitely in a quite funny way,
        which renders the component unusable. Sometimes it even happens when the content is not shorter.
    2. If your component is used inside another sprite/movieclip which is added dynamically from code ("addChild(mySprite);"),
        it doesn't work and stops with an error, because the EventListener for mouseDownHandler is being added to this.stage
        in the constructor, but a dynamic movieclip doesn't have access to the stage while in the constructor step (unless it is
        already in the stage added in the Flash IDE, such as in your FLA example). To fix this, I've added the following code
        to the ScrollArea() constructor:
    this.addEventListener(Event.ADDED_TO_STAGE, init);
    this.addEventListener(Event.REMOVED_FROM_STAGE, close);
        And then I've added the following listener functions:
    private function init(event:Event):void {
    this.removeEventListener(Event.ADDED_TO_STAGE, init);
    this.stage.addEventListener(MouseEvent.MOUSE_DOWN, this.mouseDownHandler);
    private function close(event:Event):void {
    this.stage.removeEventListener(MouseEvent.MOUSE_DOWN, this.mouseDownHandler);
    3. Also, the scrollbar is only correctly rendered if the scroll area is located at the up and left corner of the stage. To put text somewhere else, the component must be put inside a movieclip.
    4. This is not really important, but I've found the following variables are never user and so I've removed these lines:
    var xy:Point = this.localToGlobal(new Point(this.x, this.y));
    var wh:Point = this.localToGlobal(new Point(this.width, this.height));
    var sign:int = sign(obj[i]);
    I hope this can help you improve your classes.
    Best regards,
    OMA2k

  • Cannot sync FireFox bookmarks between Mac and Android

    Hi!
    I do not succeed in syncing FireFox 29.0 bookmarks between my Mac (10.9.2) and the latest FF for Android on my Android phone (4.2.2)
    What I did:
    • Made an account on the FF-site, activated account both on Mac and Android.
    • In FF prefs, both on Mac and Android, selected bookmarks for syncing.
    • Synced FF actively on Mac. Blue wheel takes some time and then seems to be ready.
    • Synced FF actively on Android. Both from the FF-account as within FF. States a 'most recent sync' as being done. Seems to be OK too.
    • However, on Android, FF, under the tab 'bookmarks' nothing pops up. What do I do wrong?
    • Also started up FF in save mode. No difference.
    • Deleted my account en signed up again. No difference.
    After trying everything, it looks like signing in is the problem... the sync wheel it turning forever...
    Thanx!

    Sync wheel turning forever there is a bug for this: [https://bugzilla.mozilla.org/show_bug.cgi?id=1006360] and we could use the steps to reproduce this. Can you please provide an example sync log from the continual sync.
    Please go to <b>about:sync-log</b> in your desktop connected to the android device or on the mobile device as well.
    places.sqlite file may have a uri corrupted in it.
    ''(updated about: command for sync logs -m)''

  • Digital Publishing for iPhone and Android tablets

    I am an Adobe CC member and could successfully publish an Apple iPad App in the App Store. Now I would like to publish also for iPhone and Android tablets. I think this is not possible alone with the Adobe CC. Do I need for that the Professional Edition?
    Ueli Mattenberger, VMA Media AG (Switzerland)

    Hi Bob,
    ... so there is nothing on the horrizon, nothing in the forseeable future concerning a single edition iPhone or Android app?
    best,
    Yngvi
    ps. when Adobe fixed their “go to“ “nav to“ bug, we got in to the App Store. Yea!
    If it isn´t inappropriate, here is a link to the app. It´s called the Reykjavik Shopping Gude.
    Some thoughts? We value your oppinion.
    https://itunes.apple.com/us/app/reykjavik-shopping-guide/id675129123?mt=8

  • What is difference between Firefox OS and Android or iOS?

    What is difference between Firefox OS and Android or iOS?

    kingofhawks, Firefox os is open source, offers the ability of do not track and has many great customization options. It is currently however targeted at 3rd world countries and/ or underdeveloped countries so it isn't recommended to use this if you're use to using Android and iOS at this moment. If you have any further questions, please do not hesitate to ask.
    Thanks

  • What format do I use to post on youtube so that IPhone and Androids can play it?

    adobe premiere pro cs6: What format do I use to post on youtube so that IPhone and Androids can play it?
    how do I fix it so it will play
    I tryed
    h.264 youtube hd 720,
    h.264 andriod phone
    here is the youtube video play's fine on pc but will not play on Andriod or Iphone at all
    Jillian Jensen My Dedication Video - YouTube
    if someone can tell me what setting I need to do or what I need to do so it will play
    I have tryed to 10 diffrent ones and none seam to work

    It could very well be due to copyrighted content.
    “Videos are not available on this platform” error message - YouTube Help

  • I just put a solid state hard drive in my mac book pro and used super duper to copy the hard drive and move the data over to thew new ssd, but most of my music isn't in iTunes when I turned it on? How do I get my music to show up in my new drive?

    I just put a solid state hard drive in my mac book pro and used super duper to copy the hard drive and move the data over to thew new ssd, but most of my music isn't in iTunes when I turned it on? How do I get my music to show up in my new drive?

    Many thanks lllaass,
    The Touch Copy third party software for PC's is the way to go it seems and although the demo is free, if you have over 100 songs then it costs £15 to buy the software which seems not a lot to pay for peace of mind. and restoring your iTunes library back to how it was.
    Cheers
    http://www.wideanglesoftware.com/touchcopy/index.php?gclid=CODH8dK46bsCFUbKtAod8 VcAQg

  • Stream 7, dual boot, windows and android

    Given that the HP Stream 7 can be equipped with lots of storage, why not dual boot it with Window and Andoid so I can have the best of both worlds
    can this tablet be configured to do that?

    Before going to a lot of trouble, I'd get a boot disk on USB with Android X86 on it.  Then boot off the USB.
    I'd also suggest using 4.22 or 4.4, not 5.0.  "Everyone" is still working on 5.0.x.
    I've not had much luck on a few devices and Android x86 - hence my suggestion.  I have NOT tried it on the Stream 7

  • MacBook Air intermittently has issues connecting to websites when wireless shows connected to the internet. The pages show that I am offline, but I can ping Google DNS. Windows PC, iPhone and Android phone have no issue displaying the same web pages.

    MacBook Air intermittently has issues connecting to websites when wireless shows connected to the internet. The pages show that I am offline, but I can ping Google DNS. Windows PC, iPhone and Android phone have no issue displaying the same web pages.How do I solve this issue?

    Go step by step and test.
    1. Power off the router. Unplug it from the wall. Wait a while.
        Plug it back to the wall. Power the router on. Wait until all the lights are lit properly. It will take a while.
        Restart the computer.
        Start up in Safe Mode.
        http://support.apple.com/kb/PH14204
    2. Empty Caches
        Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        Develop menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    3. Deselect Proxies if selected.
        System Preference > Network > Advanced  > Proxies Tab
        Under "Select Protocol", uncheck any box if selected.
        Click "OK" then  "Apply”.

  • ITunes 10.4 and Windows 7 bug thread

    I thought I would start an entire thread devoted to iTunes 10.4 and Windows 7 bugs since there are MANY people reporting various issues and may not know about all of them. Hopefully this will combine a list of all bugs for reference and help others. So far, most of this effects Windows 7 64 bit, but some are reporting issues under 32 bit too.
    I have spoken with both Apple Care and a higher level tech at iTunes support. The iTunes support tech said they were "looking into all reported bugs and are aware of issues with version 10.4, especially under Windows 7. They encourage others to report their bugs to iTunes support so they can work on this and find all the issues.
    KNOWN BUGS:
    Album Art copy/paste broken - A bug that causes copy/pase from clipboard where album art is not displayed in the info tab as before. Some have reported success by dragging the image file over to it vs copy/paste method but it is still very much spotty and a known bug.
    iTunes store not working - Some have been effected with the iTunes store not working properly for them. Personally I don't have a problem but this has been for some.
    "Purchases" link not working in iTunes - When you click on "Purchases" link on the right column, all your purchases are missing and do not show up. This includes, music, movies, apps, etc. This is also a known bug and one that I have personally. Works fine in iTunes 10.3 for Windows 7 64bit and also works fine under both Snow Leopard and Lion OS.
    Sync issues - Some have reported syncing issues since upgrading to 10.4 iTunes on Windows 7. This is a bit spotty as well as I have no trouble but there are others that have reported issues.
    Solutions:
    For now, the only way to fix this is to use iTunes 10.4 under Snow Leopard or Lion OS. Also, you can uninstall (not repair) 10.4 and install 10.3 again which should work.

    You are correct and I wish that I had known this before spending 4 days and a lot of trouble going over this with both Apple Care and iTunes support. They had me jumping through hoops and didn't know anything until it was finally escalated. Only then did I get a vague response like I mentioned in the first post. It's troubling to me how a simple response from anyone there could've just said we know about this and they are bugs in 10.4 causing this.
    There are other issues too as you point out with the syncing and crashing. Anyway, hopefully others will find information here more useful than calling Apple for help. Not much we can do now except roll back to 10.3 for those that kept it and hope also they can updated Apple Application Support component.

  • Issues with iPhone and Android connecting to Lync 2010?

    Our environment currently consists of a single Lync 2010 instance, which is currently performing all roles. The current challenge I'm running into is connectivity to iOS and Android devices not wanting to cooperate. Currently, Lync is using a certificate
    issued by a local CA. The CA root certificate has been imported to the devices that are having trouble connecting, and I've done this via email import without success, as well as using the iPhone Configuration Utility. In all tested instances, an error that
    "the certificate can't be verified" is displayed that prohibits a user from establishing a connection. All domain workstations and remote users that import the root CA have no issues connecting.
    I can't seem to figure out what's going on here. Has anyone run into this? This is a quasi-test environment in my lab that I'm testing with a few other people, and as much as we've tried, can't seem to figure out the issue. Any ideas?

    To confirm that the certificate has been installed successful do you have a corporate website that is available externally that uses a certificate issued by the CA in question? If the answer is yes I would browse to that site on the phone and see if you
    get an error. The Lync mobile clients don't give you a heck of a lot of information for troubleshooting. This will rule out a certificate issue.
    Next thing would be your reverse proxy. Are you using ISA server? Test the reverse proxy rule by browsing to the Lync mobile auto discover URL - https://lyncwebexternal.domain.com/Autodiscover/AutodiscoverService.svc/root
    Assuming ISA also make sure the rule is configure correctly - 
    http://technet.microsoft.com/en-us/library/hh690011.aspx
    http://blogs.technet.com/b/nexthop/archive/2012/11/19/configuring-reverse-proxy-for-lync-server-2010-mobility.aspx
    Let me know what the results are of those tests.
    Andrew Morpeth
    Lync Server Specialist - Auckland, NZ
    Check out my blog

  • Transferring ebooks to smartphones and Android devices

    Several people have posted to the Forum about their ability to get ebooks to smartphones and Android devices that aren't supported by Digital Editions.
    SONY has at least part of an answer.  They just posted the following information:
    "Reader Store now enables you to browse, purchase, and download eBooks from any browser and have them instantly delivered to your wireless Reader device, Android® tablet, Android phone, PC or Mac®."
    That means that SONY Reader Store supports these devices (hint to Adobe!!!).
    Of course you can sign up for SONY Reader Store, and get your ebooks from them directly.  Then, just follow their directions and you'll be able to transfer the ebooks to these devices, provided that their DRM settings will allow it.  This is just a parallel way of getting ebooks, and the steps are similar to those you use with ADE, just as you would do if you were getting ebooks for your Nook from Barnes and Noble.
    If you want to continue to obtain ebooks from other sites, such as gutenberg.org, manybooks.net, etc., then you can sign up for SONY Reader Store, download their Reader library and software, but use ADE to do the transfer from the website where you get the ebooks.  Once the transfer is done, provided DRM will allow it, you can open Reader Store, import the ebook from the ADE library and use Reader Store to do the transfer to your smartphone or other device that they support.  I know it's a bit of work, but you may find it worthwhile - and less frustrating.
    SONY Reader Store has HELP features that will help you to go through the steps to do the importing and the downloading.
    CAVEAT: I would not try to do this with library ebooks.  The way they're handled in ADE may screw up any attempt you make to use Reader Store for the transfer.  Contact your local library and see if their software supports your smartphone or Android device.
    Hope this helps!
    =============

    Try e-mailing them to yourself. You should have the option of "Open in Bluefire" or something similar from Mail.

Maybe you are looking for

  • Newbie to applets! error message in java console

    hi, i'm kindof new to this, i've created a simple "hello world" applet! it doesn't seem to find the class! i've even put it in the bin dir of java. i'm using 1.4 error message in java console: Java(TM) Plug-in: Version 1.4.2_01 Using JRE version 1.4.

  • 30EA2 Code completion weirdness

    Start with this in the worksheet: select ai, i, sum(e), sum(n) from cp_2 group by ai, i; Start type ", sum(" at the end of the line. I have got several results, depending I suppose, on typing pauses. For some reason additions are made to the "group b

  • Why do i get Dr.Watson error while running labview?

    I, Prasad, is a student using labview to communicate with optomux daq as a part of my project. This optomux daq is used to control a IBM7535 robot and a terco CNC Milltrainer. I have downloaded the opto22 driver for labview, but when i used the opto

  • Updating Boot Camp?

    Hey there everyone, So, I was running Windows 7 with Boot Camp 2.1. Surprisingly, everything was working fine. Then, I got Snow Leopard, and I upgraded to it (thinking it would update my boot camp as well.) However, although my actual Boot Camp utili

  • NVARCHAR (MAX) TO PRINT DYNAMIC SQL QUERY TO A SQL FILE

    Hi  I have a requirement where i need to write an SP which would construct a huge query using dynamic SQL and save the Dynamic query to a file.  The Dynamic SQL Variable I am using as @NVARCHAR(MAX) but since the query being built is large (>4000 cha