Questions tagged [stencils]

Stencils are vector shapes of common user interfaces that can be reused for rapid prototyping.

References

69 questions
1
vote
0 answers

Stencil Start Error "Error: components\\stencil\\maintenanceNotice\\component.scss doesn\'t exist!\"

I've come across this error message when I run "stencil start". Any advise? { Error: components\stencil\maintenanceNotice\component.scss doesn't exist! at options.error…
m.ay
  • 11
  • 1
1
vote
1 answer

Show swatch-colors on category page in bigcommerce stencil framwork

Here is my website http://evisionshop.com/ I need suggestion related to the swatch color. How I can show the products attribute color into category page with each product below price. below is the code of category page
R.K.Bhardwaj
  • 2,168
  • 1
  • 14
  • 24
1
vote
1 answer

Drag and Drop not working in Evolus Pencil

I've installed pencil using the .deb package and the Firefox plug-in but drag and drop is not working.Do someone got that problem? I'm using Firefox 50 on ubuntu-16.04
Tchunche
  • 43
  • 1
  • 7
1
vote
1 answer

Error: Cannot find module 'commander' in stencil on Local server

I have installed stencil on local server. I am getting this error when I run thestencil init command: Error: Cannot find module 'commander' at Function.Module._resolveFilename (module.js:469:15) at Function.Module._load (module.js:417:25) …
1
vote
1 answer

How to use tag {%include example.html%} Stencil with Swift

I embedded template Stencil in my project (Kitura https://github.com/IBM-Swift/Kitura ,template engine Stencil https://github.com/kylef/Stencil#include). I don't understand how to use tag {% include "comment.html" %}. my example , but not…
duck
  • 47
  • 5
1
vote
1 answer

Setting text alignment with visio stencil

I'm in the proccess of creating an automated visio diagram script in powershell, adding elements with text like so. $GROUP = $CPage.Drop($Stencil_AgentList, $x, $Y) $GROUP.Text = $MatchedGroup.Name $GROUP.AutoConnect($QUEUE, 0,…
colsw
  • 3,216
  • 1
  • 14
  • 28
1
vote
1 answer

OpenGL How to use a invisible mask to hide objects behind it

I have an OpenGL problem to solve. I have an object/mesh A, an object/mesh B and a background texture C. Initially the framebuffer is filled with background texture C. We draw both A & B in the framebuffer. We want to keep object A visible, and…
Howy
  • 825
  • 2
  • 10
  • 20
1
vote
1 answer

How can I create a 3D array by stenciling the columns of a 2D array in MATLAB?

Suppose I have a 2D array called A. I want to create a 3D array called B, whose "pages" are select columns of a stencil moving across A, column-by-column. For example, the first page of B might be the 1st, 3rd, and 5th columns of A. Then the second…
1
vote
1 answer

Designing Android UI and Implementation Using Fireworks

I want to learn designing android UI and implementation to android apps. I found one video tutorial on the web but It seems only how to design. I don't know how to use it on apps. Video Tutorial How can I use custom UI design on my android app ? I'm…
Melih Mucuk
  • 6,988
  • 6
  • 37
  • 56
1
vote
1 answer

issue with OpenCL stencil code

I have a problem with a 4-point stencil OpenCL code. The code runs fine but I don't get symetrics final 2D values which are expected. I suspect it is a problem of updates values in the kernel code. Here's the kernel code : // kernel code const char…
1
vote
1 answer

Effects of Loop unrolling on memory bound data

I have been working with a piece of code which is intensively memory bound. I am trying to optimize it within a single core by manually implementing cache blocking, sw prefetching, loop unrolling etc. Even though cache blocking gives significant…
Anusuya
  • 11
  • 1
0
votes
0 answers

How can we invoke one component from another component with in same repo of stencils

I have one component with render() { return ( ); } How can i invoke my-component1 from my-component based on button-click event and pass…
Techie
  • 1
0
votes
0 answers

I tried making a custom rectangle stencil but now its over anything

I am trying to make a custom "image" in kivy/md and i cannot figure out why the shape is over anything i tried to put a "z=-1" it doesnt work, i don't know what should i do : MDFloatLayout: md_bg_color:…
0
votes
0 answers

How can I make Product Images (if product has multiple photos) Swipeable with a finger using CSS?

How can I make Product Images (if product has multiple photos) Swipeable with a finger left/right using CSS or JS scripte in mobile version? How to make Product Images carousel slider use mobile left/right swipe? I have Stencil Theme "Meros" in…
0
votes
0 answers

Combine/re-use Stencil Decorators

For some while now I am trying to figure out how to re-use Stencil Decorators. In our company we have a whole bunch of components that do all use Translations. A user of our web component should be able to pass a translations object as an attribute.…