Please can someone tell me what I am doing wrong? Text stream object and the master page

I need to create a book. I did a master page with a page number, the text box and the header, made up of 65 pages in total.

clicked on apply to all, he said , he asked, and each consecutive page has an 'A' on this subject, but no figure of page? And I clicked to place the text, the first page is visible, but none of the subsequent pages. There is a small top of the icon to the left of each page that says that if I click on it: "this story is the flow of the main text of the master", but there is no visible text, it did not sink on the page. Help! I am a new user of Indesign. I tried all the online tutorials, you tube, etc. Lyndas yesterday, but nothing covered this issue. Any ideas?

We need to see a screenshot of the page master and a document page, but it seems to me that you put the page marker in a primary text block. I don't think it will work. Markers must be in an ordinary setting which does not thread with something else. You can put other static text in the frame with the marker, however, if you wish.

Tags: InDesign

Similar Questions

  • I have a problem, all the gray towers photos when I open a document, I have a Mac computer, if that would be any help... Please can someone tell me what I am doing wrong. There have not been like that until I started now?

    I have a problem, all the photos of grey towers when I open a PDF document in acrobat xl pro, iy were not like this before starting a few days ago. Previously, he helped if I closed the program, but that no longer works?

    Try this: go to Edit - Preferences - Page Display and check the box that says "Show large images.

  • Can someone tell me what I'm doing wrong when you create a native extension for iPad? (Very detailed)

    My company is developing a game for iPhone and iPad using Flash cs5.5 and Air3.0

    The customer requires that certain features be supported - these things as GameCenter, rating, etc... which none are currently supported by flash for the iOS.

    However, they provide us with a bunch of xCode example files on how they want things to work.

    My idea was to bridge the gap in functionality by creating a native extension using the xcode source that was given to me, giving me the required functionality.

    But first, I need to truly CREATE a native extension, even just a base echo/hello everyone... I followed all the steps of various guides and tutorials and I have managed to create an ipa and put it on my iPad 2 to test, but when the program starts, nothing happens, I find myself with a black screen. When I comment on the lines of code that initialize the extension, it fires just fine.

    (and Yes, I even tried to put things in try blocks where there was a mistake - no luck)

    So I hope that someone can read through the process of what I do below and point out what I am doing wrong, or what Miss me.

    What I use:

    Mini Mac running OS x 10.7.2 - this is used to run xCode 4.1 build 4B 110

    PC - Windows 7 home 64 bit - running Flash CS5.5 (version 11.5.1.3469) with the 3.0 SDK inside AIR. I also have the sdk 3.0 air in a separate file for the command-line running. (This is my primary development platform)

    The PC has flash builder installed, but I've never really used it, and I don't know how to use it... everything that has been built to date has been done using Flash CS5.5

    So, here's what I did.

    The first thing we do is to create a library static .a on mac.

    I open xcode and create a new project.

    • Select iOS framework and library, then select "Cocoa touch static library.
    • Give it a name, in this case "EchoExtension" and put it in a folder.
    • I then delete the file EchoExtension.h as all the samples I've seen so far do not use.
    • I then add 'FlashRuntimeExtension.h' to the project of the AIR3.0 sdk frameworks folder on my PC
    • I remove everything in my folder ".m", and then, next to several different examples and tutorials, type the following code:

    //

    EchoExtension.m

    EchoExtension

    //

    #include "FlashRuntimeExtensions.h".

    Echo FREObject (FREContext ctx, void * funcData, uint32_t argc, {FREObject argv)

    return argv [0];

    }

    //----------- Extention intializer and finalizer ----------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------------ -

    A native context instance is created

    void ContextInitializer (void * extData, const uint8_t * ctxType, FREContext ctx, uint32_t * numFunctionsToTest, const FRENamedFunction * functionsToSet) {}

    Configure the number of functions in this extention

    for ease of reference, set the number of function that will use this extension.

    int FunctionCount = 1;

    set the number of function pointer reference that will use this extention.

    * numFunctionsToTest = FunctionCount;

    create an array to store all the functions that we will use.

    FRENamedFunction * func = (FRENamedFunction *) malloc (sizeof (FRENamedFunction) * FunctionCount);

    create a table for each function entry

    Func [0] .name = (const uint8_t *) "echo"; the name of the function

    Func [0] .functionData = NULL;                    the data type

    Func [0] .function = & echo;             the reference to the real function

    Save the array to a pointer.

    * functionsToSet = func;

    }

    A native context instance is deleted

    void ContextFinalizer (FREContext ctx) {}

    return;

    }

    Initialization of each extension function

    void ExtInitializer (void * extDataToSet, ctxInitializerToSet FREContextInitializer *, FREContextFinalizer * ctxFinalizerToSet) {}

    * extDataToSet = NULL;

    * ctxInitializerToSet = & ContextInitializer;

    * ctxFinalizerToSet = & ContextFinalizer;

    }

    Called when the extension is unloaded

    void ExtFinalizer (void * extData) {}

    return;

    }

    • I'll then 'product', 'building' and it creates libEchoExtension.a
    • I'm copying this .to file on my PC.

    I am now finished with this abandoned mac of God (* shudder *)
    Back on my PC, I create a folder for my test project. For all the intentions a purposes, we will call this "D:\src\EchoExtension" then I create 2 folders, one called "lib" and one called "app". Lib, it's where I'm going to create the actionscript source for my extension.

    • In my lib folder, I create a new fla in flash cs5.5, called "EchoExtension.fla".
    • I create my lib folder, the following:
      • com\extensions\EchoExtension\EchoExtension.as
      • a folder named 'Build' in which I place my libEchoExtension.a file.
    • I have in my EchoExtension.as file, place the following code:

    package com.extensions.EchoExtension

    {

    import flash.events.EventDispatcher;

    import flash.events.IEventDispatcher;

    import flash.external.ExtensionContext;

    SerializableAttribute public class EchoExtension extends EventDispatcher

    {

    protected var _extensionContext:ExtensionContext;

    /**

    * Constructor.

    */

    public void EchoExtension()

    {

    Super();

    Initialize the extension.

    _extensionContext = ExtensionContext.createExtensionContext ("com.extensions.EchoExtension", "main");

    }

    public void echo(Prompt:String):String

    {

    Return _extensionContext.call ("echo") as String;

    }

    }

    }

    • In my main fla, on the first layer of the time line, I put just the following code to make sure that did get file included when I publish the swc.

    import com.extensions.EchoExtension.EchoExtension;

    var ext:EchoExtension = new EchoExtension();

    Stop();

    • I then opened upwards from my fla publication settings, disable the swf - which I don't need, and check the swc and ensure it generates in my generation folder.  «. "/ Build/EchoExtension.swc.
    • I also updated the player Air 3.0 (which I can do because I managed integrated AIR 3.0 along side my AIR 2.6 and can build both without any problem)
    • I then publish the swc. So far so good. No problems.
    • I then made a copy of the CFC and rename it to EchoExtension.swc.zip, how I extracted the library.swf file and place it in the folder of my generation.
    • I then create extension.xml in case of generation that contains the following code:

    " < extension xmlns =" http://ns.Adobe.com/air/extension/2.5 ">

    com.extensions.EchoExtension < id > < /ID >

    < versionNumber > 1 < / versionNumber >

    <>platforms

    < platform name 'iPhone-ARMS' = >

    < applicationDeployment >

    < nativeLibrary > libEchoExtension.a < / nativeLibrary >

    < initializer > ExtInitializer < / initializer >

    < finalizer > ExtFinalizer < / finalizer >

    < / applicationDeployment >

    < / platform >

    < / platforms >

    < / extension >

    • Now, at this point, I'm a little suspicious, because I build for the iPad2... the platform is iPhone... I thought that may be a problem and at some point I have tested the same build on the iPhone4 and had the same results. I also tested using the name of the platform of the iPad-ARM and got the same results... So I don't think that's the problem, but I'm not sure.
    • Now, to make things easier, I created a batch file called "buildane.bat" in my file generation. That's what I use to create my .ane file and it contains the following command line:

    D:\SDKs\AirSDK30\bin\adt-Paquet - target ane EchoExtension.ane extension.xml - CFC EchoExtension.swc - iPhone-ARM library.swf libEchoExtension.a platform

    • I then open a command prompt and run buildane.bat and Ottoman. My donkey is created. My generation file now has the following files in it:
        • buildane.bat
        • EchoExtension.ane
        • EchoExtension.swc
        • EchoExtension.swc.zip
        • extension. XML
        • libEchoExtension.a
        • Library.swf

    Now that I have my swc, donkey and it's time to create my sample application that will be used to test my new extension.

    • I go back to my D:\src\EchoExtension folder and go to the folder app ealier, I created.
    • I then create a new flash project called EchoExtensionTester.fla
    • I open the action script settings, paths to library and add the CFC I created in my D:\src\EchoExtension\lib\build file to my project.
    • On my stage, I create a field called text txtInput, a field of dynamic text named txtEcho, and a couple of buttons called btnClear, btnRuntime and btnEcho
    • I open the first layer of the timeline, and place the following code:

    imports of base.

    import flash.desktop.NativeApplication;

    import flash.events.MouseEvent;

    import flash.text.TextField;

    import the extension of our swc.

    import com.extensions.EchoExtension.EchoExtension;

    the value of our input text to the need the softkeyboard field

    txtInput.needsSoftKeyboard = true;

    Add event handlers to our buttons.

    btnEcho.addEventListener (MouseEvent.CLICK, btnEcho_Click);

    btnClear.addEventListener (MouseEvent.CLICK, btnClear_Click);

    btnRunTime.addEventListener (MouseEvent.CLICK, btnRunTime_Click);

    create our variable expansion.

    var ext:EchoExtension;

    Try

    {

    initialize our extension of echo.

    Ext = new EchoExtension();

    } catch (error) {}

    txtEcho.text = 'Error when trying to create new EchoExtension:\n\n' + e;

    }

    Stop();

    Delete the text echo field

    function btnClear_Click(e:MouseEvent):void

    {

    txtEcho.text = "";

    }

    just to test, put the latest version of the air runtime in our text field, so we can make sure we run air 3.0

    function btnRunTime_Click(e:MouseEvent):void

    {

    txtEcho.text += "\nRuntime version =" + NativeApplication.nativeApplication.runtimeVersion; ".

    }

    call the extension, passing all that is in the text input field and get back and place it in our text echo field

    function btnEcho_Click(e:MouseEvent):void

    {

    txtEcho.text += "\n";

    Try

    {

    txtEcho.text += ext.echo (txtInput.text);

    } catch (error) {}

    txtEcho.text += "\nError call ext.echo:"+ e;»

    }

    }

    • I save the project, Open Air for the parameters of the iOS, then perform the following settings: (Yes, I know... I'll have to use adt to perform the build, but I need to first create the swf file)
      • File: EchoExtensionTester.ipa
      • AppName: EchoExtensionTester
      • Version 1.0
      • Landscape
      • Full screen on
      • Auto orientation is disabled
      • GPU rendering
      • device: iPad and iPhone
      • RES: high
      • Deployment: I use my certificate and profile provisionging that I use for my main project (that works) and defined for the test of the device.
    • I close the window and save again... but before I publish, I opened newly created "EchoExtensionTester - app.xml" which is located in my app folder.
    • I add the extensions <>< extensionID > com.extensions.EchoExtension < / extensionID > < / extensions > to the XML in the file so now it looks like this:

    <? XML version = "1.0" encoding = "UTF-8" standalone = 'no '? >

    " < application xmlns =" http://ns.Adobe.com/air/application/3.0 ">

    <>Extensions

    < extensionID > com.extensions.EchoExtension < / extensionID >

    < / extensions >

    < id > EchoExtensionTester < /ID >

    < versionNumber > 1.0 < / versionNumber >

    < file_name > EchoExtensionTester < / name of the file >

    < description / >

    <!-to locate the description, use the following format for the description element. < description > < text XML: lang = "fr" > App English description goes here < / text > < text XML: lang = "fr" > French App description goes here < / text > < XML text: lang = "ja" > Japanese App description goes here < / text > < / description >->

    < name > EchoExtensionTester < / name >

    <!-to locate the name, use the following format for the name element. < name > < text XML: lang = "fr" > insert here the name App English < / text > < text XML: lang = "fr" > insert here the French App name < / text > < XML text: lang = "ja" > insert here the Japanese App name < / text > < / name >->

    < copyright / >

    < initialWindow >

    < content > EchoExtensionTester.swf < / content >

    standard < systemChrome > < / systemChrome >

    < clear > false < / transparent >

    < visible > true < / visible >

    true < fullscreen > < / full screen >

    landscape of < aspectRatio > < / aspectRatio >

    GPU < renderMode > < / renderMode >

    < maximizable > true < / maximizable >

    < minimizable > true < / minimizable >

    < resizable > true < / resizable >

    < autoOrients > false < / autoOrients >

    < / initialWindow >

    < icon / >

    < customUpdateUI > false < / customUpdateUI >

    < allowBrowserInvocation > false < / allowBrowserInvocation >

    < iPhone >

    < InfoAdditions >

    <! [CDATA [< key > UIDeviceFamily < / key > < table > < String > 1 < / string > < string > 2 < / string > < / array >]] >

    < / InfoAdditions >

    < requestedDisplayResolution > top < / requestedDisplayResolution >

    < / iPhone >

    < / application >

    • I save the changes to the xml file and return to Flash. I then publish.
    • The swf file is created as it should be, but then I get the error message:

    Error creating files.

    A native implementation extension 'com.extensions.EchoExtension' required by the application is not found for the target platform.

    • Now, while it is a pain in the rear, I again, this was going to happen because in my reading tutorials and samples, they have all said that you use adt to build the ipa... but that is fine... all I wanted anyway, was the swf, which I now have in my app folder.
    • I close flash because I no longer need and I create a new batch file: (Note: I have change the name of the cert, profile and password for this post)

    CLS

    "D:\SDKs\AirSDK30\bin\adt" - package - target the ipa-ad-hoc - stores pkcs12 - keystore "D:\src\mycert.p12" - storepass MYPASSWORD-putting into service-profile "D:\src\myprovfile.mobileprovision" "EchoExtensionTester.ipa" "EchoExtensionTester - app.xml" "EchoExtensionTester.swf" - extdir... / lib/Build

    Set dummy = p

    ECHO done

    • I then open a command window in my app folder and run build.bat.
    • I wait about 2 minutes...
    • ...
    • ...
    • YAY! My ipa file was created without error reported so far... Time to copy this bad boy to the iPad and see what happens.
    • I opened iTunes, drag "EchoExtensionTester.ipa" to the applications, then synchronize my device...
    • ...
    • YAY! iTunes installed ipa on the device... and there is a white icon bright and shiney for Echo Extension tester...
    • I open the app... and...
    • nothing.
    • I'm waiting for
    • still nothing.
    • I go to the bathroom.
    • I'll be back... still nothing... just a black screen.
    • I press the home button on the iPad, the app minimized, I restore it... nothing... black screen.

    management of human resources. Time to do some trial and error to see if I can figure out what the distribution.

    • As a test, I opened my fla and I comment out the following lines:
      • Ext = new EchoExtension();
      • txtEcho.text += ext.echo (txtInput.text);
    • I then rebuild the swf... get the same error (don't care)... I then rebuild the ipa using the batch file... and reinstall it on the device when it is made.
    • Exactly the same thing...
    • I opened the xml file... and remove the < extensionID > com.extensions.EchoExtension < / extensionID > line, save and re - run the batch file again... Wait for the ipa ends, then run it on the device.
    • I start the program on the iPad and it starts perfectly... with the exception of the commented line of code actually create and call the extension, everything works as it should. The runtime on the device reports as 3.0.0.4080
    • A test, I opened the .fla save and uncomment the 2 lines, I commented out above... keep the xml file extensionID, I re - publish the ipa... of course, this time, it actually creates the flash API, because the id of the extension is not in the xml file.
    • I put the file API with the extension in place on the ipad code... The fire and make the txtInput text and press the button of the echo. I get the following error:
      • Error calling ext.echo: TypeError: Error #1009
    • I suspect it's because I failed to include the extension in the descriptor... but when I build it with the extensionid in the xml file, I just get a black screen. I'm 99% sure that the context of the extension in the ext object is null (because that's what happens when I run Flash debug without extension lines in the xml)

    And here I am stuck.

    Can someone tell me what I am doing wrong or what I forgot to do?

    Thank you.

    Hi can check you if the CFC of the native extension is linked as external?

    Next image can help locate and change the link type of CFC.

    The issue that many people face here (i.e. extension works fast/interpreter mode and only when they are packed in standard mode) occurs only when the SWC of the NE is not linked externally.

    I hope this helps.

    Kind regards

    Mathyas blabla

    IOS of the AIR

  • Can someone tell me what I'm doing wrong with C5180

    Thank you for reading my post. I have a Photosmart C5180 all-in-one printer. I do calendars for my children. I have a PC with Windows Vista. I've been printing these for two years using the HP Photosmart Essential software. I am trying to print a picture of 'full page' on 8.5 "x 11" photo paper. I get a message saying that the image size is too large for the paper. I'm going goofy trying to get this image full-size to print. I have done many times before and can't happen now. Any suggestions?

    Thank you very much

    Smurfsdad

    Thanks Matmaria for your suggestion. This does not, as did nothing else I could think of. I think that sort of 'Vista' was behind all this. I was pulling my hair out. Finally, I downloaded an updated version of the Photosmart Essentials and it allows me to do what I was trying to do. Thank you again... Smurfsdad

  • Can someone tell me what I'm doing wrong here

    CREATE OR REPLACE PROCEDURE SP_DELETE_EMPLOYEES
    (p_wge_rpt_id IN WGE_RPT_EMPL1. WGE_RPT_ID % TYPE)
    AS

    declare
    l_return_values sys.odcivarchar2list default sys.odcivarchar2list ();

    BEGIN
    delete wge_rpt_empl_audit1
    where del_flg = '1' and wge_rpt_id = p_wge_rpt_id
    return wge_rpt_id | » -'|| empl_wge_id
    bulk collect into l_return_values;

    delete wge_rpt_empl1
    where (wge_rpt_id, empl_wge_id) in
    (
    Select
    TO_NUMBER (regexp_substr (column_value, "[^-] +' 1, 1"));
    TO_NUMBER (regexp_substr (column_value, "[^-] +' 1, 2"))
    table (cast (l_return_values as sys.odcivarchar2list))
    );
    END SP_DELETE_EMPLOYEES;

    Published by: oraclebeginner1231 on July 30, 2010 08:13

    you gave STATED in the procedure which is not necessary:

    Try this:

    CREATE OR REPLACE PROCEDURE SP_DELETE_EMPLOYEES
    (p_wge_rpt_id IN WGE_RPT_EMPL1.WGE_RPT_ID%TYPE)
    AS
    
    l_return_values sys.odcivarchar2list default sys.odcivarchar2list();
    
    BEGIN
    delete wge_rpt_empl_audit1
    where del_flg = '1' and wge_rpt_id=p_wge_rpt_id
    returning wge_rpt_id ||'-'||empl_wge_id
    bulk collect into l_return_values;
    
    delete wge_rpt_empl1
    where (wge_rpt_id, empl_wge_id) in
    (
    select
    to_number(regexp_substr(column_value, '[^-]+', 1, 1)),
    to_number(regexp_substr(column_value, '[^-]+', 1, 2))
    from table(cast(l_return_values as sys.odcivarchar2list))
    );
    END SP_DELETE_EMPLOYEES;
    
  • Can someone tell me what file hosting imac needs moding/etc. to validate the edition number. Lightroom 6

    Can someone tell me what file hosting imac needs moding/etc. to validate the edition number. Lightroom 6

    Log in as an administrator to change the hosts file in Mac OS.

    In a window of Finder, select go > go to folder.

    Type/etc

    Select the hosts file and open it with a text editor.

    Save the hosts file: Choose file > save as, save the file as hosts.backup, and then click OK.

    Look for the original hosts file for entries that reference activate.adobe.com (for example, 127.0.0.1 activate.adobe.com) and remove these entries.

    Save and close to overwrite the file.

  • Please can someone tell me what oracle tools/softwares...plz help!

    Hi you all. I am a beginner and I finally decided to prepare for 1z0-47/1z0-51 + 1z0 - 147. Please can you tell me what type of oracle tools/software I need to install on my computer and to prepare for this course as I write above. also tell me that how can I enrol in these courses on the official website of oracle. thnks in advance.

    user11292008 wrote:
    Hi you all. I am a beginner and I finally decided to prepare for 1z0-47/1z0-51 + 1z0 - 147. Please can you tell me what type of oracle tools/software I need to install on my computer and to prepare for this course as I write above.

    software developer Oracle 10 g 2/11 GR 1 matter of database and sql 3.x it's all free.

    also tell me that how can I enrol in these courses on the official website of oracle.

    There are a few options:

    1. for classes online

    2. for the examination.
    .. .to exam you need code of good premetic, which you will get from prometic center only.

    thnks in advance.

    NB:- but [1z0-047 | http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_047] is an expert and its more severe than [1z0-051 | http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=41&p_exam_id=1Z0_051]. [watch this thread too | http://forums.oracle.com/forums/thread.jspa?threadID=909201&tstart=0]

    [check this link for the certification and the link for topics review | http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=198&p_org_id=&lang=]

  • in the Table of contents, my photos are not displayed, can you tell me what I am doing wrong?

    I am writing an iBook on a Mac Book Pro of the retina, and when I go to see the table of contents it shows no picture... so I do something wrong, or not do something, everyone knows what this might be? Here you have a Table of contents on iBook author image. It is said that there are 5 chapters and Chapter 3 marking and it should show the main image of this chapter and down a row of thumbnails of all pages of this chapter. Nothing shows... I'd appreciate any info to solve this problem. Thank you.

    Quack quack.

    the thumbnails do not appear when you look at the table of contents to the author of the ib.  You must create the .ibooks file, do a preview for mac, and open it with the ibooks software and you will see knock thumbnails view or put your book on a iPad and if switch you to the comparable iPad display, thumbnails will be visible there.

    In addition, you must file an image file in the placeholder, which will be visible on each index type toc page, yes a picture shown throughout the book.

    good luck with your book and I hope you sell 1 million copies.

  • I keep getting error messages so there is obviously a problem, can someone tell me what I should do to fix it please.

    Can someone tell me what I should do to fix it please.

    Examples of errors in Adobe

     

    SyntaxError: Error #1132: entry of analysis not valid JSON.

    to JSON$ /parseCore)

    to JSON$ /parse)

    at my.game.global::GlobalParamsData/globalParametersDataLoaded()

    at flash.events::EventDispatcher/dispatchEventFunction()

    at flash.events::EventDispatcher/dispatchEvent()

    at flash.net::URLLoader/onComplete()

    : Error #1502: a script is run for longer than the default timeout of 15 seconds period.

    at com.king.flash.spaceland.animation::SceneObjectAnimationSystem/update()

    at com.king.ragnarok.spaceland.update::SceneUpdater/update()

    at com.king.stritz.initialization::UpdateLoopInitializer/render()

    at com.king.flash.flatland.update::FixedTimeUpdateLoop/update()

    at com.king.flash.flatland.update.frame.stage::StageEnterFrameDispatcher/onEnterFrame()

    you posted on the wrong forum.  Whoever created this facebook game should be post here and we will help you with their code.

    I don't know there is nothing you can do talk but avoid this game until the author fixes it.

    Flash Pro CC - général to the use of Flash Player>

  • Can someone tell me what are these two programs and what they're doing, Microsoft Visual C++ Redistributable, and AMD USB Audio Driver filter?

    Can someone tell me what are these two programs and what they do?

    1 Microsoft Visual C ++ 2005 Redistributable 2. AMD USB Driver Audio Filter (Advanced MICRO Devices Inc.

    .

    Hello

    Here's the explanation for details, requested clarification on the following programs.
     
    1 Microsoft Visual C++ 2005 Redistributable
     
    Most common programs are written in a program called C and C++, which is widely used by developers and they are a source of standard libraries what software use to support and to perform their designated functions.

    When software is installed in the computer, he needs help / support of software of Visual C++, in order to avoid a software to download the copy of its source or support a coding Windows has integrated the software and download and storage space a s it updated to make it available to the software and to avoid unnecessary.
    It is strongly recommended that you keep your C++ updating so that no Microsoft software or third party to download an individual component each time.
     
     
    2. filter driver Audio USB AMD (Advanced MICRO Devices Inc.
     
    It is possible that you are using a product from AMD (card mother or specific device) and this particular software can be a pilot allowing filters update USB ensure operation smooth and full and for a device and its properties.
     
    Please let us know if you are facing problems with the software above, to receive the appropriate troubleshooting steps.
  • Please can someone tell if google chrome development tool that emulates different devices provide a view Specifies how the site will be viewed on different devices

    Please can someone tell if google chrome development tool that emulates different devices provide a view Specifies how the site will be viewed on different devices

    All the emulators fail at something, so it is always best to test the real devices when you can.

    That said, Chrome and Firefox are quite close. One of the things bigger than don't miss the emulators in the browser is the function of auto zoom of smaller devices. Be sure to include the viewport with an initial scale of 1.0 and you should be fine...

    Generally emulators you what a phone with auto zoom see when this tag is missing. Some phone browsers also automatically link and add styles to things like phone numbers or dates, if there is no style associated with them are coming from css to your site. Dev tools will miss that also and sometimes it's a little surprising to see a bunch of links on your page when you never coded in a first time.

    Again, it is always better to use actual devices, you intend to support, to see what will actually make your site.

  • I bought creative cloud + 500px great, have the activation code, but does not know where to enter. Can someone tell me what to do?

    I bought creative cloud + 500px great, have the activation code, but does not know where to enter. Can someone tell me what to do?

    Please see the link How to activate/use Adobe CC Redemption Code

    Hope this will help you.

    Kind regards

    Hervé Khare

  • I just installed lightroom cc on a brand new and reveived laptop 2 following errors.  can someone tell me what they mean and wll prevent of sing lightroom?  ERROR: third charge useful Installer vcredist_x64.exe failed with exit code:-2147024546

    I just installed lightroom cc on a laptop computer brand new and reveived errors the following 2.  can someone tell me what they mean and they will prevent to use lightroom?

    ERROR: third charge useful Installer vcredist_x64.exe failed with exit code:-2147024546

    AND

    ERROR: Cannot install the Microsoft Visual C++ 2012 Redistributable Package (x 64). Please try to install by double-clicking the executable file to "C:\Users\CHRIST~1\AppData\Local\Temp\{7A86BA4B-C59E-4130-9C4D-DA8765643E21}\Lightroom_6_ LS11\payloads\Microsoft VC 2012 Redist (x 64) \vcredist_x64.exe", or download and install the 2012 Microsoft Visual C++ Redistributable Package last (x 64) Microsoft Web site - www.microsoft.com

    Download Visual C++ Redistributable for Visual Studio 2012 updated 4 of the official Microsoft Download Center

  • I went looking for an old discussion and all of my discussions have disappeared. Can someone tell me what is happening?

    I went looking for an old discussion and all of my discussions have disappeared. Can someone tell me what is happening?

    Click on your name here: Greenfox

    I still see a lot of old debates on your part - AJ

  • Can someone tell me what is happening with my Satellite A30?

    Can someone tell me what is the problem with my computer laptop satellite A30 514 is? The problem is that my laptop is very easy get hot and the fan never stop turning after 15 minutes and I continue to use the laptop about 1 hour, I guess that the laptop GET overheat auto power off.
    Help me to know what is the problem.
    Thank you.

    HI Yves,

    It sounds like overheating to me. This is usually caused by a build-up of dust in the cPU-heatsink which keeps air from cooling fans to pass through. You can try to use a hose of vacuum cleaner against the bars of suction air suction debris.

    Kind regards

Maybe you are looking for

  • Satellite Pro L10-103 - USB ports not working not

    Hi, my Satellite Pro L10 - 103 USB Ports do not work. I tried different things and finally my Advisor rubbed my computer clean of all programs and operating system. After reloading of the set up disc and having lost my dear some programs I am no furt

  • Portege M750 - it is capable of 64-bit?

    Is my M750 compressed 64-bit capable?I would like to install 8G of ram and be able to use this amount...The processor works in 64-bit, the motherboard will support 8G, but the rest of the system? -don't

  • Satellite 3000-514: display dims

    Hallo, I got a Satellite 3000 514.A couple of months ago, it falls on the floor and the broken screen.However, I had another screen from ebay.Unfortunately it wasn't a 3000-514, but a 3000-2xx.It was no problem to install it.When you use Notepad it a

  • Can I plan on the screen in duplicate on the left side of my main screen?

    I want to be able to move my cursor on the left side on my main screen and pass it directly to the left of my screen.  In an earlier version, I could choose which side to move. THX

  • Restore access administrator

    My daughter has had access to my husbands son computer and left the House, but not before remove me her administrator and other accounts limited accounts. His is the only administrator (probably) account and is password protected. I can do to restore