Error: Could not resolve < s: states > for an implementation of the component.

So I try to the installation States in a Flex application, I am building, but it does not compile. I get this error:

./build.sh $

Loading file configuration/Applications/Adobe Flash Builder 4/sdks/4.1.0/frameworks/flex-config.xml

Uploader.MXML (24): error: < s: states > could not resolve to a component implementation.

< s: states >

Here's my build command nothing special...
$ cat./build.sh
#! / bin/bash
mxmlc-bin/uploader.swf CBC/uploader.mxml of output
I have a class that extends the application of the spark as follows...
package com.uploader.controllers
{
Import spark.components.Application;
Dynamics/public class FlashUploader extends Application
{
...
}
}
Then in my main application mxml file I use it like this...
<? XML version = "1.0" encoding = "utf-8"? >
" < = xmlns:fx c:FlashUploader ' http://ns.Adobe.com/MXML/2009 "
xmlns:s = "library://ns.adobe.com/flex/spark".
xmlns:MX = "library://ns.adobe.com/flex/mx".
xmlns:v = "com. Uploader.View ".
xmlns:c = "com. "Uploader.Controllers.."
minWidth = minHeight "709" = "400".
skinClass = "com.uploader.skins.UploaderApplicationSkin" > "
< fx:Style source = "styles.css" / > "
<! - States - >
< s: states >
< name s: State = "default" / >
< name s: State = "dΘmarrage" / >
< name s: State = "submit" / >
< name s: State = "normal" / >
< / s: states >
....
< / c:FlashUploader >
Now when I try to compile, I get the error States. I found several examples and even made a dummy application just by using the application of spark and it compiles properly. Not sure if I'm doing something weird here, but a few other flex devs I know don't seem to see anything wrong with what I'm doing which could cause this.

When you define an object using namespace, you will need to use the same namespace for its properties, so you will want to use "" instead of "" in this case.

Tags: Flex

