How to make subtitles perfect in VLC?

Hello all mac users
I am a new mac user, and I don't know how to make my subtitles match with my video in VLC media player
Anyone there can help me?
Thanks!

Yeah,
I found "Auto Crop".
Thanks!
I suggest that this function come on new After Effects.
Where is the Feedback?

Similar Messages

  • How to make a perfect cube

    how can i make a perfect 3 cube in after effects?
    i create a square side of the cube then changing everytime the anchor point (top, both side, and bottom) i duplicate it 4 times and rotate it to recreate the cube but they don't touch in the right way, i mean there is always some space or they fuse together... if i press ctrl or shift the program don't help me to make them aligned
    how can i solve this problem?
    to be faster can you just rell me how can i center the anchor point of a 3d layer? i mean center the Z value, the deep... if i set 0 the Z is on the figure
    like on a 300x300 figure the Z point will be at 150, but on an irregular figure? how can i center it?
    ive made it with solid, but i want to make it with rectangle tool, is possible? the Z anchor in solid is easy to set, just grap it to 150 if your solid is 300x300, but ho can you center the Z point with rectangle tool? is possible to make a cube with this tool without have to center manually a layer? with solid is easy just set the Z anchor to the theoric center (i hope you understand me at this theoric center XD i dunno how to explain) then duplicate 5 time the layer and rotate them of 90 degree to make the cube... very easy but with rectangle tool is a mess D:

    Hey Eran Stern has a tutorial that makes this task "look" easy using something called "alternative parenting". Here it is STERNFX - However, I am on the board this morning because I can not get it to work as advertised in the tut. I'm getting a cross shape not a cube. Would be interested to see if anyone else can make it work. I believe I am following the instructions verbatim.
    BTW here is an expression to make a cube. Credit goes to Colin Braley. I can't remember where I copied it from.
    Re: Box troubles
    by Colin Braley on Oct 23, 2005 at 5:49:54 pm
    I have a quick expression you can apply to a layer to create a box, just make sure that each layer is the same size and is a square layer(use square pixels). Also, for the expression to work the layers that make up the box have to be the first six layers in their comp. It you want to move the box parent the layers to a null or something. If you want other layers to be above it precomp the box, bring it into another 3d cop and turn on the continuously rasterize/collapse transformations switch. Well with that said here are the expressions:
    Here is the expression for position:
    i = this.index;
    if(i == 1){//front
    x = thisComp.width/2;
    y = thisComp.height/2;
    z = 0;
    }else if(i == 2){//Back
    x = thisComp.width/2;
    y = thisComp.height/2;
    z = this.width;
    }else if( i == 3){//Left Side
    x = thisComp.width/2 - this.width/2;
    y = thisComp.height/2;
    z = this.width/2;
    }else if (i == 4){//Right side
    x = thisComp.width/2 + this.width/2;
    y = thisComp.height/2;
    z = this.width/2;
    }else if(i == 5){//Top
    x = thisComp.width/2;
    y = thisComp.height/2 - this.width/2;
    z= this.width/2;
    }else if (i == 6){//Bottom
    x = thisComp.width/2;
    y = thisComp.height/2 + this.width/2;
    z= this.width/2;
    [x, y, z]
    Here is the expression for orientation:
    i = index;
    if(i == 1){//front
    x = 0;
    y = 0;
    z = 0;
    }else if(i == 2){//Back
    x = 0;
    y = 0;
    z = 0;
    }else if( i == 3){//Left Side
    x = 0;
    y = 90;
    z = 0;
    }else if (i == 4){//Right side
    x = 0
    y = 90;
    z = 0;
    }else if(i == 5){//Top
    x = 90;
    y = 0;
    z= 0;
    }else if (i == 6){//Bottom
    x = 90;
    y = 0;
    z= 0;
    [x, y, z]
    well there you go just apply that to a square ;ayer and duplicate it 6 times.
    ~Colin

  • How to make subtitles in CS4?

    Hi, is it possible to work with closed captionings and srt files in Premiere CS4 or is it just not available? I've searched AdobeTV, Creative Cow and YouTube and it all seems so simple but often people don't tell, in which verion they work.
    Primaliry I'd like to deliever a video (made in Premiere) with subtitles "burnt in" onto the video to the customer. (Customer wants choosen font, white on black stripe 70% transparancy, so I'll got to have the possibility to edit this) 
    However I'd like to use freeware as Subtitle Edit or Subtitle Workshop to make the subtitles. In that way I consider, I could get use of the files for coming editions, if that question araises; Closed Captioning, saving srt, scc or mcc. Could you please tell me which way to go?

    Are you talking about the Selection>Modify>Expand to increase the Selection by a set amount? There is also a Border feature in Selection, but I tend to doubt that is what you want, as it will just place a "border" of a set size "around" your Selection. Please clarify.
    Good luck,
    Hunt

  • How to make a perfect validations between two dates..?

    Hello,
    i want to check this code with u christian pls,
    DECLARE
    V_MESSAGE NUMBER(2);
    V_TO_DATE DATE ;
    V_FROM_DATE DATE;
    CURSOR MATERIALS IS
                   SELECT MATERIAL_CODE,TO_DATE,FROM_DATE
                   FROM PLN_TANK_MATERIALS
                   WHERE TANK_CODE= :PLN_TANK_MATERIALS.TANK_CODE;
    BEGIN
         FOR I IN MATERIALS
         LOOP
              IF (:FROM_DATE > I.FROM_DATE ) AND (:TO_DATE < I.TO_DATE ) THEN          
                   V_MESSAGE := FUNC_MSG(1,'CASE 1');      
              RAISE FORM_TRIGGER_FAILURE;          
              ELSIF (:FROM_DATE > I.FROM_DATE ) AND (:TO_DATE > I.TO_DATE ) THEN     
                   V_MESSAGE := FUNC_MSG(1,'CASE2');
              RAISE FORM_TRIGGER_FAILURE;
              ELSIF (:FROM_DATE < I.FROM_DATE ) AND (:TO_DATE > I.FROM_DATE ) THEN     
                   V_MESSAGE := FUNC_MSG(1,'CASE3');
              RAISE FORM_TRIGGER_FAILURE;     
              ELSIF (:FROM_DATE < I.FROM_DATE ) AND (:TO_DATE > I.TO_DATE ) THEN     
                   V_MESSAGE := FUNC_MSG(1,'CASE4');
                             RAISE FORM_TRIGGER_FAILURE;     
              ELSIF (:FROM_DATE = I.FROM_DATE)OR (:TO_DATE = I.TO_DATE )
                        OR (:FROM_DATE = I.TO_DATE)OR (:TO_DATE = I.FROM_DATE ) THEN     
                        V_MESSAGE := FUNC_MSG(1,'CASE5');
                   RAISE FORM_TRIGGER_FAILURE;
              END IF;          
         END LOOP;          
    END;
    =========================================================
    Regards ,
    Abdetu..

    i want to check this code with u christian plsnote that I am more Database PL/SQL Developer than Forms Developer...
    also note that I am earning 20 Bucks/Code Review :D
    But it would be nice to tell me your problem with the upper source, than maybe I can help u...
    best regards
    Christian

  • I subscribed for itunes imatch - it works perfectly on my i-pad and iPhone - however on my macbook - my iTunes can no longer find my songs - i don't know how to make it look to the cloud to play my music

    i subscribed for itunes imatch - it works perfectly on my i-pad and iPhone - however on my macbook - my iTunes can no longer find my songs - i don't know how to make it look to the cloud to play my music - i think it keeps trying to find on the external harddrive where i used to keep my music

    Of course iTunes is looking for the music on the external HDD. Enabling iTunes Match does not magically change the location of the iTunes library to the cloud.
    To play the music either plug the external HDD back into your computer or create a new, empty library to use for streaming the iTM content. The latter can be accomplished by holding down the Option key when launching iTunes, choosing "create library" then enabling iTunes Match on the new library. DO NOT have iTunes scan your HDD for music.

  • HT5559 JAVA WITH CHROME!!! I am trying to login to my bank account at nordea.dk. This website uses somekind of java thing. Chrome cant't load it. Works perfect with Safari. How to make it work in Chrome?

    I am trying to login to my bank account at nordea.dk. This website uses somekind of java thing. Chrome cant't load it. Works perfect with Safari. How to make it work in Chrome?

    Do you speak of true blue Java or Javascript?  If the latter then it is a problem with the Browser.
    But if it is the real Java, do you have the offical version of Java from Oracle installed?
    Getting applications to see official Java is a nightmare.  If you install the Runtime Environment only (JavaRTE) most applications do not see it.
    To force offical Java system wide, I found you have to install the Java Developer Kit (JavaJDK).  It's a larger install as it also comes with documentation and compilers but it make offical Java system wide.

  • How to draw a perfect circle and how to make sure it is perfectly centered inside a square

    How to draw a perfect circle and how to make sure it is perfectly centered inside a square in Photoshop elements using the Ellipse option.

    1. Create a square canvas.
    2. With the Elipse tool, hold down Shift (Shift forces a circle). Draw the circle anywhere on the canvas (Shape 1 in this example).
    3. Simplify the circle layer
    4. Ctrl-click the layer to select the circle.
    5. Copy the selection to the clipboard (Edit > Copy).
    6. Deselect the selection.
    7. Paste from the clipboard (Edit > Paste). The pasted circle (Layer 1) will be centered.
    8. Delete the original circle layer.
    NOTE: Step 6 is the key. This guarantees that the pasted circle will be centered.
    If you want a circle completely within a square you can simply draw and simplify a circle on any shape canvas. Ctlrl-click the circle to to select it and copy to the clipboard.
    Then do File > New from Clipboard. This creates the circle cropped to a square on transparent background.

  • How to make column headers in table in PDF report appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp

    Hi my name is vishal
    For past 10 days i have been breaking my head on how to make column headers in table appear bold while datas in table appear regular from c# windows forms with sql server2008 using iTextSharp.
    Given below is my code in c# on how i export datas from different tables in sql server to PDF report using iTextSharp:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Data.SqlClient;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    using System.Diagnostics;
    using System.IO;
    namespace DRRS_CSharp
    public partial class frmPDF : Form
    public frmPDF()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(6);
    table.TotalWidth =530f;
    table.LockedWidth = true;
    PdfPCell cell = new PdfPCell(new Phrase("Institute/Hospital:AIIMS,NEW DELHI", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK)));
    cell.Colspan = 6;
    cell.HorizontalAlignment = 0;
    table.AddCell(cell);
    Paragraph para=new Paragraph("DCS Clinical Record-Assigned Dialyzer",FontFactory.GetFont("Arial",16,iTextSharp.text.Font.BOLD,BaseColor.BLACK));
    para.Alignment = Element.ALIGN_CENTER;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(105f, 105f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn = new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select d.dialyserID,r.errorCode,r.dialysis_date,pn.patient_first_name,pn.patient_last_name,d.manufacturer,d.dialyzer_size,r.start_date,r.end_date,d.packed_volume,r.bundle_vol,r.disinfectant,t.Technician_first_name,t.Technician_last_name from dialyser d,patient_name pn,reprocessor r,Techniciandetail t where pn.patient_id=d.patient_id and r.dialyzer_id=d.dialyserID and t.technician_id=r.technician_id and d.deleted_status=0 and d.closed_status=0 and pn.status=1 and r.errorCode<106 and r.reprocessor_id in (Select max(reprocessor_id) from reprocessor where dialyzer_id=d.dialyserID) order by pn.patient_first_name,pn.patient_last_name", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("Reprocessing Date");
    table.AddCell("Patient Name");
    table.AddCell("Dialyzer(Manufacturer,Size)");
    table.AddCell("No.of Reuse");
    table.AddCell("Verification");
    table.AddCell("DialyzerID");
    while (dr.Read())
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString() +"_"+ dr[4].ToString());
    table.AddCell(dr[5].ToString() + "-" + dr[6].ToString());
    table.AddCell("@count".ToString());
    table.AddCell(dr[12].ToString() + "-" + dr[13].ToString());
    table.AddCell(dr[0].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    System.Diagnostics.Process.Start("AssignedDialyzer.pdf");
    if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.Yes)
    var writer2 = PdfWriter.GetInstance(doc, new FileStream("AssignedDialyzer.pdf", FileMode.Create));
    else if (MessageBox.Show("Do you want to save changes to AssignedDialyzer.pdf before closing?", "DRRS", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Exclamation) == DialogResult.No)
    this.Close();
    The above code executes well with no problem at all!
    As you can see the file to which i create and save and open my pdf report is
    AssignedDialyzer.pdf.
    The column headers of table in pdf report from c# windows forms using iTextSharp are
    "Reprocessing Date","Patient Name","Dialyzer(Manufacturer,Size)","No.of Reuse","Verification" and
    "DialyzerID".
    However the problem i am facing is after execution and opening of document is my
    column headers in table in pdf report from
    c# and datas in it all appear in bold.
    I have browsed through net regarding to solve this problem but with no success.
    What i want is my pdf report from c# should be similar to following format which i was able to accomplish in vb6,adodb with MS access using iTextSharp.:
    Given below is report which i have achieved from vb6,adodb with MS access using iTextSharp
    I know that there has to be another way to solve my problem.I have browsed many articles in net regarding exporting sql datas to above format but with no success!
    Is there is any another way to solve to my problem on exporting sql datas from c# windows forms using iTextSharp to above format given in the picture/image above?!
    If so Then Can anyone tell me what modifications must i do in my c# code given above so that my pdf report from c# windows forms using iTextSharp will look similar to image/picture(pdf report) which i was able to accomplish from
    vb6,adodb with ms access using iTextSharp?
    I have approached Sound Forge.Net for help but with no success.
    I hope anyone/someone truly understands what i am trying to ask!
    I know i have to do lot of modifications in my c# code to achieve this level of perfection but i dont know how to do it.
    Can anyone help me please! Any help/guidance in solving this problem would be greatly appreciated.
    I hope i get a reply in terms of solving this problem.
    vishal

    Hi,
    About iTextSharp component issue , I think this case is off-topic in here.
    I suggest you consulting to compenent provider.
    http://sourceforge.net/projects/itextsharp/
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to make numbers in message text input  fields left aligned?

    Hi Friends
    I have completed one of my task .but getting result right side of the field.
    how to make numbers in message text input  fields left aligned?
    Thanks
    Aravinda

    Hi ,
    Sorry for late replay i am trying this alos not set that page....
    pageContext.forwardImmediatelyToCurrentPage(null, true, null);
    and one more that kff field working is fine for ex display any text pled displayed properly and only problem is not set the value and HrSitKeyFlex6 and HrSitKeyFlex7 fields are perfectly get the values but not pront HrSitKeyFlex8 that only my issue....
    Regards,
    Srini

  • How to make a JApplet run in a Browser

    HI ALL:
    Can anyone tell me how to make a JApplet run in a IE.
    I am using JComponents and Visibroker for JAVA ORB for connecting to another ORB's which would in-turn connect to a C++ Server and finally to the SQL Server.
    I am getting a NoclassFoundException whenever I am running my JApplet.
    My code is >>
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    <html>
    <head>
    <meta http-equiv="Content-type" Content="text/html;charset=iso-8859-1">
    <title>
    ORB ISSUE TRACKING SYSTEM
    </title>
    </head>
    <body>
    <Applet
         CODE="file://D:/IssueTrackingSystem/IssueTrackingSystem.class"
         Width=700
         Height=700
         Align=middle
    >
    <param name="CABBASE" value="IssueTest.cab">
    </Applet>
    </Body>
    </Html>
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    The Cabase file is a winzip file having all the ORB's compliant classes and my source classes to interact with the ORB Server.
    Help is urgent.
    Regards
    Ritesh

    I have been having exactly the same problems but I was using JDK 1.2.
    I discovred the problem could be resolved by using the Plug-in on navigaor or IE and bingo it was perfect.
    I also discovered that using the AppletViwer would allow me to see the applet. Then I upgraded to JDK1.3 or 2 or whatever it is and nothing.
    I recompiled the classes using the !.3 still nothing. The applet vewer don't work and the plug in don't work.
    I tried to recompile using the oldjavac ( I assume 1.2) and nothing I do will make this JApplet run. Ordinary a�pplets are OK. Applications with swing are OK, but JAPPLets are dead
    I have come to the conclusion SUN has screwed up big time and are frantically scrabbling about looking for a fix. I have reveert to javascript/DHTML as this is both consistent and stable and for considerably less effort and aggravation you can get 90% of the functioonality.

  • How to make a tcp server in loop

    Hello everybody!
    I just want to know how to make a server keeping turning even when the client has deconnected.
    My work is based on examples TCP Communicator - Active.vi and TCP Communicator - Passive.vi.
    The problem with these VIs is that when the client deconnects, the server doesn't work any longer, and I want the server to be able to listen for other clients (one client in the same time).
    How can I modify them to apply my will? If you have some examples it will be perfect!!
    Thank you!
    SebGAM

    You could probably get away with putting a big While loop around the server code, but there is always the greatest TCP server example I have ever seen. It lives over at OpenG, the Open Source LabVIEW community. You can download and use it for free. There's even decent documentation right there online.
    EXAMPLE - TCP Server at OpenG
    Beware, the code is not easily understood by the novice LabVIEW programmer. All you need to know is that you should only modify the VI called "TCP Server Example.vi" and "TCP Server Example Connection Handler VI.vi".
    Enjoy,
    Daniel L. Press
    PrimeTest Corp.
    www.primetest.com

  • How to make best videos/audios for Creative Zen/Zen Vision W/Zen Vision M/Z

    4Easysoft Creative Zen Video Converter is an all-in-one Video Converter for Creative Zen software with high output quality and powerful video editing functions, which can help all the zen users to make the best video/audio effect.
    First of all, let’s make clear what kinds of videos/audios can get the best effect in the zen players.
    Video:
    MPEG, WMV, and AVI (MPEG-4 SP, DivX, Xvid), while MPEG-1, and MPEG-2 are supported, but must be transcoded with the included software.
    Audio:
    MP3, AAC, WMA, WAV, and Audible 2, 3, and 4 formats.
    Settings:
    Video resolution: 320×240; Video Bitrate: 500 kbps; Audio Bitrate: between 96 to 128 kbps.
    Then, let me show you how to make a full use of this powerful converter.
    Preparation:Download and install 4Easysoft Creative Zen Video Converter
    http://www.4easysoft.com/guide/creative-zen-video-converter/main.jpg
    Step 1: Run this software and add video/audio files.
    Step 2: Select output video format from the profile drop-down list.
    Click the “Profile” button to select the output video format from the drop-down list button.
    Step 3: Customize output settings.
    Click “Settings” button in the output settings area, you are allowed to customize the output parameters, specify output folder and select output format.
    Step 4: Start conversion
    Click “Start” button on right bottom of the main interface, you can begin the conversion. All the tasks of conversion will be finished at fast speed and high output quality.
    http://www.4easysoft.com/guide/creative-zen-video-converter/steps.jpg
    Tips on editing videos:
    1: Capture your favorite picture.
    Just click the “Snapshot” button to save your favorite image.
    2: Merge videos into one file.
    Just check the “merge into one file” option if you want to merge the selected contents into one file As default the merged file is named after the first selected file (either a title or a chapter)
    3: Select preference
    Click the “Preference” button and a dialog pops up, you can select the output destination, the Snapshot foler, the format of the snapshot image. You can also choose to shut down your computer or do nothing after your conversion. You can also select the CPU usage.
    4: Trim video
    You can get any clip of your video and put it on your zen.
    5: Crop video
    You can crop your video by selecting your video mode, setting crop values, or drag the frame.
    http://www.4easysoft.com/guide/creative-zen-video-converter/tips.jpg
    Ok, just enjoy movies and music with your Creative Zen player now!
    More useful tools:
    MP4 Converter is a powerful MP4 Video Converter which is designed to convert almost any video formats to MPEG-4 standard formats; WMV Converter provides perfect solution to convert common video formats to WMV with the best quality of picture and sound; Apple TV Video Converter is the excellent Apple TV converter software to convert all video files such as AVI, MPEG, WMV, MP4, MOV, RM, ASF, 3GP, VOB, etc, to Apple TV movies.
    Edited by: user11254370 on 2009-6-9 下午11:58

    Just wanted to mention - I bought the IR Remote thinking to make the player useful without navigation keys. Now I feel like I wasted more money instead of shifting to some other player by some other company with better customer service.

  • How to make the exe always visible in the illust application.

    Hi,
    I created an interface for "illustrator CS" using Visual Basic and copied that exe in Scripts folder. I want to know how to make the exe always visible in the application(Not in Taskbar), once it was clicked. Could you please kindly help me to solve this.
    Regards,
    Prabudass

    Hi,
    I guess....though i am not pretty sure....but the Preview tab has been discontinued in the newer versions....
    Only the Gods can give a perfect solution though...!!
    <i>Do reward each useful answer..!</i>
    Thanks,
    Tatvagna.

  • How to make the exe always visible in the application window

    Hi,
    I created an interface for "illustrator CS" using Visual Basic and copied that exe in Scripts folder. I want to know how to make the exe always visible in the application window itself(Not in Taskbar), once it was clicked. Could you please, kindly advice me.
    Thanks,
    Prabudass

    Hi,
    I guess....though i am not pretty sure....but the Preview tab has been discontinued in the newer versions....
    Only the Gods can give a perfect solution though...!!
    <i>Do reward each useful answer..!</i>
    Thanks,
    Tatvagna.

  • How to make it work in HTML?

    The project run very well in Chrome, firefox and IE after published. (Stand alone)
    http://www.ctmotorfairing.com/Test/index.html
    However, after I integrated it in my existing HTML, in IE and firefox can't display any more. (Chrome is Perfect)
    http://www.ctmotorfairing.com/Test/index3.html
    Anyone can teach me how to make it correct integrated into my HTML position?

    Ling,
    In plugin, Clients IE setting is used. But In HTML , its used server’s IE setting.
    Check if you are able to open URL from server or not.
    Regards,

Maybe you are looking for

  • Can iTunes write corrected ID3 tags to the main files?

    I'm sure this has been posted somewhere already, but I can't find it, so here goes. I have changed several hundred ID3 tags by editing the files in iTunes. Titles, artists, album, etc. The problem is, the main files aren't updating. SO if I change an

  • Service Desk in Solutiion Manager 4.0

    Hello, I have problem with configuring Service Desk in Solman 4.0. I have applied instructions from: /people/federico.babelis2/blog/2006/04/14/service-desk-configuration-guide-for-dummies and also done several things described on SDN in other topics

  • How do I make a Full screen button in inDesign for interactive PDF?

    I posted this question in the inDesign forum and someone told me to post it in the Acrobat forums. I would like to make a button in inDesign to give users the option to view a PDF at Full Screen. Much like the button the inDesign Magazine PDFs have.

  • Putting a specific date range in an SQL query

    Hello team, I have a query that i have to run every month but still i have to extract information for a given time period. Please advise.

  • Not recognising number or pin

    I have been trying to call a number all day today and it is telling me that skype doesn't recognise my phone number. This is only happening when I try and call one certain number. I have changed my pin ect but still it is still saying my pin is incor