Gianluca: Thank you for your reply. I tried using your suggestion with the following result:

Your suggestion is:
Graphics[Table[
Arrow[{{0, 0}, s {2, 4}, (1 - s) {4, 2}}], {s, 0, 1, 0.025}]]
However, following the "{0,0}," there will need to be a curly brace preceding "s {2, 4}, (1 - s) {4, 2}" because it is the vector used to create the arrow: Graphics[Table[Arrow[{{0, 0}, {s {2, 4}, (1 - s) {4, 2}}], {s, 0, 1, 0.025}]] --
It seems that the curly braces are required because the Arrow operator requires curly braces and the creation of a vector also requires curly braces, (resulting in a pile-up of curly braces):
{Graphics[{Arrow[{{0, 0}, {2, 4}}], Arrow[{{0, 0}, {4, 2}}]},
Axes -> True],
Graphics[Table[
Arrow[{{0, 0}, {{s {2, 4}, (1 - s) {4, 2}}}}], {s, 0, 1, 0.025}]
, Axes -> True]}
This again results in a non-result....corrected by carrying out the arithmetic.