Similar Questions

  • He could not resolve &lt; s:SplashScreenImage &gt; to an implementation of the component.

    I'm trying to get my mobile app the splash screen to show differently depending on the orientation.

    <?xml version="1.0" encoding="utf-8"?>
    <s:SplashScreenImage xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
      <!-- no settings, so this acts as default -->
      <s:SplashScreenImageSource source="@Embed('assets/splash1.png')"/>
      <!-- specific settings -->
      <s:SplashScreenImageSource source="@Embed('assets/splash1.png')" dpi="240" aspectRatio="portrait"/>
    </s:SplashScreenImage>
    

    Error: Could not resolve < s:SplashScreenImage > to an implementation of the component.

    It is available only with the Flex SDK 4.6 and I do not think that it has yet been made public.

  • Error: "could not solve [public class] to an implementation of the component.

    Here is another question from clueless newbie! :-(

    I define a public class 'DynamicTextArea' at the top of the file and get the error message from the compiler "Could not resolve < DynamicTextArea > to a component implementation" at the bottom of the same file.

    Obviously, I don't understand something very basic.

    (The code between the asterisks commenrted was initially in a separate file, which I could not mxmlc or FlexBuilder to find, if rather than fight that question now, I moved it to the same file.)

    Here is the file:

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:mx mx:Application ' http://www.Adobe.com/2006/MXML "
    >
    <!--****************************************************************-->
    < mx:Script >
    <! [CDATA]
    import flash.events.Event;
    Import mx.controls.TextArea;

    SerializableAttribute public class DynamicTextArea extends TextArea {}
    public void DynamicTextArea() {}
    Super();
    super.horizontalScrollPolicy = 'off ';
    super.verticalScrollPolicy = 'off ';
    this.addEventListener (Event.CHANGE, adjustHeightHandler);
    }
    private void adjustHeightHandler(event:Event):void {}
    trace ("textField.getLineMetrics (0) .height:" + textField.getLineMetrics (0) .height);
    If (height < = textField.textHeight + textField.getLineMetrics (0) .height) {}
    height = textField.textHeight;
    validateNow();
    }
    }
    override public function set text(val:String):void {}
    textField.text = val;
    validateNow();
    height = textField.textHeight;
    validateNow();
    }
    override public function set htmlText(val:String):void {}
    textField.htmlText = val;
    validateNow();
    height = textField.textHeight;
    validateNow();
    }
    override public function set height(value:Number):void {}
    if(TextField == null) {}
    If (height < = value) {}
    Super.Height = value;
    }
    } else {}
    var currentHeight:uint = textField.textHeight + textField.getLineMetrics (0) .height;
    If (currentHeight < = super.maxHeight) {}
    If (textField.textHeight! = textField.getLineMetrics (0) .height) {}
    Super.Height = currentHeight;
    }
    } else {}
    Super.Height = super.maxHeight;
    }
    }
    }
    override public function get text (): String {}
    return textField.text;
    }
    override public function get htmlText (): String {}
    return textField.htmlText;
    }

    override public function set maxHeight(value:Number):void {}
    super.maxHeight = value;
    }
    }
    []] >
    < / mx:Script >
    <!--****************************************************************-->
    < mx:Script >
    <! [CDATA]
    Import mx.controls.Alert;

    private var str:String = "this text will be long enough to trigger +.
    "the text box to increase his height.";
    private var htmlStr:String = ' will this < b > text < /b > < font color = "#00FF00" > long enough < / font > to trigger "+»
    "the text box to increase his height.";
    private function setLargeText (): void {}
    txt1. Text = str;
    txt2. Text = str;
    txt3. Text = str;
    Txt4.text = str;
    txt5.htmlText = htmlStr;
    txt6.htmlText = htmlStr;
    txt7.htmlText = htmlStr;
    txt8.htmlText = htmlStr;
    }
    []] >
    < / mx:Script >
    < DynamicTextArea id = "txt1" width = "300" height = "14" / >
    < DynamicTextArea id = "txt2" width = "300" height = "20" / >
    < DynamicTextArea id = "txt3" width = "300" height = "28" / >
    < DynamicTextArea id = "txt4" width = "300" height = "50" / >
    < DynamicTextArea id = "txt5" width = "300" height = "14" / >
    < DynamicTextArea id = "txt6" width = "300" height = "20" / >
    < DynamicTextArea id = "txt7" width = "300" height = "28" / >
    < DynamicTextArea id = "txt8" width = "300" height = "50" / >
    < mx:Button label = "text large Set" click = "setLargeText (); "/ >
    < / mx:Application >

    Thanks for any idea that you can provide!

    Harvey

    Harvey

    import DynamicTextArea.as
    

    In this case you do not add the .as, remove. The alert starts with a mx because it is the main folder where Flex all classes only go, you should not worry about that now.

    This

    xmlns:DTA="DynamicTextArea.*"
    

    In this case, DynamicTextArea will be a folder, and inside that folder will be your class, if you have your custom class in the same folder that you have your app aKa the default package, you only need to set like this

    xmlns:DTA="*"
    
  • Error: could not resolve MobileApplication of implementation of components

    I use the 4.5 Flex command line compiler amxmlc. Here is my code (identical to the test code of the road, but not images):

    ******************************************************************************

    MobileTest.mxml

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:fx s:MobileApplication ' http://ns.Adobe.com/MXML/2009 "
    xmlns:s = "library://ns.adobe.com/flex/spark".
    firstView = "views. MobileTestHome">
    < / s:MobileApplication >

    MobileTestHome.mxml

    <? XML version = "1.0" encoding = "utf-8"? >
    " < = xmlns:fx s:View ' http://ns.Adobe.com/MXML/2009 "
    xmlns:s = "library://ns.adobe.com/flex/spark".
    xmlns:components = "" Spark.Components. * ""
    xmlns:MX = "library://ns.adobe.com/flex/mx".
    title = "Home" >
    < s:titleContent >
    < mx:Spacer width = "15" height="100%"/ >
    < s:TextInput id = "searchTxt" width = "100%" text = "Employee name" / >
    < mx:Spacer width = "15" height="100%"/ >
    < / s:titleContent >
    < s:actionContent >
    < s:Button id = "searchBtn" width = "48" height = "48" / >
    < s:Button id = "addBtn" width = "48" height = "48" / >
    < / s:actionContent >
    < s:List id = "emplist" left = "0" right = "0" top = low '0' = '0' > < / s:List >
    < / s:View >

    Directory structure:

    CBC

    -MobileTest.mxml

    -views

    -MobileTestHome.mxml
    ******************************************************************************

    When I run "amxmlc MobileTest.mxml" on the command line, the following error occurs:

    Error: Could not resolve < s:MobileApplication > to an implementation of the component.

    firstView = "views. MobileTestHome.mxml">

    What I am doing wrong? I'm new to Flex and I'm trying to translate the video Flash Builder Mobile Test Drive to open source flex, and this could be the source of error.

    found some info for you...

    try to add + configname airmobile = to the command line. you will also need a file airmobile - config.xml (must be in the sdk if you have not created yourself)

  • Error - could not resolve &lt; s:Script &gt; to a component implementation?

    Flex Builder 4.6, 60-day trial version. New in MXML / AS, but familiar with Java, XML, Javascript, OpenLaszlo. Ooooold, sloooow Vista box.

    I want a rudimentary validation class that extends from < s:Label > with a script in response to a click. Here's what I have:

    Ptile.MXML (in the com.blackbird package):

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:Label ' http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/mx".

    xmlns:comp = "com. Blackbird.* ".

    Click = "talkToMe ()" >

    < s:Script >

    <! [CDATA]

    private void talkToMe(): void {}

    trace ("I'm alive, sarge");

    }

    []] >

    < / s:Script >

    < / s:Label >

    The call is:

    TileTest.mxml (also com.blackbird in package):

    <? XML version = "1.0" encoding = "utf-8"? >

    " < = xmlns:fx s:Application ' http://ns.Adobe.com/MXML/2009 "

    xmlns:s = "library://ns.adobe.com/flex/spark".

    xmlns:MX = "library://ns.adobe.com/flex/mx".

    minWidth = "955" = "600" minHeight

    xmlns:comp = "com. Blackbird.* ">"

    < s:BorderContainer width = '100 percent"height ="100% ">

    < comp: x '40' = Ptile = "200" / >

    < s:BorderContainer / >

    < s:Application >

    Ptile.MXML won't compile - error message in the editor is "could not resolve < s:Script > to an implementation of the component. I knocked and fouls that hammered - around namespaces, typing and syntax checked all, documentation, Google. No luck. For a bet, I guess it's a namespace problem - I'm a little shaky on this matter - but I'm sweet if I can find it.

    By using the < mx:Script > or < fx:Script > tags also fails.

    I edited the Eclipse.ini file, as detailed here: http://forums.Adobe.com/thread/449232 . Nothing.

    Anyone? Thank you.

    There is no s:Script, there will be fx:Script and you need to Spark new namespaces.

    "xmlns:FX ="http://ns.adobe.com/mxml/2009"

    xmlns:s = "library://ns.adobe.com/flex/spark".

  • Error: Could not resolve macro... during the sensitive output to HTML5

    I use RoboHelp 2015. I have a project which was created for WebHelp output. When I compile the project to output Responsive HTML5, it compiles, but with the following errors:

    Error: Could not resolve the macro (IndexFilterKewords) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\Availity_Help.htm)...

    Error: Could not resolve the macro (MSM_CUR_LNG. Loading) in file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\indextreeloader.js)...

    Error: Could not resolve the macro (GlossaryFilterTerms) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\Availity_Help.htm)...

    Error: Could not resolve the macro (MSM_CUR_LNG. Loading) in file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\glossarylistloader.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. TopicsNotFound) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\mhfhost.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. JS_alert_LoadXmlFailed) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\mhfhost.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. JS_alert_InitDatabaseFailed) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\mhfhost.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. JS_alert_InvalidExpression_1) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\mhfhost.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. Research) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\mhfhost.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. Cancel) in file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\mhfhost.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. Aborted) to the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\mhfhost.js)...

    Error: Could not resolve the macro (MSM_CUR_LNG. ResultsFoundText) in the file (P:\! Private\zMigration\AvHelp_HTML5\AvHelp\template\scripts\search.js)...

    I saw another post on the forum about these errors (in version RoboHelp 11) suggested that the problem could be related to permissions. I have compiled out of aid to a few different folders I have all permissions, and I always get errors. Any ideas?

    It is a common problem with RoboHelp projects upgraded from earlier versions RH10. This error indicates that your files language is missing some channels. You can resolve it in one of two ways;

    1. Let the Robo to recreate the language file:

      1. In your project, save it! Language! folder.
      2. Delete the folder.
      3. Trash of the CPD and reopen RoboHelp.

        RoboHelp will create a new language file (and if something goes wrong, restore the backup and try Method 2).

    2. Manually update the language file;
      1. Open the language file! Language!/en_US/RoboHHRE.LNG with Notepad or another text editor.
      2. Find the section
        .
      3. For each error ' MSM_CUR_LNG. JS_alert_LoadXmlFailed', create a new entry that contains the text after point as follows:

      4. Save the file.
      5. Open RoboHelp and regenerate.

    (This does not point to Rick invalidate. "It's just that the problem is related differently.)

  • Problem of uninstalling with the error 'could not access VBScript Runtime for custom action'

    I'm having a problem uninstall a program. I'm getting repeatedly blocked in error: "could not access VBScript Runtime for custom action.  That means this error in uninstall a program? Would appreciate a fix for this. The program is called Soluto.  Thank you.

    P.S. I tried as admin and type regsvr32 vbscript.dll then regsvr32 jscript.dll in the command prompt.

    As well as their registration as an administrator, you may need to remove the entries for them in HKEY_CURRENT_USER.

    See:

    http://blogs.msdn.com/b/astebner/archive/2007/06/07/3151752.aspx

    Also, make sure that your antivirus software is not blocking scripts.

  • Workstation 8: Upload failed: Curl error: could not resolve the host name

    I have workstation 8 connected to our ESX host, it shows all the machines and allows me to connect to their end. But when I try to copy/paste/drag and drop a local virtual machine over there he said "Vmware workstation 8: Upload failed: Curl error: could not resolve the host name.

    Someone at - he fell on this or have any ideas why this would be. I think that if it does not find the host name, I could not navigate or connect to my Virtual Center.

    Hello

    Whats is your ESX host name? I would recommend using with full ESX host name during the connection. You can connect to the ESX host using the host name, but to download the VM in this topic, you will need to use FULL of ESX host of domain name when connecting.

    Please try to do it and let us know if it solves your problem.

    Thank you

    Deep

  • Q10 Q10 blackBerry WIFI - browser error - could not resolve the host name

    Hello

    I use my Q10 while overseas for the Wifi only. My SIM card is in my 9900 (thank you BB not to tell anyone that BIS no longer works and WW BB roaming is not until after people buy OS 10 devices, anyway...) but I want to use the Q10 for Skype, browsing and Email while on WIFI.

    Skype works.

    Browser gives "Could not resolve the host name" and charge no emails.

    WiFi network is good (the 9900 is connected and works, as do other devices). I reset the phone, router, etc. etc.

    All to nothing does not.

    A telephone conversation of two hours with T-Mobile (from abroad) was unnecessary and disconnected.

    All DNS data seems to be there.

    Please help.

    Thank you

    Aviv

    Hello

    Problem solved.

    I have reset the router before, nothing helps. The only way I got it work is as follows:

    (1) turn off the router and wait for the phone to 'do not see' to the network in question.

    (2) turn off Wifi on the phone (menu setting and tap on wifi)

    (3) restart router

    (4) restart the phone

    After about 10 minutes, it is finally connected.

    Thank you all,

    I would BB would have simply kept the features of the 9900 and just made more attractive to the masses, instead of making an iphone with a keyboard...

  • Error 2738 - could not access VBScript Runtime for custom action during the INSTALLATION of broadband dongle by distribution VODAFONE K3565 rev2. ON WINDOWS 7 PREMIUM

    Whenever I try to install a dongle broadband PAYG Vodafone K3565 rev2, I get an error message; -error 2738 - could not access VBScript Runtime for custom action. I am running Windows 7 Home Premium on a Samsung R522 again.
    I found that I got the same error message when I tried to install INCREDIMAIL on the same computer laptop.

    On the vodafone website, I found a resolution the resolution I found was;

    1. run command prompt as administrator
    1.1 Start Menu-> all programs-> Accessories
    1.2 right-click on command prompt and select run as administrator of

    2. If you are using the 32-bit version of Windows:
    Type cd %windir%\system32 in the command prompt and press ENTER.

    If you are using the 64 bit version of Windows:
    Type cd %windir%\syswow64 in the command prompt and press ENTER.

    3. type regsvr32 vbscript.dll in the command prompt, and then press ENTER.

    When I tried this, I got a message that this had been done but I tried to install the programs and even once, they both failed and I got the same error as before.

    Can anyone help?

    Well... It has been a week. I know too much now.

    ATTENTION: This field is very complicated AND there are too many incorrect analyses out there.

    The problem for me is (FOCUSED) that the current user HK had entires THAT SHOULDN'T BE!

    The computer settings are found under the Local Machine of HK. HKLM must be correct.

    Procedure: REMOVE all entries in HKCU. Correct path the InprocServer32 value.

    My specific (2738) error occurred trying to find "vbscript.dll" (aka "\{B54F3741-5B07-11cf-A4B0-00AA004A55E8"})

    Some antivirus software redirects requests for certain things by herself (aka 'diversion'). If the

    InprocServer32 is EMPTY (in HKCU - for me). All of the solution has been to remove the HKCU entries.

    Another little attention is: (for example) vbscript.dll has several references (app, authorization, RegExp)

    so be on the lookout for the 2 and 3, as well.

    \{B54F3741-5B07-11CF-A4B0-00AA004A55E8}

    \{B54F3742-5B07-11CF-A4B0-00AA004A55E8}

    \{B54F3743-5B07-11CF-A4B0-00AA004A55E8}

    I removed the entries in HKCU. Run the error code again. (Mine = .msi)

    This information is redundant. Gokul T response (upstairs) was correct. It does not sink into my head when I read it. But this thread was open the door to the solution for me.

    Thank you...

  • Error "could not resolve the question of Convergence.

    Hello

    I work with the Multisim13 and I when I am trying to implement the design attached shows a window saying ""failed to resolve the issue of Convergence"as shown in attachment."

    I found similar topics here

    http://forums.NI.com/T5/circuit-design-suite-Multisim/how-to-solve-simulation-error/m-p/838043/highl...

    http://forums.NI.com/T5/circuit-design-suite-Multisim/problem-with-simulation/TD-p/2603281/highlight...

    BTU were not up to the solution to this.

    Thank you.

    According to the OPA381 data sheet, it is designed to work with capacitive loads up to 100 pF, by inverting the configurations of the amplifier and as an amplifier to transimpedance, which is usually used with a current input (very low) and comments fairly large resistances.  Your circuit works with capacitive loads of ~ 5 uF (50000 x the design load), unity gain, setting up inverted, and with an input voltage.  Depending on how the model for the OPA381 manages these outside normal range values, convergence errors are not too surprising.

    The network of coupling between stages has a low pass cut off ~1.3 Hz. The first entry of the step network is more complicated but also the limits of bandwidth at very low frequencies.

    What is this supposed to do?

    I faked coupling and feedback networks (assuming ideal unity gain amplifiers). It is the output with a 1 volt of entry.

    Lynn

  • error could not resolve references to the elements.

    Hello experts,
    I have a problem in oracle form.i needs to seek the point coming thorugh db. has the same instruments comes several times.
    Suppose that something XXX just five times in form, then when I search for this article XXX then cursor search this part five times a

    I you use below code for searching.then that error is unable to resolve the reference to items.pls help me to solve this problem.

    DECLARE
    temp_last number (2);
    point varchar2 (30);
    chk_exc exception;
    I have number (2);
    j number (2);

    BEGIN
    go_block ('BLOCK3');
    last_record;
    temp_last: = TO_NUMBER(:System.cursor_record);
    because me in 1.temp_last
    loop
    go_record (i);
    agenda: =: BLOCK3.item;
    If the ITEM =: Block1. SEARCH_PART
    THEN
    GO_ITEM(':Block3.item');
    end if;
    end loop;
    exception
    When chk_exc then
    mess ('not exist!');
    Raise form_trigger_failure;
    END;

    Thank you
    Ravi
    DECLARE
    temp_last number(2);
    item varchar2(30);
    chk_exc exception;
    i number(2);
    j number(2);
    result number;
    
    BEGIN
    go_block('BLOCK3');
    last_record;
    temp_last:=to_number(:system.cursor_record);
    for i in 1..temp_last
    loop
    go_record(i);
    item:=:BLOCK3.item;
    if ITEM=:BLOCK1.SEARCH_PART
    THEN
    /* using alert
    --create alert alert_1 with two buttons
    result:=show_alert('alert_1');
    if result=alert_button2 then
    
              exit;
    end if;
    -- using alert*/
    
    --this will high light the record
    --create a visual attribute with va_1 name
    set_item_instance_property('block3.item',current_record,visual_attribute,'va_1');
    
    end if;
    end loop;
    exception
    when chk_exc then
    message(' Not Exist !');
    Raise form_trigger_failure;
    END; 
    

    A few suggestions, see if you can use that way

    1 after search is started and the item is found, it gives an alert saying it found a match and if the user says Yes it will continue elsewhere it will just come out (you will need to create an alert)

    2. a loop through all the records and high all matching items

    3. If you want the way you said it start with the search button then you can code in the trigger element following key of the element. Enter each time the button is enough start from the current record, you do not have from the first record.

    I modified your code, you can try code above. Code with alert once is commented, so make sure that if you want to test it to delete the comment.

  • Error: could not resolve the start-time. Results data missing from one or more time on clients not synchronized *.wrf files

    Hello again!

    After my last fight with a problem, I managed to muttle thanks to this all the way until the end, and once again, I am confused!

    My reference path, running without errors now, but when I get my results, there is a mistake in it.  I've seen other discussions on the same error and tried their suggestions, but to no avail.

    I have attached my results to see if maybe someone can see something I'm not, or perhaps to suggest solutions to the problems.

    Any help, as always, is greatly appreciated.

    Thank you!

    Matt

    The problem is with java on your customers, not the VM workload. Customers are initially charge against workload VMs using java applications (for Olio and ensures it is).

  • Imaging error: could not find indexable webviewable for content item

    Hi Imaging gurus,

    We have a requirement to implement the automation of the AP to Imaging.We did the part configuration.

    The documents are able to invoke the BPEL process and task are created, but we are not able to see the same document in Imaging.

    Layout error such as failed to find platelets webviewable to the content item.

    Please help me need solve as soon as possible in order to continue his tests.

    The default imagery storage isn't webless.

    Issue seems to be that of the storage rule.

    Follow the steps below mention details, this will solve the problem.

    Inside Oracle Fusion Middleware: BPEL Instances created by the imagery does not show Imaging

  • HP Deskjet Ink Advantage 3545: Could not find a cartridge for my printer to the Canada

    Hello

    I bought a printer HP Deskjet Ink Advantage 3545 flipkart when I was in India. We used to but 678 HP cartridges for the printer. Recently, I moved to the Canada and you have the printer with me. I'm not able to find here compatible cartridges for the printer. HP 678 isn't available here, can you help me with the cartridges that can be compatible with my printer and are available here?

    Thank you

    Lanaud

    Hi Frank,.

    I'm sorry to disappoint you, but it is always advisable to check for a product prior to Computability such movement in another country.

    The HP Deskjet Ink Advantage series is limited to specific markets, and only available in some countries in Latin America, Middle East, Africa and Asia-Pacific, ink cartridge for the printer can be bought in in the regions where the printer is sold, there is no compatible cartridge for your printer in to the Canada or North America.

    As a reference, you can see the following table that describe what cartridge may be prosecuted for any HP printer in different countries:

    http://support.HP.com/us-en/document/c01766411

    Kind regards

    Shlomi

Maybe you are looking for

  • Cannot find my tv purchased in iTunes 12.5.1 series

    Now, impossible to find my purchased in 12.5.1 television programs. Says I have to buy each episode, yet it is said that I already bought the episodes.

  • someone called and said I have bought for safety with TOZM, safe?

    We received a call our computer has virus or something and go on a www.emmyy.com site, the man on the phone was not so good to expose, so I did not understand everything, but it is safe to do this?

  • Photos appears in the Album

    Hi, I am unable to see the photos that I have taken since June 28. I deleted the data and the application of the album cover and restarted my phone several times but I am still unable to view photos and just have a black thumbnail for each photo. Ple

  • How to download audio files

    Music downloads just received a computer and don't know how to download songs - please tell me where I can buy songs (or y at - it somewhere I can get them for FREEligitimately or y at - it somewhere I can download an unlimited number for a fixed pri

  • Windows Sideshow w / Media Player

    Can someone tell me how to turn off the side or make sure it does not work with my Media Player. I've grown tired of my videos and music after that I stopped him. Thank you!