NTSC vs PAL upcoming shoot- need help.

hi, i have a huge project coming up. some video shot in US other in Europe.
thinking of using AF-100 as well as a DSLR, as second camera cutaways.
want to use 1080 30p setting, ideally. question is, how do i handle shooting in europe? If i have a US crew and bring a NTSC camera, how shall it be shot given the 50hz vs 60hz issue? If i hire a crew in Europe using AF-100, it will be PAL but then how do I edit that footage along with stuff shot in US? much thanks.

Hello Sue,
personally I'd convert everything to PAL as I've always felt that I get slightly better results from NTSC to PAL conversions than vice versa ... but it also depends on your final output.
Since you're saying that you'll shoot with AF-100s and DSLRs, why not shoot everything in 24p and forget about standards conversions? And from what I hear you can even shoot overcranked 50/60p in 24p mode with the AF-100.
hope this helps
mish

Similar Messages

  • Trouble shooting - Need Help

    Please help - I have followed the instructions on http://www.apple.com/uk/itunes/podcasts/specs.html, based my XML on the example feed and submitted my XML to http://feedvalidator.org, http://castfeedvalidator.com and http://validator.w3.org/feed, as well succesfully subscribing to my feed on iTunes.
    Have I missed something obvious? Where have I gone wrong?
    The following was rejected
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0">
    <channel> 
    <title>Barry Andy Podcasting</title> 
    <atom:link href="http://www.barryandy.com/barrypodcast.xml" rel="self" type="application/rss+xml"/>
    <link>http://www.barryandy.com</link>
    <language>en-GB</language>
    <copyright>Barry Andy. All Rights Reserved</copyright>
    <itunes:subtitle>Listen to the latest podcasts by Barry Andy</itunes:subtitle>
    <itunes:author>Barry Andy</itunes:author>
    <itunes:summary> 
    Listen to the latest podcasts by Barry Andy, featuring current and classic Hip Hop, R&B, Soul and Neo Soul mixes.
    </itunes:summary>
    <description>Listen to the latest podcasts by Barry Andy, featuring current and classic Hip Hop, R&B, Soul and Neo Soul mixes.</description>
    <itunes:owner> 
    <itunes:name>Barry Andy</itunes:name> 
    <itunes:email>[email protected]</itunes:email>
    </itunes:owner>
    <itunes:image href="http://www.barryandy.com/wp-content/uploads/2014/01/podcast_black2.jpg"/>
    <itunes:category text="Music"/>
    <itunes:explicit>yes</itunes:explicit>
    <itunes:keywords>Hip,hop,Neo,Soul,Classic,Barry,Andy,barryandy,djbarryandy</itunes:keywords>
    <item> 
    <title>Hip Hop Podcast Episode 1</title><itunes:author>Barry Andy</itunes:author>
    <itunes:subtitle>Some of the best Hip Hop tracks from 2012 and 2013</itunes:subtitle>
    <itunes:summary>The kind of Hip Hop that makes you want to jump up and down. Some of the best Hip Hop tracks from 2012 and 2013.</itunes:summary>
    <itunes:image href="http://www.barryandy.com/wp-content/uploads/2014/01/podcast11.jpg"/>
    <enclosure url="http://www.barryandy.com/mixes/HipHopClubMix2013.mp3" length="61535532" type="audio/mpeg"/>
    <guid>http://www.barryandy.com/mixes/HipHopClubMix2013.mp3</guid>
    <pubDate>Fri, 17 Jan 2014 19:00:00 GMT</pubDate>
    <itunes:duration>42:44</itunes:duration>
    <itunes:explicit>yes</itunes:explicit>
    </item>
    </channel>
    </rss>

    When you have a query please post the URL of the feed, not its contents.
    You have several tags which don't have opening tags, e.g.
    itunes:summary>
    which of course should be
    <itunes:summary>

  • TS1702 I am using iPad 3, today I upgraded it to iOS 6 however after updating a particular application is not functioning properly. it's Candy Shoot, need help in playing that game

    I am currently using iPad 3, and upgraded it to ios6 today. However after updating the software e a particular game Candy Shoot is not functioning properly. Please suggest how to get it solved

    thanks, but can you tell me how do I get in touch with the app development team?

  • Conversion from NTSC to PAL

    Hi there, can anyone help me with that old chestnut of converting NTSC in FCP to PAL via Compressor and then onto DVD SP to burn PAL DVDs. By exporting the NTSC film from FCP using Compressor is it just a matter of setting the Inspector to PAL (as well as setting the Frame Controls to custom) even though the source file is NTSC, or does it need to be converted to PAL first. My first attempt indicated around 120 hours for processing. Is this the only option or is a plug-in required? I have tried reading the Apple manual several times but I find it just doesn't explain things clearly enough. There should be a section on standards conversion not just a vague reference here or there. Maybe I'm a bit thick. Has anyone else had this NTSC to PAL issue? Any help appreciated. Cheers.
    Al.

    The use of Compressor 2 in format conversion should be restricted to short pieces (5-10 mins or less) because, yes, it takes forever. That is, unless you've got time to burn (or no money left in the budget).
    The only advice I can give you is to set all your Frame Control setting to Better and not Best. Best increases rendering time about three-fold without that much of an encoding improvement. However, it still won't be quick.
    (And no, you do not have to do a straight PAL -> NTSC conversion, then convert that NTSC movie to an MPEG-2)

  • I need help with shooting in my flash game for University

    Hi there
    Ive tried to make my tank in my game shoot, all the code that is there works but when i push space to shoot which is my shooting key it does not shoot I really need help with this and I would appriciate anyone that could help
    listed below should be the correct code
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    listed below is my entire code
    import flash.display.MovieClip;
        //declare varibles to create mines
    //how much time before allowed to shoot again
    var cTime:int = 0;
    //the time it has to reach in order to be allowed to shoot (in frames)
    var cLimit:int = 12;
    //whether or not the user is allowed to shoot
    var shootAllow:Boolean = true;
    var minesInGame:uint;
    var mineMaker:Timer;
    var cursor:MovieClip;
    var index:int=0;
    var tankMine_mc:MovieClip;
    var antiTankmine_mc:MovieClip;
    var maxHP:int = 100;
    var currentHP:int = maxHP;
    var percentHP:Number = currentHP / maxHP;
    function initialiseMine():void
        minesInGame = 15;
        //create a timer fires every second
        mineMaker = new Timer(6000, minesInGame);
        //tell timer to listen for Timer event
        mineMaker.addEventListener(TimerEvent.TIMER, createMine);
        //start the timer
        mineMaker.start();
    function createMine(event:TimerEvent):void
    //var tankMine_mc:MovieClip;
    //create a new instance of tankMine
    tankMine_mc = new Mine();
    //set the x and y axis
    tankMine_mc.y = 513;
    tankMine_mc.x = 1080;
    // adds mines to stage
    addChild(tankMine_mc);
    tankMine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal(evt:Event):void{
        evt.target.x -= Math.random()*5;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseMine();
        //declare varibles to create mines
    var atmInGame:uint;
    var atmMaker:Timer;
    function initialiseAtm():void
        atmInGame = 15;
        //create a timer fires every second
        atmMaker = new Timer(8000, minesInGame);
        //tell timer to listen for Timer event
        atmMaker.addEventListener(TimerEvent.TIMER, createAtm);
        //start the timer
        atmMaker.start();
    function createAtm(event:TimerEvent):void
    //var antiTankmine_mc
    //create a new instance of tankMine
    antiTankmine_mc = new Atm();
    //set the x and y axis
    antiTankmine_mc.y = 473;
    antiTankmine_mc.x = 1080;
    // adds mines to stage
    addChild(antiTankmine_mc);
    antiTankmine_mc.addEventListener(Event.ENTER_FRAME, moveHorizontal);
    function moveHorizontal_2(evt:Event):void{
        evt.target.x -= Math.random()*10;
        if (evt.target.x >= stage.stageWidth)
            evt.target.removeEventListener(Event.ENTER_FRAME, moveHorizontal);
            removeChild(DisplayObject(evt.target));
    initialiseAtm();
    function moveForward():void{
        bg_mc.x -=10;
    function moveBackward():void{
        bg_mc.x +=10;
    var tank_mc:Tank;
    // create a new Tank and put it into the variable
    // tank_mc
    tank_mc= new Tank;
    // set the location ( x and y) of tank_mc
    tank_mc.x=0;
    tank_mc.y=375;
    // show the tank_mc on the stage.
    addChild(tank_mc);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onMovementKeys);
    //creates the movement
    function onMovementKeys(evt:KeyboardEvent):void
        //makes the tank move by 10 pixels right
        if (evt.keyCode==Keyboard.D)
        tank_mc.x+=5;
    //makes the tank move by 10 pixels left
    if (evt.keyCode==Keyboard.A)
    tank_mc.x-=5
    //checking if the space bar is pressed and shooting is allowed
    if(evt.keyCode == 32 && shootAllow){
        //making it so the user can't shoot for a bit
        shootAllow = false;
        //declaring a variable to be a new Bullet
        var newBullet:Bullet = new Bullet();
        //changing the bullet's coordinates
        newBullet.y = tank_mc.y + tank_mc.width/2 - newBullet.width/2;
        newBullet.x = tank_mc.x;
        //then we add the bullet to stage
        addChild(newBullet);
    if (tank_mc.hitTestObject(antiTankmine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(antiTankmine_mc);
    if (tank_mc.hitTestObject(tankMine_mc))
            //tank_mc.gotoAndPlay("hit");
            currentHP -= 10;
            // remove anti tank mine
            removeChild(tankMine_mc);
        //var maxHP:int = 100;
    //var currentHP:int = maxHP;
    //var percentHP:Number = currentHP / maxHP;
        //Incrementing the cTime
    //checking if cTime has reached the limit yet
    if(cTime < cLimit){
        cTime ++;
    } else {
        //if it has, then allow the user to shoot
        shootAllow = true;
        //and reset cTime
        cTime = 0;
    function updateHealthBar():void
        percentHP = currentHP / maxHP;
        healthBar.barColor.scaleX = percentHP;
        if(currentHP <= 0)
            currentHP = 0;
            trace("Game Over");
        updateHealthBar();

    USe the trace function to analyze what happens and what fails to happen in the code you showed.  trace the conditional values to see if they are set up to allow a shot when you press the key

  • I need help with IOS 7, there is a major bug that needs to be fixed in an upcoming Update

    There is a big that needs to be FIXED an in upcoming update.
    Ok, on my ipad, the notifacation center says the weather is going to be 13 degrees celceuis, I am wanting to use the American metric units, which is Fahrenheit, how do I fix it, it says yahoo provides weather info! I taped on it, it led me to the internet, it said on yahoos website that it is 88 degrees Fahrenheit, but it won't show up on my ipad notifaction center,  how do I fix it?? Need help
    I have already done a hard reset, I also did location service off and then back on, the problems persist, some one told me that a third party weather app was changing the weather to celceuis, this is NOT true, need help how do I fix this?
    I have IPAD 3 gen, IOS 7

    Apple will never see your post here
    They do not monitor these posts for problems
    You really should post at
    http://www.apple.com/feedback/iphone.html
    http://www.apple.com/feedback/ipod.html
    http://www.apple.com/feedback/ipodtouch.html
    http://www.apple.com/feedback/ipad.html
    Allan

  • Need help with "Shield" on side scrolling shooter game

    I am horribly new to Flash, and I need lots of help with a lot of things, most notably a shield I'm trying to give the player in a side scrolling shooter game. I need help with:
    1. Making the ship change color when it's activated.
    2. Making it so enemies die on contact with the ship.
    3. Making the "shield" variable go down constantly while in use.
    If anyone could help, I would appreciate it a lot.

    I wouldn't want any of you to write this program for me because I want to learn it myself. Yes I'm a student and I have to write some game with my groupe for a telephone in java like language doja. We decided to let it be a chess game. However I'm looking for an already written game in java that preferebly has some comments above the program lines so I can see what they've done. Offcourse if nobody has anything like this, yes I'm looking for a way to make an algorithm that makes the cpu move each time the player makes it's move. I have no idea on how to do this. I was hoping it can be solved with for, while, if and genest for statements. Yes it wil be a game with graphics but I think we can manage that part ourselves. So main question is the algorithm for the cpu moves. Do I have to pre-program every game in the book or is there another way etc..
    I hope there's anybody that can and is willing to get me on my way since I know it maybee isn't the most simple question.

  • Mistakenly changed from NTSC to PAL - Help!

    My display settings on my mac mini were changed from NTSC to PAL (all i will say is that it involved a 3 year old) and now i can't get an output to my display. how do i change this??

    Try starting in Safe mode. If that works, change the resolution from whatever is the starting resolution to another choice. For example, if it comes up at 640 x 480 NTSC, change to 800 x 600 NTSC. Then restart normally. Hopefully that will get things back to the way they were before.
    http://support.apple.com/kb/HT1455

  • My Pal needs help

    My Buddy / co writer. Had an freak accident where He can no longer play, record, or work a computer. before the accident he backed up files from his projects (cakewalk) half of them aiff files, no problem. Half of them are CWB, logic 8 says what the **** are these. mac says no application to open. Any ideas its some kind of bundle file. I would like to mix and master them in logic for Him. All He can do is listen now. Any help would be much appreciated.
    Thanks Bill

    cowbell bill wrote:
    Thanks pancenter,
    Yea as it turns out CWB=Cakewalk Bundle, Duh!. Went to cakewalk downloaded latest trial version free for 15 days. All files were There it was the entire project. Except plug ins missing and no audio output (probably his audio interface settings no big deal) and VST plugins didn't make it on the PC. Ill be attempting This on the MAC tomorrow if I need help can I call on you. Thanks Bill. P.S it means a lot to him.
    I'll be around as will a few others from the forum. I'm not a Cakewalk user, but I have done some work at a local studio that is Sonar/Cakewalk based so I have used the program before although not for a few months.
    Let us know how it goes!
    pancenter-

  • NTSC or PAL to Flash CS3

    Hi,
    I need to edit a movie and place it in an Flash document.
    When I want to purchase the movie I have to option to download it in NTSC and PAL or HD
    The HD has 29,97 fps -> so NTSC
    I am in a PAL-country so the logical choice is to download a PAL version.
    I have a theorie but don't know if this will work.
    If I do download the HD version and edit this in Premiere Pro CS3 and export it with the NTSC settings. I will have no loss in the movie.
    But if I import it in Flash CS3 and export the movie will I have quality loss?
    I think not because the movie will be shown on a computer screen.
    I hope somebody can help me with this.

    G.
    One of the advantages of Shooting with a PAL camera is that you don't have too many frame rates to worry about and no pull down is needed.
    You can shoot PAL (50 fields per second as opposed to NTSC 60 ) at 25frames ps (or better 50fps, talk to your DoP about this) edit easily with FCP on a PAL timeline and eventually convert to NTSC using [Nattress Standard Converter|http://www.nattress.com/Products/standardsconversion/standardsconvers ion.htm] or Compressor 3.
    However, there are a couple of things you can take into account:
    1)most DVD players nowadays can play both PAL and NTSC (Not all though)
    2)If you are used to a specific workflow stick with it or do some tests before you take any decision.
    You could shoot with a PAL camera and edit a few minutes in FCP, do a standard conversion with Compressor then encode and import the asset in DVDSP to burn a DVD to see if you are happy.
    Testing is a crucial step of the work and hiring the camera for half a day will cost you much less than a rushed decision.
    Best,
    G.

  • Need Help Determining Least Common Demoninator for Frame Rate, Codec, and Workflow

    I need help determining the best timeline setting and Compressor workflow to integrate footage with varying frame rates and codecs that I'm currently upres'ing for a multi-camera concert performance destined for HD broadcast output. I'm assuming the network needs 29.97.
    Thus far, I've been working with Apple ProRes Proxy files to create lo-res edits. Now, I've started the task of offlining and ingesting new, HD clips from the proxy references. The content originates from either Panasonic HVX200 or Panasonic GH1 cameras.
    Looking at the material, it appears the cameras were not shooting with the same settings and, somehow, a PAL GH1 got into the mix. Some of the performances have the PAL GH1 and other do not.
    Here's the breakdown of the varying sources. I got this info from the Log & Transfer columns.
    HVX Cameras
    Format: 1080p24
    Source Format: DVCPRO HD 1080i60
    Shooting Rate: 24
    Vid Rate: 29.97
    TC Format: Non-Drop
    GH1 NTSC
    Format: 1080i60
    Source Format: AVCHD 1080i60
    Shooting Rate: 30
    Video Rate: 29.97
    TC Format: Drop
    GH1 PAL
    Format: 1080i50
    Source Format: AVCHD 1080i50
    Shooting Rate: 25
    Video Rate: 25
    TC Format: Non-Drop
    ANOTHER GH1 NTSC
    Format: 1080p24
    Source Format: AVCHD 1080p24
    Shooting Rate: 24
    Video Rate: 23.98
    TC Format: Non-Drop

    Call the TV station/network and get their spec sheet first. You need to know more than frame rate.
    Once you have that, you can work backwards to arrive at a workflow.
    As a general priniciple, you'll get a more seamless translation of format when you add frames rather than removing them. (eg 24p to 27.97 rather than 29.97 to 24p)
    At least all the material starts out in the 1080 world.
    Do all your conversions before you start editing. (I'd use ProRes or ProRes LT for the editing codec).
    Budget a bunch of time to sync the material or figure out a quick cutting style that minimizes sync drift.
    What a nightmare.
    x

  • NTSC to PAL / 24fps

    Hi guys,
    I'm shooting a tv show for MTV tr in New York City and since it will air in Europe it has to be set in PAL so I am unsure on how to deal with the settings.
    I have NTSC 24fps footage that needs to be edited. My question is when I start a new project in Premiere CS3 should I choose NTSC or PAL or should I start editing in NTSC and convert it to PAL?
    Second question, when I import the footage in Premiere which, is located in my external hard drive with usb 2.0, the video seems jerky or choppy on the camera movements such as panning and any fast camera moves. Do you know how or where I can adjust this problem? Could it be that my project was shot in 24 fps and the new project file fps is 29.97? I didn't change any fps settings in the new project, so I assumed it's automatically 29.97.
    My computer:
    Windows XP
    2.80GHz Pentium D CPU
    2.00GB RAM
    Third question, should I render my project and burn a DVD or does it render when you burn a DVD automatically?
    Can anyone please help me with this?
    Thank you so much!
    Firat

    From what you have described and looking at the specs I feel there is little chance of your program being accepted for television anywhere.
    Need some answers...
    What camera was used to shoot the footage at 24fps? Is it DV or HDV?
    Why did you not choose a project setting of 24fps rather than 29.97?
    Why did you use USB to transfer files rather than Firewire?
    Capturing USB sort of indicates that your camera is DVD or HDD based and using Mpeg files which CS3 doesn't like, nor do TV stations.
    Don't worry too much about burning a DVD until you work out if the footage is editable.

  • PAL to NTSC or NTSC to PAL Conversion in Premiere

    Hi Guys,
    I have come hat in had to ask the gurus here about format conversion. I have a Lagarith AVI that is PAL, 30 FPS & progressive. If I am encoding that to NTSC, what steps should I be taking?
    Thanks!
    Howard

    you dont have to have hat in hand... nobody is gonna bite your head off.
    this is place where users of programs like YOU help each other.
    To do that sometimes questions are answered with an eye toward fixing ( educating ? ) a person about the underlying causes of confusion. This means spending a moment to explain things sometimes...rather than just blurting out the obvious and making a poster look for the answer somewhere else.
    NTSC is based on the electrical grid of 60 cycles per second... and so half of that is 30 frames per second.
    PAL is based on an electrical grid that generates AC current at 50 cycles per second.. so half of THAT is 25 fps.
    This has to do with broadcast TV. It has NOTHING to do with what your camera actually shoots, your options with your source material... it ONLY has to do with broadcast TV.
    If you live in a country that is PAL ( like the UK ? ) then they broadcast PAL at 25fps.
    If you live in a country like the USA then they broadcast at 30 FPS.
    What you need to do is determine what country you want to send your product to... broadcast it...or make DVD for local TV's to watch it...
    Do you live and work and want to deliver your video in PAL or NTSC ?
    Again, this has NOTHING to do with what you shot your video with. It only has to do with what your delivery is.
    If your original source material ( video you shot ) is 30 FPS... than it is in line with being NTSC...cause that's what the US and other places using 60 cycle per second electric generators use for their main power grid.
    That is what Ann meant by saying it is " already" NTSC ".  she was referring to your source material if it is in fact 30 FPS.
    What YOU do with that in your editing export etc to accomodate different 'markets'  ( pal and ntsc etc ) is up to YOU.... and there are different ways to do that...depending on which way you are going....
    For example, interleaved is nice for some broadcast markets ... instead of progressive.  It all depends on stuff you want to deliver to.  It has nothing to do with what you SHOT it at...or your source material.
    Google NTSC and PAL and progressive vs interlaced and you will start to see what is going on...
    good luck !

  • DVD Footage for FCP Edit - how to tell if NTSC or PAL?!

    Hi all, apologies if this seems like a stupid request but I have a job at the moment calling for me to extract footage from a DVD, edit in FCP, add a few bits from Motion etc., but I can't work out if the DVD is NTSC or PAL!
    I intend to extract the video (no issues with copyright) via DVDxDVPro but am unsure if the DVD has been encoded in NTSC or PAL. The footage it contains is from both the States (NTSC) and South Africa (PAL) so how do I tell? I don't want to go through a standards conversion if I can help it.
    I am keen to try to retain as much quality as possible (client can't provide tape) so also any thougts on the best output from DVDxDVPRo for FCP editing?
    Thanks all,
    Best wishes
    Michael

    Hi Thomas, that's it!
    Thanks for this - it clearly shows the TV standard and the resolution plus 4:3 etc., so everything I needed for confirmation.
    Glad I cheked because it was in Pal - thought the conversion in DVDxDVPro looked a bit ropey.
    This realy baffled me - seemed so simple but couldn't find a way to tell the standard. Learn something everyday...
    I am using DVCPro for export from DVDxDVPro - anyone thoughts on a better option?
    Thanks again for the answer - and so quick on a Sunday too!
    Kind regards
    Michael

  • Follow up from Real Pro thread - NTSC and PAL and AVCHD and FCE

    Interesting topic line but can I just check one thing out from PAL land.
    With an HD/AVCHD camera it is not recording in either PAL or NTSC as this is a analogue mode - so the issue issue of format is only relevant if i playback on a analogue TV. We have a digital tv so i record on AVCHD, deal in that format in FCE and burn to DVD (not sure in what format) play on DVD player through the digital TV.
    If that is all correct then why do the manufacturers, in my case Canon HF10, talk about an NTSC and PAL version and then price differently - comparing the spec sheets from the Canon site I can see no difference. Am I missing something?

    Hi Tom
    The thing i was trying to establish was whether really there was a difference (other than price ) in the so called versions of the Canon HF10. The specs are exactly the same. My assumption is that as the cam records in AVCHD unless you intend to play back thro a PAL or NTSC TV (bearing in mind most European PAL sets play NTSC as well) it makes no odds which camera.
    My plan- and this is what I need to check - is to record and import into FCE taking your advice not to record in the highest quality to save rendering on import. After editing can export through FCE to PAL or NTSC DVD version for playing on TV.
    Does that sound right
    PS I have found your book on FCE very helpful to date !!!!

Maybe you are looking for

  • How do I add a forum to me site using iweb 08?

    I have all the sources such as i web 08, mobile me account and my own domain name website all set up and running fine. I would like to add a forum where people can add comments and pictures. How can I do this?

  • How do I add a new mailbox on my iPhone?

    How do I add a new mailbox on my iPhone 4S. I have tried going to the "Mailboxes" and selecting edit but that just takes me to the "New Message" screen.

  • How can I use AirPlay on an Ipad 1?

    the Ipad 1 doesn't seem to include AirPlay.  Is there any way I can obtain AirPlay or some alternative app so I can display my Ipad screen on my MacBook Pro? Thanks.

  • Help needed with price sticker printing using Jetform

    Hi, I am trying to do a layout for printing price stickers. Here is an example of what the output should look like : 1st Sticker 2nd Sticker Cust Name Order date # Address Print Time # Cust # Cust Ord # 3rd sticker 4th sticker Item # Item # Price# Pr

  • How to install a dialog instance on AIX

    hi, i want to install dialog instance on AIX. But i dont know the procedure how to start. even i have searched the document in service market place, i could't find. Does any body guide me regarding this issue. SAP : 4.0B R/3 Kernal: 4ob_com DATABASE: